This is an automated email from the ASF dual-hosted git repository.
granthenke pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git.
from 3e6d061 [txn] update not-a-leader retry logic in TxnSystemClient
new 3e02cce [docs] Fix a typo in the installation docs
new 70bce76 [tserver] KUDU-2612: participant op RPC endpoint
new be4fb83 Replace boost::iequals with our own implementation
new 42e3ae3 [build] CMake fixes for Apple ARM builds
new 57c757d txn_participant: return TXN_ILLEGAL_STATE code on illegal
state errors
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:
CMakeLists.txt | 14 +-
docs/installation.adoc | 2 +-
src/kudu/clock/hybrid_clock.cc | 23 +-
src/kudu/gutil/CMakeLists.txt | 2 +-
src/kudu/hms/hms_client.cc | 9 +-
src/kudu/integration-tests/hms_itest-base.cc | 4 +-
.../integration-tests/txn_participant-itest.cc | 282 +++++++++++++++++++++
src/kudu/rpc/sasl_common.cc | 6 +-
src/kudu/security/tls_context.cc | 8 +-
src/kudu/server/default_path_handlers.cc | 15 +-
src/kudu/server/server_base.cc | 6 +-
src/kudu/tablet/ops/participant_op.cc | 27 +-
src/kudu/tablet/ops/participant_op.h | 5 +-
src/kudu/tablet/txn_participant-test.cc | 3 +
src/kudu/tablet/txn_participant.h | 24 +-
src/kudu/tools/ksck.cc | 12 +-
src/kudu/tools/ksck.h | 2 +-
src/kudu/tools/kudu-tool-test.cc | 5 +-
src/kudu/tools/table_scanner.cc | 4 +-
src/kudu/tools/tool_action_cluster.cc | 11 +-
src/kudu/tools/tool_action_common.cc | 20 +-
src/kudu/tools/tool_action_hms.cc | 20 +-
src/kudu/tools/tool_action_master.cc | 24 +-
src/kudu/tools/tool_action_table.cc | 7 +-
src/kudu/tools/tool_action_test.cc | 10 +-
src/kudu/tools/tool_action_tserver.cc | 26 +-
src/kudu/tserver/tablet_service.cc | 32 +++
src/kudu/tserver/tablet_service.h | 6 +
src/kudu/tserver/tserver_admin.proto | 7 +-
src/kudu/util/flags.cc | 7 +-
src/kudu/util/string_case-test.cc | 21 ++
src/kudu/util/string_case.cc | 29 +++
src/kudu/util/string_case.h | 3 +
33 files changed, 546 insertions(+), 130 deletions(-)