This is an automated email from the ASF dual-hosted git repository.
alexey pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git.
from 9287bc2 KUDU-636. Use protobuf arenas for CommitMsgs
new efd8c4f KUDU-2612 p2: introduce transaction status management
new cfde052 [tablet] OpState::op_state_lock_ -->
WriteOpState::op_state_lock_
The 2 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:
src/kudu/master/catalog_manager.h | 16 -
src/kudu/tablet/ops/op.h | 3 -
src/kudu/tablet/ops/write_op.h | 7 +-
src/kudu/transactions/CMakeLists.txt | 3 +
.../txn_status_entry.cc} | 47 ++-
src/kudu/transactions/txn_status_entry.h | 116 ++++++
src/kudu/transactions/txn_status_manager-test.cc | 443 +++++++++++++++++++++
src/kudu/transactions/txn_status_manager.cc | 262 ++++++++++++
src/kudu/transactions/txn_status_manager.h | 146 +++++++
src/kudu/util/cow_object.h | 47 +++
10 files changed, 1047 insertions(+), 43 deletions(-)
copy src/kudu/{rpc/request_tracker.cc => transactions/txn_status_entry.cc}
(53%)
create mode 100644 src/kudu/transactions/txn_status_entry.h
create mode 100644 src/kudu/transactions/txn_status_manager-test.cc
create mode 100644 src/kudu/transactions/txn_status_manager.cc
create mode 100644 src/kudu/transactions/txn_status_manager.h