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?
Closes #.
Rationale for this change
ObjectStore::append has always been somewhat at odds with the design goals of the crate, as it is not an object store API, and has rather unfortunate characteristics with regards to atomicity. It was largely added to accommodate streaming workloads in DataFusion that are overloading the file IO abstractions.
apache/datafusion#7994 tracks addressing this upstream, and is an effort I intend to drive to completion. Whilst removing it is slightly jumping the gun, I want this to make the next release #5010 which will still give plenty of time to prepare DataFusion for this change
This functionality was only implemented by InMemory and LocalFileSystem and so applications can easily reproduce this functionality should they so desire.
What changes are included in this PR?
Are there any user-facing changes?