This is an automated email from the ASF dual-hosted git repository.

awong pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git.


    from 1c5a04f  [benchmarks] added a few 'perf stat' metrics
     new 14d4117  KUDU-2612 p7: add transaction participants to tablets
     new a69a1d6  KUDU-2612 p8: replay participant ops on bootstrap

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/consensus/consensus.proto                 |   2 +
 src/kudu/integration-tests/CMakeLists.txt          |   1 +
 .../integration-tests/txn_participant-itest.cc     | 354 +++++++++++++++++++++
 src/kudu/tablet/CMakeLists.txt                     |   3 +
 src/kudu/tablet/ops/op.h                           |   1 +
 src/kudu/tablet/ops/op_tracker.cc                  |   6 +
 src/kudu/tablet/ops/participant_op.cc              | 194 +++++++++++
 src/kudu/tablet/ops/participant_op.h               | 126 ++++++++
 src/kudu/tablet/tablet.h                           |  10 +-
 src/kudu/tablet/tablet_bootstrap.cc                |  25 ++
 src/kudu/tablet/tablet_replica.cc                  |  37 ++-
 src/kudu/tablet/tablet_replica.h                   |   9 +-
 src/kudu/tablet/txn_participant-test-util.h        |  64 ++++
 src/kudu/tablet/txn_participant-test.cc            | 306 ++++++++++++++++++
 src/kudu/tablet/txn_participant.cc                 |  76 +++++
 src/kudu/tablet/txn_participant.h                  | 230 +++++++++++++
 src/kudu/tserver/tserver_admin.proto               |  26 ++
 17 files changed, 1461 insertions(+), 9 deletions(-)
 create mode 100644 src/kudu/integration-tests/txn_participant-itest.cc
 create mode 100644 src/kudu/tablet/ops/participant_op.cc
 create mode 100644 src/kudu/tablet/ops/participant_op.h
 create mode 100644 src/kudu/tablet/txn_participant-test-util.h
 create mode 100644 src/kudu/tablet/txn_participant-test.cc
 create mode 100644 src/kudu/tablet/txn_participant.cc
 create mode 100644 src/kudu/tablet/txn_participant.h

Reply via email to