This is an automated email from the ASF dual-hosted git repository.
junchao pushed a change to branch poc_merge
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
from 8fd19e12 add poc
add cfb177f0 Support Leveldb with Recovery Data locally (#208)
add 8416beb3 Recovery ckpt (#214)
new 5d961d0f merge
The 1 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:
INSTALL.sh | 2 +
chain/storage/kv_storage_test.cpp | 99 +++++++++++--
chain/storage/leveldb.cpp | 140 ++++++++++++++++--
chain/storage/leveldb.h | 15 +-
chain/storage/memory_db.cpp | 59 ++++++--
chain/storage/memory_db.h | 13 +-
chain/storage/mock_storage.h | 19 ++-
chain/storage/proto/kv.proto | 1 +
chain/storage/storage.h | 14 +-
executor/common/transaction_manager.cpp | 15 ++
executor/common/transaction_manager.h | 12 +-
executor/kv/kv_executor.cpp | 27 ++--
executor/kv/kv_executor.h | 2 -
interface/kv/kv_client.cpp | 12 --
interface/kv/kv_client.h | 1 -
platform/config/resdb_config_utils.cpp | 35 +++--
platform/consensus/checkpoint/checkpoint.h | 1 +
platform/consensus/checkpoint/mock_checkpoint.h | 1 +
.../consensus/execution/transaction_executor.cpp | 59 +++++---
.../consensus/execution/transaction_executor.h | 5 +-
platform/consensus/ordering/pbft/BUILD | 2 +-
.../consensus/ordering/pbft/checkpoint_manager.cpp | 164 +++++++++++++--------
.../consensus/ordering/pbft/checkpoint_manager.h | 19 ++-
.../ordering/pbft/consensus_manager_pbft.cpp | 106 ++++++++++++-
.../ordering/pbft/consensus_manager_pbft.h | 10 ++
.../ordering/pbft/lock_free_collector_pool.cpp | 12 ++
.../ordering/pbft/lock_free_collector_pool.h | 1 +
.../consensus/ordering/pbft/message_manager.cpp | 32 +---
platform/consensus/ordering/pbft/message_manager.h | 8 +-
platform/consensus/ordering/pbft/query.cpp | 48 +++---
platform/consensus/ordering/pbft/query.h | 6 +-
platform/consensus/ordering/pbft/query_test.cpp | 4 +-
.../ordering/pbft/transaction_collector.cpp | 4 +-
platform/consensus/recovery/recovery.cpp | 109 +++++++++++++-
platform/consensus/recovery/recovery.h | 16 +-
platform/consensus/recovery/recovery_test.cpp | 21 ++-
platform/networkstrate/replica_communicator.cpp | 1 -
platform/proto/resdb.proto | 4 +-
scripts/deploy/config/kv_server.conf | 10 +-
scripts/deploy/script/deploy.sh | 5 +-
scripts/format.sh | 1 +
service/kv/kv_service.cpp | 13 +-
service/tools/config/interface/service.config | 10 +-
service/tools/kv/api_tools/kv_service_tools.cpp | 5 -
tools/generate_region_config.py | 1 +
45 files changed, 861 insertions(+), 283 deletions(-)