You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data-loader/cli/src/main/java/com/scalar/db/dataloader/cli/command/dataimport/ImportCommandOptions.java
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -34,8 +34,7 @@ public class ImportCommandOptions {
34
34
@CommandLine.Option(
35
35
names = {"--max-threads", "-mt"},
36
36
paramLabel = "<MAX_THREADS>",
37
-
description =
38
-
"Maximum number of threads to use for parallel processing (default: number of available processors)",
37
+
description = "Maximum number of threads to use for parallel processing (default: 16)",
39
38
defaultValue = "16")
40
39
protectedintmaxThreads;
41
40
@@ -133,29 +132,31 @@ public class ImportCommandOptions {
133
132
@CommandLine.Option(
134
133
names = {"--data-chunk-size", "-dcs"},
135
134
paramLabel = "<DATA_CHUNK_SIZE>",
136
-
description = "Maximum number of records to be included in a single data chunk",
135
+
description =
136
+
"Maximum number of records to be included in a single data chunk (default: 500)",
137
137
defaultValue = "500")
138
138
protectedintdataChunkSize;
139
139
140
140
@CommandLine.Option(
141
141
names = {"--transaction-size", "-ts"},
142
142
paramLabel = "<TRANSACTION_SIZE>",
143
143
description =
144
-
"Maximum number of put operations that are grouped together into one ScalarDB distributed transaction, only supported in ScalarDB transaction mode",
144
+
"Maximum number of put operations that are grouped together into one ScalarDB distributed transaction, only supported in ScalarDB transaction mode (default: 100)",
145
145
defaultValue = "100")
146
146
protectedinttransactionSize;
147
147
148
148
@CommandLine.Option(
149
149
names = {"--split-log-mode", "-slm"},
150
150
paramLabel = "<SPLIT_LOG_MODE>",
151
-
description = "Split log file into multiple files based on data chunks",
151
+
description = "Split log file into multiple files based on data chunks (default: false)",
152
152
defaultValue = "false")
153
153
protectedbooleansplitLogMode;
154
154
155
155
@CommandLine.Option(
156
156
names = {"--data-chunk-queue-size", "-qs"},
157
157
paramLabel = "<DATA_CHUNK_QUEUE_SIZE>",
158
-
description = "Maximum number of data chunks that can be kept at a time for processing",
158
+
description =
159
+
"Maximum number of data chunks that can be kept at a time for processing (default: 256)",
0 commit comments