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: docs/configuration.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -182,6 +182,7 @@ Parameters:
182
182
*`--s3-profile` - Name of the section from `~/.aws/credentials` file;
183
183
*`--s3-headers` - JSON object with additional header to every S3 request (Useful for setting ACLs);
184
184
*`--s3-force-path-style` - use path style URL. It appends bucket name at the end of the URL;
185
+
*`--s3-concat-concurrent-downloads` - Number of concurrent downloads of partial files from S3. When performing concatenation, Rustus downloads all partial files from S3 and concatenates them into a single file. This parameter controls the number of concurrent downloads. Default value is 10.
185
186
186
187
Required parameter are only `--s3-url` and `--s3-bucket`.
187
188
@@ -203,7 +204,8 @@ Required parameter are only `--s3-url` and `--s3-bucket`.
203
204
--s3-headers '{"x-amz-acl": "public-read"}' \
204
205
--force-fsync \
205
206
--data-dir "./data/" \
206
-
--dir-structure "{year}/{month}/{day}"
207
+
--dir-structure "{year}/{month}/{day}" \
208
+
--s3-concat-concurrent-downloads 10
207
209
```
208
210
209
211
=== "ENV"
@@ -225,6 +227,7 @@ Required parameter are only `--s3-url` and `--s3-bucket`.
*`--s3-headers` - JSON object with additional header to every S3 request (Useful for setting ACLs);
260
263
*`--s3-force-path-style` - use path style URL. It appends bucket name at the end of the URL;
261
264
*`--dir-structure` - pattern of a directory structure on s3;
265
+
*`--s3-concat-concurrent-downloads` - Number of concurrent downloads of partial files from S3. When performing concatenation, Rustus downloads all partial files from S3 and concatenates them into a single file. This parameter controls the number of concurrent downloads. Default value is 10.
266
+
262
267
263
268
Required parameter are only `--s3-url` and `--s3-bucket`.
264
269
@@ -278,7 +283,9 @@ Required parameter are only `--s3-url` and `--s3-bucket`.
278
283
--s3-session-token "token" \
279
284
--s3-force-path-style \
280
285
--s3-headers '{"x-amz-acl": "public-read"}' \
281
-
--dir-structure "{year}/{month}/{day}"
286
+
--dir-structure "{year}/{month}/{day}" \
287
+
--s3-concat-concurrent-downloads 10
288
+
282
289
```
283
290
284
291
=== "ENV"
@@ -298,6 +305,7 @@ Required parameter are only `--s3-url` and `--s3-bucket`.
0 commit comments