This is an automated email from the ASF dual-hosted git repository.
licheng pushed a change to branch HDDS-2823
in repository https://gitbox.apache.org/repos/asf/hadoop-ozone.git.
discard 1ea9555 HDDS-3186. Introduce generic SCMRatisRequest and
SCMRatisResponse. (#959)
omit d7728b3 HDDS-3556 Refactor conf in SCMRatisServer to Java-based conf.
(#907)
omit 755aa18 Resolve conflicts with merge from master.
omit 5495d7f HDDS-3187 Construct SCM StateMachine. (#819)
omit 81ac783 HDDS-3185 Construct a standalone ratis server for SCM. (#720)
add 89484f5 HDDS-3064. Get Key is hung when READ delay is injected in
chunk file path.
add daebde2 HDDS-3474. Create transactionInfo Table in OmMetadataManager.
(#855)
add 2ca872c HDDS-2556. Handle InterruptedException in BlockOutputStream
(#942)
add 28fd39a HDDS-3638. Add a cat command to show the text of a file in
the Ozone server (#954)
add 4a9b7e0 HDDS-3614. Remove S3Table from OmMetadataManager. (#940)
add 6551898 HDDS-3647. NPE while open datanode page since a pipeline no
leader (#964)
new 3dd5812 HDDS-3185 Construct a standalone ratis server for SCM. (#720)
new a5f5e2d HDDS-3187 Construct SCM StateMachine. (#819)
new d3d4604 Resolve conflicts with merge from master.
new d9a5cc9 HDDS-3556 Refactor conf in SCMRatisServer to Java-based conf.
(#907)
new b58d068 HDDS-3186. Introduce generic SCMRatisRequest and
SCMRatisResponse. (#959)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (1ea9555)
\
N -- N -- N refs/heads/HDDS-2823 (b58d068)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../apache/hadoop/hdds/scm/XceiverClientGrpc.java | 11 +-
.../hadoop/hdds/scm/storage/BlockOutputStream.java | 82 ++++++++----
.../org/apache/hadoop/ozone/OzoneConfigKeys.java | 3 +
.../java/org/apache/hadoop/ozone/OzoneConsts.java | 4 +
.../common/src/main/resources/ozone-default.xml | 9 ++
.../rpc/TestBlockOutputStreamWithFailures.java | 2 +-
.../apache/hadoop/ozone/om/OMMetadataManager.java | 11 +-
.../hadoop/ozone/om/OmMetadataManagerImpl.java | 34 ++---
.../ozone/om/codec/OMTransactionInfoCodec.java | 50 ++++++++
.../hadoop/ozone/om/ratis/OMTransactionInfo.java | 140 +++++++++++++++++++++
.../ozone/om/ratis/OzoneManagerDoubleBuffer.java | 1 -
.../hadoop/ozone/om/TestOmMetadataManager.java | 25 ++++
...oCodec.java => TestOMTransactionInfoCodec.java} | 69 ++++------
.../hadoop/ozone/recon/api/NodeEndpoint.java | 2 +-
.../{DeleteKeyHandler.java => CatKeyHandler.java} | 15 ++-
.../hadoop/ozone/shell/keys/KeyCommands.java | 1 +
16 files changed, 360 insertions(+), 99 deletions(-)
create mode 100644
hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/codec/OMTransactionInfoCodec.java
create mode 100644
hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/ratis/OMTransactionInfo.java
copy
hadoop-ozone/ozone-manager/src/test/java/org/apache/hadoop/ozone/om/codec/{TestOmPrefixInfoCodec.java
=> TestOMTransactionInfoCodec.java} (57%)
copy
hadoop-ozone/tools/src/main/java/org/apache/hadoop/ozone/shell/keys/{DeleteKeyHandler.java
=> CatKeyHandler.java} (82%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]