comparison Sphinx/source/plugins/object-storage.rst @ 989:38909a00964c

fix s3
author Alain Mazy <am@osimis.io>
date Thu, 16 Nov 2023 12:23:37 +0100
parents afea429661c2
children 27b75c653a8b
comparison
equal deleted inserted replaced
988:afea429661c2 989:38909a00964c
71 "StorageStructure": "flat", // optional: see below 71 "StorageStructure": "flat", // optional: see below
72 "EnableLegacyUnknownFiles": true, // optional: see below 72 "EnableLegacyUnknownFiles": true, // optional: see below
73 "VirtualAddressing": true, // optional: see the section related to MinIO 73 "VirtualAddressing": true, // optional: see the section related to MinIO
74 "StorageEncryption" : {}, // optional: see the section related to encryption 74 "StorageEncryption" : {}, // optional: see the section related to encryption
75 "HybridMode": "Disabled", // optional: see the section related to Hybrid storage 75 "HybridMode": "Disabled", // optional: see the section related to Hybrid storage
76 "UseTransferMode": true // optional: see below (available from version 2.3.0) 76 "UseTransferManager": false // optional: see below (available from version 2.3.0)
77 } 77 }
78 78
79 The **EndPoint** configuration is used when accessing an S3 compatible cloud provider. I.e. here is a configuration to store data on Scaleway:: 79 The **EndPoint** configuration is used when accessing an S3 compatible cloud provider. I.e. here is a configuration to store data on Scaleway::
80 80
81 "AwsS3Storage" : { 81 "AwsS3Storage" : {
85 "SecretKey": "YYY", 85 "SecretKey": "YYY",
86 "Endpoint": "s3.fr-par.scw.cloud" 86 "Endpoint": "s3.fr-par.scw.cloud"
87 } 87 }
88 88
89 89
90 The **UseTransferMode** configuration is used to select the `Transfer Manager <https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/examples-s3-transfermanager.html>`__ mode in the AWS SDK client. 90 The **UseTransferManager** configuration is used to select the `Transfer Manager <https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/examples-s3-transfermanager.html>`__ mode in the AWS SDK client.
91 This option was introduced in version 2.3.0 and is the default one. If set to false, the default mode 91 This option was introduced in version 2.3.0. If set to false (default value), the default "object" mode is used.
92 is used.
93 92
94 93
95 .. _minio: 94 .. _minio:
96 95
97 Emulation of AWS S3 using MinIO 96 Emulation of AWS S3 using MinIO