Created
March 2, 2017 15:23
-
-
Save chianingwang/3aaf0112573ece0576b9349c3f10a5cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global] | |
user = dedup | |
auth = https://cloud.swiftstack.com/auth/v1.0 | |
key = dedup | |
insecure = False | |
# default is SLO | |
use_slo = False | |
# default segment_size is 10MB | |
segment_size = 10240 | |
segment_container_prefix = .segment_ | |
[C:\Users\johnny\Documents\GitHub\bulk-uploader-0.0.2\a] | |
container = test_bulk_a | |
# this option overwrite segment_container_prefix | |
segment_container = test_bulk_a+seg | |
# expired objects after 1 hour or more | |
# or you can use | |
# | |
# expired_after = 300s (seconds) | |
# expired_after = 5m (minutes) | |
# expired_after = 24h (hours) | |
# expired_after = 90d (days) | |
# expired_after = 7y (years) | |
# | |
# Note, ignore this option if `expired_at_date` is set | |
expired_after = 1h | |
# the date format is "YYYY-MM-DD hh:mm:ss" | |
# expired_at_date = 2016-10-01 10:00:00 | |
# Checker will check local file and remote object, | |
# it'll delete local file when the md5sum is matched after 10 mins | |
delete_uploaded_file_after = 10m | |
# allow user to set metadata for object likes 'x-objet-meta-key-1: value-1' | |
metadata = key-1:value-1,key-2:value-2 | |
# only upload files that matched the patterns, split with comma | |
# file_patterns = *.tar.gz, *.bz | |
[C:\Users\johnny\Documents\GitHub\bulk-uploader-0.0.2\b] | |
container = test_bulk_b | |
# this option overwrite segment_container_prefix | |
segment_container = test_bulk_b+seg | |
# expired objects after 30 mins or more | |
# or you can use | |
# | |
# expired_after = 300s (seconds) | |
# expired_after = 5m (minutes) | |
# expired_after = 24h (hours) | |
# expired_after = 90d (days) | |
# expired_after = 7y (years) | |
# | |
# Note, ignore this option if `expired_at_date` is set | |
expired_after = 30m | |
# the date format is "YYYY-MM-DD hh:mm:ss" | |
expired_at_date = 2017-10-01 10:00:00 | |
# only upload files that matched the patterns, split with comma | |
#file_patterns = *.log.gz | |
# allow user to set metadata for object likes 'x-objet-meta-key-1: value-1' | |
metadata = key-1:value-1,key-2:value-2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment