~dernils/duplicity/fixedTestSetup

« back to all changes in this revision

Viewing changes to duplicity/globals.py

  • Committer: Kenneth Loafman
  • Date: 2017-05-04 15:06:41 UTC
  • mfrom: (1207.1.1 add-azure-arguments)
  • Revision ID: kenneth@loafman.com-20170504150641-67htgb6ehyggcqcq
* Merged in lp:~marix/duplicity/add-azure-arguments
  - Using the Azure backend to store large amounts of data we found that
    performance is sub-optimal. The changes on this branch add command line
    parameters to fine-tune some parameters of the Azure storage library,
    allowing to push write performance towards Azure above 1 Gb/s for large
    back-ups. If a user does not provide the parameters the defaults of the
    Azure storage library will continue to be used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
215
215
# Use server side encryption in s3
216
216
s3_use_sse = False
217
217
 
 
218
# The largest size upload supported in a single put call for azure
 
219
azure_max_single_put_size = None
 
220
 
 
221
# The size of the blocks put to azure blob storage if bigger than azure_max_single_put_size
 
222
azure_max_block_size = None
 
223
 
 
224
# Maximum number of parallel connections to use when the blob size for azure exceeds 64MB
 
225
azure_max_connections = None
 
226
 
218
227
# Whether to use the full email address as the user name when
219
228
# logging into an imap server. If false just the user name
220
229
# part of the email address is used.