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 fcbca3d [clock] change in the semantics of TimeService::Init()
new c103d51 [clock] add a built-in NTP client implementation
new 12922d8 [clock] add unit tests for FindIntersection() function
new 1efa619 [mini_cluster] introduce 'builtin' clock source
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/clock/CMakeLists.txt | 3 +
src/kudu/clock/builtin_ntp-internal.cc | 94 ++
src/kudu/clock/builtin_ntp-internal.h | 59 ++
src/kudu/clock/builtin_ntp.cc | 1056 ++++++++++++++++++++
src/kudu/clock/builtin_ntp.h | 190 ++++
src/kudu/clock/hybrid_clock.cc | 14 +-
src/kudu/clock/ntp-test.cc | 667 +++++++++++++
.../integration-tests/master_migration-itest.cc | 6 +-
.../mini-cluster/external_mini_cluster-test.cc | 83 +-
src/kudu/mini-cluster/external_mini_cluster.cc | 62 +-
src/kudu/mini-cluster/external_mini_cluster.h | 13 +-
11 files changed, 2195 insertions(+), 52 deletions(-)
create mode 100644 src/kudu/clock/builtin_ntp-internal.cc
create mode 100644 src/kudu/clock/builtin_ntp-internal.h
create mode 100644 src/kudu/clock/builtin_ntp.cc
create mode 100644 src/kudu/clock/builtin_ntp.h
create mode 100644 src/kudu/clock/ntp-test.cc