This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a change to branch cluster_new
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.
from 2c8cc68 fix test
add 0af270a add unit tests
No new revisions were added by this update.
Summary of changes:
.../cluster/client/sync/SyncClientAdaptor.java | 2 +-
.../iotdb/cluster/log/applier/BaseApplier.java | 35 ++--
.../iotdb/cluster/log/catchup/CatchUpTask.java | 3 +-
.../cluster/log/catchup/SnapshotCatchUpTask.java | 1 -
.../manage/FilePartitionedSnapshotLogManager.java | 2 +-
.../iotdb/cluster/log/manage/RaftLogManager.java | 12 +-
.../serializable/SyncLogDequeSerializer.java | 85 ++------
.../apache/iotdb/cluster/utils/ClientUtils.java | 2 +-
.../log/applier/AsyncDataLogApplierTest.java | 107 ++++++++++
.../cluster/log/applier/DataLogApplierTest.java | 34 +++-
.../cluster/log/applier/MetaLogApplierTest.java | 20 ++
.../iotdb/cluster/log/catchup/CatchUpTaskTest.java | 215 ++++++++++++++++-----
.../cluster/log/catchup/LogCatchUpTaskTest.java | 127 +++++++++---
.../log/catchup/SnapshotCatchUpTaskTest.java | 101 ++++++++--
.../cluster/log/logtypes/SerializeLogTest.java | 4 +-
.../log/manage/CommittedEntryManagerTest.java | 3 +
.../cluster/log/manage/RaftLogManagerTest.java | 42 +++-
.../serializable/SyncLogDequeSerializerTest.java | 97 +++++++++-
18 files changed, 694 insertions(+), 198 deletions(-)
create mode 100644
cluster/src/test/java/org/apache/iotdb/cluster/log/applier/AsyncDataLogApplierTest.java