You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by er...@apache.org on 2023/01/05 14:04:32 UTC

[iotdb] branch improve/iotdb-5803 updated (cc2413fb6d -> 9f937d86d0)

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

ericpai pushed a change to branch improve/iotdb-5803
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    omit cc2413fb6d [IOTDB-5303] Refine IT config: part I
     add 1a29eb07c1 [IOTDB-5365] Init lastEnterReadyQueueTime of DriverTask while creating it
     add 24e5d2fe8d [IOTDB-4497] Improve NodeStatus definition (#8732)
     add afc58a0ad3 [IOTDB-5364] Refactor Count TimeSeries Group By Level based on SchemaReader (#8759)
     add 9f937d86d0 [IOTDB-5303] Refine IT config: part I

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (cc2413fb6d)
            \
             N -- N -- N   refs/heads/improve/iotdb-5803 (9f937d86d0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 docs/UserGuide/Cluster/Cluster-Maintenance.md      |  24 ++++
 docs/zh/UserGuide/Cluster/Cluster-Maintenance.md   |  24 ++++
 .../iotdb/db/it/schema/IoTDBMetadataFetchIT.java   |  29 +----
 .../schemaregion/rocksdb/RSchemaRegion.java        |  58 ---------
 .../metadata/tagSchemaRegion/TagSchemaRegion.java  |  18 ---
 .../iotdb/db/metadata/mtree/IMTreeBelowSG.java     |  11 --
 .../db/metadata/mtree/MTreeBelowSGCachedImpl.java  |  32 -----
 .../db/metadata/mtree/MTreeBelowSGMemoryImpl.java  |  32 -----
 .../counter/MeasurementGroupByLevelCounter.java    | 124 -------------------
 .../db/metadata/schemaregion/ISchemaRegion.java    |  26 ----
 .../schemaregion/SchemaRegionMemoryImpl.java       |  28 -----
 .../schemaregion/SchemaRegionSchemaFileImpl.java   |  28 -----
 ...or.java => CountGroupByLevelMergeOperator.java} |  80 ++++++------
 .../operator/schema/CountMergeOperator.java        |  36 ------
 .../schema/LevelTimeSeriesCountOperator.java       | 103 ++++++++++------
 .../db/mpp/execution/schedule/DriverScheduler.java |   1 +
 .../db/mpp/plan/planner/OperatorTreeGenerator.java |   7 +-
 .../iotdb/db/metadata/mtree/MTreeBelowSGTest.java  |  71 -----------
 .../schemaRegion/SchemaRegionBasicTest.java        |  46 +++----
 .../schemaRegion/SchemaRegionTestUtil.java         |  30 +++++
 ...ava => CountGroupByLevelMergeOperatorTest.java} | 135 ++++++++++++++-------
 .../operator/schema/SchemaCountOperatorTest.java   | 108 +++++++++++++----
 22 files changed, 384 insertions(+), 667 deletions(-)
 delete mode 100644 server/src/main/java/org/apache/iotdb/db/metadata/mtree/traverser/counter/MeasurementGroupByLevelCounter.java
 copy server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/schema/{CountMergeOperator.java => CountGroupByLevelMergeOperator.java} (73%)
 rename server/src/test/java/org/apache/iotdb/db/mpp/execution/operator/schema/{CountMergeOperatorTest.java => CountGroupByLevelMergeOperatorTest.java} (51%)