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 f486f08 [flags] Remove the costly stringstream to string conversion
in a loop
new c3588b4 [txns][tools] tool to list transactions
new ba10e92 [txns][tools] add a state filter to `txns list` tool
new 990976d KUDU-2612: re-open TxnSystemTable if transaction is in new
range
The 3 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/kudu/client/TestKuduTransaction.java | 8 +-
.../integration-tests/txn_status_table-itest.cc | 10 +-
src/kudu/integration-tests/txn_write_ops-itest.cc | 31 ++-
src/kudu/master/txn_manager-test.cc | 10 +-
src/kudu/tools/CMakeLists.txt | 5 +
src/kudu/tools/kudu-tool-test.cc | 9 +
src/kudu/tools/kudu-txn-cli-test.cc | 174 ++++++++++++++
src/kudu/tools/tool_action.h | 1 +
src/kudu/tools/tool_action_txn.cc | 264 +++++++++++++++++++++
src/kudu/tools/tool_main.cc | 1 +
src/kudu/transactions/txn_status_manager-test.cc | 12 +-
src/kudu/transactions/txn_status_manager.cc | 2 +-
src/kudu/tserver/ts_tablet_manager.cc | 8 +
13 files changed, 512 insertions(+), 23 deletions(-)
create mode 100644 src/kudu/tools/kudu-txn-cli-test.cc
create mode 100644 src/kudu/tools/tool_action_txn.cc