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
s3.chunked-encoding.enabled and s3.checksum-validation.enabled are plain ConfigOptions with defaultValue(true) (NativeS3FileSystemFactory.java:101–115). There is no code that auto-disables them when a custom endpoint is set — only path-style access is auto-enabled (S3ClientProvider.java:481). A user copying the MinIO example as-is will have both still on, which can cause request failures against MinIO.
Suggested replacement:
When a custom endpoint is configured, path-style access is enabled automatically.
Chunked encoding and checksum validation must be disabled manually for MinIO compatibility:
```yaml
s3.chunked-encoding.enabled: false
s3.checksum-validation.enabled: false
S3EncryptionConfig.java:143–147 has explicit case "aes256" and case "aws:kms" branches. The aws:kms value in particular is what Hadoop S3A configs use, so users migrating from Hadoop will set it and silently get no encryption (falls through to none) because it is undocumented.
Suggested replacement:
| s3.sse.type | none | Encryption type: `none`, `sse-s3` or `aes256` (S3-managed keys), `sse-kms` or `aws:kms` (KMS-managed keys) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is the purpose of the change
Update missing configuration for native-s3-fs.
Brief change log
Update ReadMe doc
Verifying this change
N/A
Does this pull request potentially affect one of the following parts:
@Public(Evolving): (yes / no)Documentation
Was generative AI tooling used to co-author this PR?
Generated-by: Claude sonnet 4.6