-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[perf] Added tests for data types (DateTime) #2243
Conversation
performance/src/test/com/clickhouse/benchmark/BenchmarkRunner.java
Outdated
Show resolved
Hide resolved
@@ -80,7 +81,7 @@ public static class DataState { | |||
|
|||
@Param({"file://dataset_500k.csv"}) | |||
String datasetSourceName; | |||
@Param({"300000", "220000", "100000", "10000"}) | |||
@Param({"300000", "100000", "10000"}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it just an experiment? or should keep this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would keep it. It takes time for testing but doesn't give a new information, I think.
Fixing data size
@@ -249,6 +252,7 @@ protected static ClickHouseClient getClientV1() { | |||
return ClickHouseClient.builder() | |||
.defaultCredentials(ClickHouseCredentials.fromUserAndPassword(getUsername(), getPassword())) | |||
.nodeSelector(ClickHouseNodeSelector.of(ClickHouseProtocol.HTTP)) | |||
.option(ClickHouseClientOption.MAX_QUEUED_BUFFERS, 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it a change in client config. Can you explain the effect of it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry, I've missed it.
|
Summary
This PR adds scaffolding and sample tests for data types.
Checklist
Delete items not relevant to your PR: