vitess.io/vitess@v0.16.2/go/vt/mysqlctl/s3backupstorage/README.txt (about)

     1  Recently added options to enable usage of an S3 appliance: Cloudian
     2  HyperStore:
     3          --s3_backup_aws_endpoint <host:port> (port is required)
     4          --s3_backup_force_path_style=true/false
     5          --s3_backup_log_level <level> can be one of: LogOff, LogDebug, LogDebugWithSigning, LogDebugWithHTTPBody, LogDebugWithRequestRetries, LogDebugWithRequestErrors.  Default: LogOff
     6  
     7  By default the s3 client will try to connect to
     8  <path>.<region>.amazonaws.com.  Adjusting the endpoint will allow this
     9  to be changed.
    10  
    11  Given the way the FQDN is configured the TLS certificate may not match the
    12  server's "base" (<region>.<end_point_address>) due to the leading <path>
    13  so setting --s3_backup_force_path_style=true will force the s3 client to
    14  connect to <region>.<endpoint> and then make a request using the full
    15  path within the http calls.
    16  
    17  --s3backup_log_level enables more verbose logging of the S3 calls.