You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration/storage-config.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,7 @@ This section contains one configuration subsection per storage provider. If a st
56
56
|`force_path_style_access`| Disables [virtual-hosted–style](https://docs.aws.amazon.com/AmazonS3/latest/userguide/VirtualHosting.html) requests. Required by some S3-compatible providers (Ceph, MinIO). |`false`|
57
57
|`disable_multi_object_delete`| Disables [Multi-Object Delete](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjects.html) requests. Required by some S3-compatible providers (GCS). |`false`|
58
58
|`disable_multipart_upload`| Disables [multipart upload](https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html) of objects. Required by some S3-compatible providers (GCS). |`false`|
59
+
|`disable_checksums`| Disables [checksums](https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html) on requests and responses. Required by S3-compatible providers that do not support the additional checksum algorithms enabled by default in recent versions of the AWS SDK (Digital Ocean, Garage, GCS, MinIO). |`false`|
59
60
60
61
:::warning
61
62
Hardcoding credentials into configuration files is not secure and strongly discouraged. Prefer the alternative authentication methods that your storage backend may provide.
@@ -78,19 +79,19 @@ Storage flavors ensure that Quickwit works correctly with storage providers that
78
79
79
80
*Digital Ocean*
80
81
81
-
The Digital Ocean flavor (`digital_ocean`) forces path-style access and turns off multi-object delete requests.
82
+
The Digital Ocean flavor (`digital_ocean`) forces path-style access, turns off multi-object delete requests, and disables checksums.
82
83
83
84
*Garage flavor*
84
85
85
-
The Garage flavor (`garage`) overrides the `region` parameter to `garage` and forces path-style access.
86
+
The Garage flavor (`garage`) overrides the `region` parameter to `garage`, forces path-style access, and disables checksums.
86
87
87
88
*Google Cloud Storage*
88
89
89
-
The Google Cloud Storage flavor (`gcs`) turns off multi-object delete requests and multipart uploads.
90
+
The Google Cloud Storage flavor (`gcs`) turns off multi-object delete requests, multipart uploads, and disables checksums.
90
91
91
92
*MinIO flavor*
92
93
93
-
The MinIO flavor (`minio`) overrides the `region` parameter to `minio` and forces path-style access.
94
+
The MinIO flavor (`minio`) overrides the `region` parameter to `minio`, forces path-style access, and disables checksums.
94
95
95
96
Example of a storage configuration for Google Cloud Storage in YAML format:
0 commit comments