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 7b0a94d [common] add PartitionSchema::HasCustomHashSchemas() method
new 4fe61a2 [rpc] allow reuse of outbound request buffers when retrying
new 3884a63 [consensus] KUDU-1620: re-resolve consensus peers on network
error
new a50091e KUDU-2671 introduce PartitionKey
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:
src/kudu/client/batcher.cc | 2 +
src/kudu/client/client-test.cc | 54 +-
src/kudu/client/client.cc | 27 +-
src/kudu/client/client.h | 1 +
src/kudu/client/flex_partitioning_client-test.cc | 2 +-
src/kudu/client/meta_cache.cc | 98 ++--
src/kudu/client/meta_cache.h | 35 +-
src/kudu/client/partitioner-internal.cc | 16 +-
src/kudu/client/partitioner-internal.h | 5 +-
src/kudu/client/scan_configuration.cc | 12 +-
src/kudu/client/scan_configuration.h | 5 +-
src/kudu/client/scan_token-internal.cc | 27 +-
src/kudu/client/scanner-internal.cc | 12 +-
src/kudu/client/scanner-internal.h | 3 +-
src/kudu/common/common.proto | 2 +-
src/kudu/common/partition-test.cc | 558 +++++++++++----------
src/kudu/common/partition.cc | 255 +++++-----
src/kudu/common/partition.h | 118 ++++-
src/kudu/common/partition_pruner-test.cc | 148 +++---
src/kudu/common/partition_pruner.cc | 37 +-
src/kudu/common/partition_pruner.h | 12 +-
src/kudu/common/scan_spec.cc | 12 +-
src/kudu/common/scan_spec.h | 20 +-
src/kudu/consensus/consensus_peers.cc | 15 +-
src/kudu/integration-tests/dns_alias-itest.cc | 178 +++++++
.../integration-tests/table_locations-itest.cc | 43 +-
.../integration-tests/tablet_replacement-itest.cc | 8 +-
src/kudu/master/catalog_manager-test.cc | 70 ++-
src/kudu/master/catalog_manager.cc | 149 ++++--
src/kudu/master/catalog_manager.h | 16 +-
src/kudu/master/master.proto | 27 +-
src/kudu/master/master_path_handlers.cc | 4 +-
src/kudu/mini-cluster/external_mini_cluster.h | 6 +
src/kudu/mini-cluster/mini_cluster.cc | 5 +-
src/kudu/mini-cluster/mini_cluster.h | 4 +-
src/kudu/rpc/mt-rpc-test.cc | 6 +-
src/kudu/rpc/outbound_call.cc | 83 ++-
src/kudu/rpc/outbound_call.h | 95 +++-
src/kudu/rpc/proxy-test.cc | 48 ++
src/kudu/rpc/proxy.cc | 58 ++-
src/kudu/rpc/proxy.h | 8 +-
src/kudu/rpc/rpc-test-base.h | 29 +-
src/kudu/rpc/rpc_controller.cc | 14 +
src/kudu/rpc/rpc_controller.h | 17 +
src/kudu/tools/table_scanner.cc | 4 +-
src/kudu/tools/tool_action_table.cc | 4 +-
src/kudu/util/net/net_util.cc | 8 +-
47 files changed, 1560 insertions(+), 800 deletions(-)