You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2021/01/08 03:33:04 UTC

[iotdb] branch master updated (4b58c28 -> 682e9b8)

This is an automated email from the ASF dual-hosted git repository.

hxd pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from 4b58c28  add debug log for IOTDB-1101 (#2424)
     add 682e9b8  Remove EnvironmentUtil in the cluster module and optimize UT (#2423)

No new revisions were added by this update.

Summary of changes:
 cluster/pom.xml                                    |   7 +
 .../iotdb/cluster/config/ClusterConstant.java      |  31 ++-
 .../cluster/server/heartbeat/HeartbeatThread.java  |   8 +-
 .../iotdb/cluster/common/EnvironmentUtils.java     | 218 ---------------------
 .../org/apache/iotdb/cluster/common/IoTDBTest.java |   4 +-
 .../cluster/integration/BaseSingleNodeTest.java    |   2 +-
 .../iotdb/cluster/log/CommitLogCallbackTest.java   |   2 +-
 .../iotdb/cluster/log/CommitLogTaskTest.java       |   2 +-
 .../iotdb/cluster/log/LogDispatcherTest.java       |   2 +-
 .../log/applier/AsyncDataLogApplierTest.java       |   2 +-
 .../cluster/log/applier/DataLogApplierTest.java    |   1 -
 .../iotdb/cluster/log/catchup/CatchUpTaskTest.java |   2 +-
 .../cluster/log/catchup/LogCatchUpTaskTest.java    |   2 +-
 .../log/catchup/SnapshotCatchUpTaskTest.java       |   2 +-
 .../cluster/log/snapshot/DataSnapshotTest.java     |   2 +-
 .../iotdb/cluster/partition/SlotManagerTest.java   |   2 +-
 .../cluster/partition/SlotPartitionTableTest.java  |   2 +-
 .../query/ClusterAggregateExecutorTest.java        |  48 +++--
 .../query/ClusterDataQueryExecutorTest.java        |  22 ++-
 .../cluster/query/ClusterFillExecutorTest.java     |  72 ++++---
 .../cluster/query/ClusterPlanExecutorTest.java     |   8 +-
 .../cluster/query/ClusterQueryRouterTest.java      | 216 +++++++++++---------
 .../ClusterGroupByNoVFilterDataSetTest.java        |  64 +++---
 .../groupby/ClusterGroupByVFilterDataSetTest.java  |  74 +++----
 .../query/groupby/MergeGroupByExecutorTest.java    |  83 ++++----
 .../query/groupby/RemoteGroupByExecutorTest.java   | 146 +++++++-------
 .../query/reader/ClusterTimeGeneratorTest.java     |  34 ++--
 .../cluster/query/reader/DatasourceInfoTest.java   |  16 +-
 .../reader/RemoteSeriesReaderByTimestampTest.java  | 122 ++++++------
 .../query/reader/RemoteSimpleSeriesReaderTest.java | 136 +++++++------
 .../caller/AppendGroupEntryHandlerTest.java        |   2 +-
 .../caller/AppendNodeEntryHandlerTest.java         |   2 +-
 .../handlers/caller/ElectionHandlerTest.java       |   2 +-
 .../handlers/caller/HeartbeatHandlerTest.java      |   2 +-
 .../handlers/caller/LogCatchUpHandlerTest.java     |   2 +-
 .../server/heartbeat/HeartbeatThreadTest.java      |   5 +-
 .../cluster/server/member/DataGroupMemberTest.java | 124 ++++++------
 .../iotdb/cluster/server/member/MemberTest.java    |   9 +-
 .../iotdb/db/query/control/QueryFileManager.java   |   2 +
 .../apache/iotdb/db/service/RegisterManager.java   |  11 +-
 40 files changed, 718 insertions(+), 775 deletions(-)
 delete mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/common/EnvironmentUtils.java