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

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


 discard 0db299f31c fix c++ build
     add 1fb7229c2d Fix DeadLock bug (#6334)
     add f10eed6ddb Increase the timeout (#6335)
     add 7d7834c200 [IOTDB-3544] Packaging udf-api as dependency jar in build 
(#6339)
     add c42cfe5fbe [IOTDB-3510] Read/Write Routing policy (Routing to DataNode 
with the lowest-loaded) (#6308)
     add 3c88dfb6aa [IOTDB-3508] Enhance some features of the IT framework 
(#6300)
     add e95504f61b Merge branch 'master' of github.com:Apache/iotdb into 
jira3512

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   (0db299f31c)
            \
             N -- N -- N   refs/heads/jira3512 (e95504f61b)

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:
 .github/workflows/cluster-it.yml                   |  10 +-
 .../{cluster-it.yml => standalone-it-for-mpp.yml}  |  20 ++-
 .../confignode/client/AsyncDataNodeClientPool.java |   2 +-
 .../client/handlers/HeartbeatHandler.java          |   2 +-
 .../consensus/response/DataPartitionResp.java      |  79 ++++++++----
 .../response/SchemaNodeManagementResp.java         |  48 +++++--
 .../consensus/response/SchemaPartitionResp.java    |  59 ++++++---
 .../iotdb/confignode/manager/ConfigManager.java    | 116 ++++++++---------
 .../apache/iotdb/confignode/manager/Manager.java   |  24 ++--
 .../iotdb/confignode/manager/load/LoadManager.java |  37 +++++-
 .../manager/load/balancer/RouteBalancer.java       |  56 +++++++++
 .../IRegionAllocator.java => router/IRouter.java}  |  29 ++---
 .../balancer/router/LoadScoreGreedyRouter.java     |  80 ++++++++++++
 .../manager/load/heartbeat/HeartbeatCache.java     |   9 +-
 .../persistence/partition/PartitionInfo.java       |  67 ++++------
 .../partition/StorageGroupPartitionTable.java      |  47 +------
 .../thrift/ConfigNodeRPCServiceProcessor.java      |  38 +-----
 integration-test/pom.xml                           | 138 ++++++++++++++++++++-
 .../assembly/{cluster-test.xml => mpp-test.xml}    |   0
 .../env/{ClusterEnvBase.java => AbstractEnv.java}  | 119 ++++++++++--------
 ...usterNodeBase.java => AbstractNodeWrapper.java} |   8 +-
 .../java/org/apache/iotdb/it/env/Cluster1Env.java  |   2 +-
 .../org/apache/iotdb/it/env/ConfigFactory.java     |   9 +-
 .../{ConfigNode.java => ConfigNodeWrapper.java}    |   4 +-
 .../it/env/{DataNode.java => DataNodeWrapper.java} |   8 +-
 .../java/org/apache/iotdb/it/env/EnvFactory.java   |   7 +-
 .../env/{ClusterEnvConfig.java => MppConfig.java}  |  21 ++--
 ...emoteEnvConfig.java => RemoteServerConfig.java} |   2 +-
 .../iotdb/it/env/StandaloneDataNodeWrapper.java    |  36 +++---
 .../apache/iotdb/it/env/StandaloneOnMppEnv.java    |  56 +++++----
 .../org/apache/iotdb/itbase/env/BaseConfig.java    |   8 +-
 .../env/{BaseNode.java => BaseNodeWrapper.java}    |   2 +-
 .../iotdb/itbase/runtime/ClusterTestStatement.java |   2 +-
 integration-test/src/script/append-to-env.sh       |  32 +++++
 .../org/apache/iotdb/db/it/IoTDBExampleIT.java     |   4 +-
 .../iotdb/db/it/aligned/AlignedWriteUtil.java      |   7 +-
 .../db/it/aligned/IoTDBInsertAlignedValues2IT.java |   2 +-
 .../db/it/aligned/IoTDBInsertAlignedValues3IT.java |   2 +-
 .../db/it/aligned/IoTDBInsertAlignedValues4IT.java |   2 +-
 .../db/it/aligned/IoTDBInsertAlignedValuesIT.java  |   2 +-
 .../db/it/udf/IoTDBUDTFBuiltinFunctionIT.java      |   7 ++
 .../execution/datatransfer/LocalSourceHandle.java  |   6 +-
 .../service/thrift/impl/InternalServiceImpl.java   |   4 +-
 thrift-commons/src/main/thrift/common.thrift       |  13 +-
 thrift/src/main/thrift/mpp.thrift                  |  13 +-
 udf-api/pom.xml                                    |  29 +++++
 46 files changed, 830 insertions(+), 438 deletions(-)
 copy .github/workflows/{cluster-it.yml => standalone-it-for-mpp.yml} (82%)
 create mode 100644 
confignode/src/main/java/org/apache/iotdb/confignode/manager/load/balancer/RouteBalancer.java
 copy 
confignode/src/main/java/org/apache/iotdb/confignode/manager/load/balancer/{region/IRegionAllocator.java
 => router/IRouter.java} (50%)
 create mode 100644 
confignode/src/main/java/org/apache/iotdb/confignode/manager/load/balancer/router/LoadScoreGreedyRouter.java
 rename integration-test/src/assembly/{cluster-test.xml => mpp-test.xml} (100%)
 rename 
integration-test/src/main/java/org/apache/iotdb/it/env/{ClusterEnvBase.java => 
AbstractEnv.java} (68%)
 rename 
integration-test/src/main/java/org/apache/iotdb/it/env/{ClusterNodeBase.java => 
AbstractNodeWrapper.java} (96%)
 rename integration-test/src/main/java/org/apache/iotdb/it/env/{ConfigNode.java 
=> ConfigNodeWrapper.java} (95%)
 rename integration-test/src/main/java/org/apache/iotdb/it/env/{DataNode.java 
=> DataNodeWrapper.java} (93%)
 rename 
integration-test/src/main/java/org/apache/iotdb/it/env/{ClusterEnvConfig.java 
=> MppConfig.java} (93%)
 rename 
integration-test/src/main/java/org/apache/iotdb/it/env/{RemoteEnvConfig.java => 
RemoteServerConfig.java} (93%)
 copy 
grafana-connector/src/main/java/org/apache/iotdb/web/grafana/service/impl/DatabaseConnectServiceImpl.java
 => 
integration-test/src/main/java/org/apache/iotdb/it/env/StandaloneDataNodeWrapper.java
 (54%)
 copy 
integration/src/main/java/org/apache/iotdb/integration/env/FiveNodeCluster1Env.java
 => 
integration-test/src/main/java/org/apache/iotdb/it/env/StandaloneOnMppEnv.java 
(53%)
 rename 
integration-test/src/main/java/org/apache/iotdb/itbase/env/{BaseNode.java => 
BaseNodeWrapper.java} (96%)
 create mode 100644 integration-test/src/script/append-to-env.sh

Reply via email to