Skip to content

Commit ad94d86

Browse files
committed
Added the -input_compression_codec option and changed the value of the "Label" of boolean type options
1 parent acfc98d commit ad94d86

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

quick-start/src/main/resources/static/json/inputOptions.json

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,30 @@
5656
]
5757
},
5858
{
59-
"Label": "Input compressed",
59+
"Label": "Input files are compressed?",
6060
"Field": "-input_compressed",
6161
"Type": "boolean",
6262
"Description": "Whether or not the source data is compressed. Default: false.",
6363
"Placeholder Value": "whether or not the source data is compressed"
6464
},
65+
{
66+
"Label": "Input files codec",
67+
"Field": "-input_compression_codec",
68+
"Type": "type",
69+
"Description": "When -input_compressed is true, the code used for compression. Accepted values: zip, gzip.",
70+
"Options": [
71+
{
72+
"label": "zip",
73+
"value": "zip"
74+
},
75+
{
76+
"label": "gzip",
77+
"value": "gzip"
78+
}
79+
],
80+
"FilterField": "-input_compressed",
81+
"FilterValue": "true"
82+
},
6583
{
6684
"Label": "Namespace",
6785
"Field": "-namespace",
@@ -111,7 +129,7 @@
111129
"Placeholder Value": "default is first column"
112130
},
113131
{
114-
"Label": "Generate URI",
132+
"Label": "Generate URI?",
115133
"Field": "-generate_uri",
116134
"Type": "boolean",
117135
"Description": "When importing content with -input_file_type delimited_text, whether or not MarkLogic Server should automatically generate document URIs. Default: false.",
@@ -125,7 +143,7 @@
125143
"Placeholder Value": "default is root"
126144
},
127145
{
128-
"Label": "Split input",
146+
"Label": "Split input?",
129147
"Field": "-split_input",
130148
"Type": "boolean",
131149
"Description": "Whether or not to divide input data into logical chunks to support more concurrency. Only supported when -input_file_type is one of the following: delimited_text. Default: false for local mode, true for distributed mode. For details, see Improving Throughput with -split_input.",

0 commit comments

Comments
 (0)