File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
performance/src/main/java/com/clickhouse/benchmark/data Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -57,15 +57,14 @@ jobs:
5757 run : |
5858 cd ./performance &&
5959 ls -l &&
60- mvn --batch-mode --no-transfer-progress compile exec:exec -Dexec.executable=java \
61- -Dexec.args='-classpath %classpath com.clickhouse.benchmark.data.DataSetGenerator -input sample_dataset.sql \
62- -name default -rows 100000'
60+ mvn --batch-mode --no-transfer-progress clean compile exec:exec -Dexec.executable=java \
61+ -Dexec.args="-classpath %classpath com.clickhouse.benchmark.data.DataSetGenerator -input sample_dataset.sql -name default -rows 100000"
6362 - name : Run Benchmarks
6463 run : |
6564 cd ./performance &&
6665 ls -l &&
67- mvn --batch-mode --no-transfer-progress exec:exec -Dexec.executable=java -Dexec.args=' -classpath %classpath com.clickhouse.benchmark.BenchmarkRunner \
68- -l 100000,10000 -m 1 -t 3 -b i -d file://default.csv'
66+ mvn --batch-mode --no-transfer-progress clean compile exec:exec -Dexec.executable=java -Dexec.args=" -classpath %classpath com.clickhouse.benchmark.BenchmarkRunner \
67+ -l 100000,10000 -m 1 -t 3 -b i -d file://default.csv"
6968 - name : Upload test results
7069 uses : actions/upload-artifact@v4
7170 if : success()
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ public static void main(String[] args) throws IOException {
7777 }catch (Exception e ) {
7878 e .printStackTrace ();
7979 }
80+ System .out .println ("Dataset name: " + datasetName );
8081
8182 // Parse the SQL create table statement
8283 List <Column > originalColumns ;
You can’t perform that action at this time.
0 commit comments