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

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


    omit 13628a691c Use hardlink
    omit df321ea163 Fix delete file and add seedConfigNode Id
    omit edabfe870d [IOTDB-3622] Use symlink of shared libs to decrease the 
copied file size in IT test
     add 0cc7887341 Fix Source Handle Bug (#6386)
     add 9540c88be1 [IOTDB-3601] Fix error when query data from empty series on 
new standalone iotdb (#6383)
     add cb77e2ce22 Ratis Raftlog SegmentSize -> 24Mb (#6398)
     add cb283d658a [IOTDB-3604] Refactor the time zone setter by using the 
setClientInfo method of JDBC (#6384)
     add a2436515e0 [IOTDB-3428] Linear expanse RegionGroup(simple version) 
(#6325)
     add 19fff1d5d7 [IOTDB-3632] Add log for snapshot taker and loader (#6401)
     add b7ea931296 Delete Useless Class (#6400)
     add 874cc7a392 [IOTDB-3598] Fix isBlocked check in 
SchemaQueryMergeOperator (#6399)
     add 50552c6c0f [IOTDB-3598] Fix queue has been destroyed bug (#6395)
     add f6068ab1a3 [IOTDB-3436] add aggregation with value filter  IT (#6389)
     add e1840dc35b [IOTDB-3585] Bugfix: Async compute md5 for snapshot (#6407)
     add b8d1453c9b [IOTDB-3622] Use symlink of shared libs to decrease the 
copied file size in IT test
     add 21ee1e8f06 Fix delete file and add seedConfigNode Id
     add 7d9305a6ea Use hardlink

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   (13628a691c)
            \
             N -- N -- N   refs/heads/improve/iotdb-3622 (7d9305a6ea)

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:
 .../confignode/client/AsyncDataNodeClientPool.java |  10 +-
 .../consensus/request/ConfigRequest.java           |   6 +-
 .../consensus/request/ConfigRequestType.java       |   3 +-
 .../write/AdjustMaxRegionGroupCountReq.java        |  89 +++++++
 .../consensus/request/write/CreateRegionsReq.java  |  28 +--
 .../confignode/manager/ClusterSchemaManager.java   | 147 +++++++++---
 .../iotdb/confignode/manager/NodeManager.java      |   7 +
 .../iotdb/confignode/manager/PartitionManager.java | 222 ++++++++++-------
 .../iotdb/confignode/manager/load/LoadManager.java |  28 +--
 .../manager/load/balancer/RegionBalancer.java      |  19 +-
 .../confignode/persistence/ClusterSchemaInfo.java  | 171 +++++++++----
 .../executor/ConfigRequestExecutor.java            |   7 +-
 .../persistence/partition/PartitionInfo.java       |  39 ++-
 .../persistence/partition/RegionGroup.java         |  11 +-
 .../partition/StorageGroupPartitionTable.java      |  42 +++-
 .../thrift/ConfigNodeRPCServiceProcessor.java      |   6 +-
 .../consensus/request/ConfigRequestSerDeTest.java  |  18 +-
 .../confignode/persistence/PartitionInfoTest.java  |  20 +-
 .../apache/iotdb/consensus/config/RatisConfig.java |   2 +-
 .../ratis/FileInfoWithDelayedMd5Computing.java     |  75 ++++++
 .../iotdb/consensus/ratis/SnapshotStorage.java     |  10 +-
 .../iotdb/db/it}/IoTDBCreateTimeseriesIT.java      | 153 +++++-------
 ...T.java => IoTDBAggregationWithDeletion2IT.java} |   3 +-
 ...IT.java => IoTDBAggregationWithDeletionIT.java} | 117 ++++++++-
 .../db/it/aligned/IoTDBAlignedSeriesQueryIT.java   | 167 +++++++++++++
 .../iotdb/db/integration/IoTDBTimeZoneIT.java      |   9 +-
 .../IoTDBAggregationWithValueFilter2IT.java        |  65 -----
 .../aligned/IoTDBAggregationWithValueFilterIT.java | 264 ---------------------
 ...BAggregationWithValueFilterWithDeletion2IT.java |  85 -------
 ...DBAggregationWithValueFilterWithDeletionIT.java | 221 -----------------
 .../main/java/org/apache/iotdb/jdbc/Config.java    |   3 +
 .../org/apache/iotdb/jdbc/IoTDBConnection.java     |  23 +-
 .../apache/iotdb/jdbc/IoTDBConnectionParams.java   |  12 +
 .../src/main/java/org/apache/iotdb/jdbc/Utils.java |  14 ++
 .../org/apache/iotdb/jdbc/IoTDBConnectionTest.java |  12 +
 .../iotdb/db/engine/snapshot/SnapshotLoader.java   |   7 +
 .../iotdb/db/engine/snapshot/SnapshotTaker.java    |   6 +
 .../iotdb/db/localconfignode/LocalConfigNode.java  |  33 +--
 .../execution/datatransfer/LocalSourceHandle.java  |   7 +
 .../mpp/execution/datatransfer/SourceHandle.java   |   6 +-
 .../operator/process/FilterNullOperator.java       |  57 -----
 .../operator/schema/SchemaFetchMergeOperator.java  |  52 ++--
 .../operator/schema/SchemaQueryMergeOperator.java  |  43 ++--
 .../operator/sink/FragmentSinkOperator.java        |  66 ------
 .../db/mpp/plan/planner/LocalExecutionPlanner.java |   2 +-
 .../node/metedata/read/SchemaFetchMergeNode.java   |   2 +-
 .../src/main/thrift/confignode.thrift              |   4 +-
 47 files changed, 1194 insertions(+), 1199 deletions(-)
 create mode 100644 
confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/write/AdjustMaxRegionGroupCountReq.java
 create mode 100644 
consensus/src/main/java/org/apache/iotdb/consensus/ratis/FileInfoWithDelayedMd5Computing.java
 rename {integration/src/test/java/org/apache/iotdb/db/integration => 
integration-test/src/test/java/org/apache/iotdb/db/it}/IoTDBCreateTimeseriesIT.java
 (64%)
 rename 
integration-test/src/test/java/org/apache/iotdb/db/it/aligned/{IoTDBAggregationWithoutValueFilterWithDeletion2IT.java
 => IoTDBAggregationWithDeletion2IT.java} (96%)
 rename 
integration-test/src/test/java/org/apache/iotdb/db/it/aligned/{IoTDBAggregationWithoutValueFilterWithDeletionIT.java
 => IoTDBAggregationWithDeletionIT.java} (76%)
 delete mode 100644 
integration/src/test/java/org/apache/iotdb/db/integration/aligned/IoTDBAggregationWithValueFilter2IT.java
 delete mode 100644 
integration/src/test/java/org/apache/iotdb/db/integration/aligned/IoTDBAggregationWithValueFilterIT.java
 delete mode 100644 
integration/src/test/java/org/apache/iotdb/db/integration/aligned/IoTDBAggregationWithValueFilterWithDeletion2IT.java
 delete mode 100644 
integration/src/test/java/org/apache/iotdb/db/integration/aligned/IoTDBAggregationWithValueFilterWithDeletionIT.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/process/FilterNullOperator.java
 delete mode 100644 
server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/sink/FragmentSinkOperator.java

Reply via email to