github.com/rohankumardubey/proxyfs@v0.0.0-20210108201508-653efa9ab00e/proxyfsd/swift_client.conf (about)

     1  # swiftclient settings
     2  #
     3  # RetryDelay, RetryExpBackoff, RetryLimit control the behavior of
     4  # swiftclient when operations (GET, PUT, etc.) fail for a container or
     5  # object and RetryDelayObject, RetryLimitObject, RetryExpBackoffObject
     6  # control the behavior when operations fail for an object.
     7  #
     8  # RetryDelay is the time before the first retry; RetryLimit is the
     9  # maximum number of retries, and RetryExpBackoff is an exponential
    10  # backoff which is multiplied with the previous RetryDelay to
    11  # determine how long to wait for the second, third, fourth,
    12  # etc. retry.
    13  [SwiftClient]
    14  NoAuthIPAddr:                 127.0.0.1
    15  NoAuthTCPPort:                8090
    16  
    17  RetryDelay:                   1s
    18  RetryExpBackoff:              1.5
    19  RetryLimit:                   11
    20  
    21  RetryDelayObject:             1s
    22  RetryExpBackoffObject:        1.95
    23  RetryLimitObject:             8
    24  
    25  ChunkedConnectionPoolSize:    512
    26  NonChunkedConnectionPoolSize: 128
    27  
    28  SwiftReconNoWriteThreshold:   80
    29  SwiftReconNoWriteErrno:       ENOSPC
    30  SwiftReconReadOnlyThreshold:  90
    31  SwiftReconReadOnlyErrno:      EROFS
    32  SwiftConfDir:                 /etc/swift
    33  SwiftReconChecksPerConfCheck: 10