-
Notifications
You must be signed in to change notification settings - Fork 8.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HADOOP-13227 outputstream specification #163
Closed
steveloughran
wants to merge
3
commits into
apache:branch-2
from
steveloughran:s3/HADOOP-13327-outputstream-spec
Closed
HADOOP-13227 outputstream specification #163
steveloughran
wants to merge
3
commits into
apache:branch-2
from
steveloughran:s3/HADOOP-13327-outputstream-spec
Conversation
This file contains 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
…tStream defining actions when output streams are closed. Change-Id: Ia921e8d2f9af53e8e6655a806e79fcc1dba49d1d
…of a few interfaces in the process
steveloughran
force-pushed
the
s3/HADOOP-13327-outputstream-spec
branch
from
May 1, 2017 18:10
e07af21
to
8177448
Compare
@elek that feature doesn't come yet |
shanthoosh
pushed a commit
to shanthoosh/hadoop
that referenced
this pull request
Oct 15, 2019
…g containers Author: Abhishek Shivanna <[email protected]> Reviewers: Navina Ramesh <[email protected]>, Jagadish V <[email protected]> Closes apache#163 from abhishekshivanna/master
This was referenced Sep 15, 2021
This was referenced Sep 22, 2021
This was referenced Sep 29, 2021
This was referenced Jun 21, 2022
This was referenced Jun 29, 2022
This was referenced Jul 12, 2022
This was referenced Jul 20, 2022
This was referenced Jul 28, 2022
This was referenced Aug 4, 2022
Merged
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.
WiP specification of output streams.
Alongside the docs, this will include tests and tightening of behaviours of output streams which don't comply with the
java.io.OutputStream
specification or other parts of the specification (i.e. the extra methods are inconsistent with HDFS). Object stores are special; their behaviours will be documented and (unreconcilable) differences with filesystems handled in tests.Note that HDFS does not currently follow
java.io.OutputStream.write(int)
's required behaviour: it will not fail on a write on a closed stream. This will have to be corrected