This is an automated email from the ASF dual-hosted git repository.
alexey pushed a change to branch branch-1.9.x
in repository https://gitbox.apache.org/repos/asf/kudu.git.
from 6ddc337 [docker] Fix build to work outside of Git WD
new 24341a7 [tests] fix running tests under the super-user
new ddfcb87 [master] introduce cache for location mapping assignments
new b267c9f [master] use cache for assigned locations
new 3793896 [master] log on longer location mapping command runs
new 01dd2be KUDU-2743 [subprocess] test to repro deadlock in Subproces::Run()
new 4e31b96 KUDU-2743 [subprocess] use RAW_LOG() in child process
The 6 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/client-test.cc | 44 ++++-
.../integration-tests/location_assignment-itest.cc | 70 ++++++++
src/kudu/master/CMakeLists.txt | 2 +
src/kudu/master/location_cache-test.cc | 179 +++++++++++++++++++++
src/kudu/master/location_cache.cc | 154 ++++++++++++++++++
src/kudu/master/location_cache.h | 88 ++++++++++
src/kudu/master/master-test.cc | 25 ++-
src/kudu/master/master.cc | 9 +-
src/kudu/master/master.h | 11 +-
src/kudu/master/master_service.cc | 10 +-
src/kudu/master/ts_descriptor-test.cc | 24 +--
src/kudu/master/ts_descriptor.cc | 72 +--------
src/kudu/master/ts_descriptor.h | 16 +-
src/kudu/master/ts_manager.cc | 9 +-
src/kudu/master/ts_manager.h | 10 +-
src/kudu/rpc/negotiation-test.cc | 9 +-
src/kudu/tools/ksck_remote-test.cc | 36 ++---
src/kudu/util/env-test.cc | 17 +-
src/kudu/util/signal.cc | 28 +++-
src/kudu/util/subprocess-test.cc | 48 ++++++
src/kudu/util/subprocess.cc | 66 ++++++--
21 files changed, 775 insertions(+), 152 deletions(-)
create mode 100644 src/kudu/master/location_cache-test.cc
create mode 100644 src/kudu/master/location_cache.cc
create mode 100644 src/kudu/master/location_cache.h
|