refactor(services/hdfs): deprecate append option#7563
Merged
Conversation
28 tasks
PsiACE
approved these changes
May 19, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Which issue does this PR close?
Refs #6708.
Rationale for this change
HDFS append is a native write capability that only affects explicit append requests. Regular writes do not use the append path, so service config should not hide this capability for test selection.
What changes are included in this PR?
This PR enables
write_can_appendby default for HDFS and HDFS Native, keepsenable_appendas a deprecated no-op compatibility option, and removes the HDFS Native runtime append gate so backend/client errors surface naturally. HDFS fixtures that previously disabled append through service config now useOPENDAL_TEST_CAPABILITY_OVERRIDES=write_can_append=false.Are there any user-facing changes?
enable_appendis deprecated because HDFS append capability is enabled by default. Deployments that do not support append will only see backend/client errors when callers explicitly request append.AI Usage Statement
N/A.