This is an automated email from the ASF dual-hosted git repository.
JackieTien97 pushed a change to branch ty/adapt-tsfile-zh
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from d383aaa92c0 refactor: move TSFILE_LOCALE_JVM_OPT into iotdb-common.sh
add 5af5e2b8000 Fix flaky datanode UTs under parallel surefire forks
(#17712)
add af48621d287 Remove dead surefire executions in root pom (#17696)
add 3f4c44ab3e8 Pipe: Fixed some unstable ITs (#17713)
add 7dcad2b6b44 Fix Python client CI: handle Timestamps outside Python
stdlib range (#17715)
add 06d27660b9c Make some uts more stable (#17720)
add a690f627f15 Balance per-database replicas in PGP and Greedy region
allocators (#17714)
add b8cf54b4d91 Speed up AINode IT: symlink built-in weights, batch
inserts, trim concurrent loop (#17719)
add 34cc34643d3 Fix query reuse of flushing memtable TVList (#17718)
add cf78568678e Merge remote-tracking branch 'origin/master' into
ty/adapt-tsfile-zh
add 8fb49b64d7b Bump tsfile version to 2.3.1-260519-SNAPSHOT
No new revisions were added by this update.
Summary of changes:
distribution/src/assembly/all.xml | 4 +-
distribution/src/assembly/confignode.xml | 2 +-
integration-test/src/assembly/mpp-test.xml | 4 +-
.../it/env/cluster/config/MppCommonConfig.java | 6 +
.../env/cluster/config/MppSharedCommonConfig.java | 7 +
.../iotdb/it/env/cluster/node/AINodeWrapper.java | 66 +++---
.../it/env/remote/config/RemoteCommonConfig.java | 5 +
.../org/apache/iotdb/itbase/env/CommonConfig.java | 2 +
.../iotdb/ainode/it/AINodeClusterConfigIT.java | 127 -----------
.../ainode/it/AINodeConcurrentForecastIT.java | 120 -----------
.../iotdb/ainode/it/AINodeSharedClusterIT.java | 164 ++++++++++++++-
.../apache/iotdb/ainode/utils/AINodeTestUtils.java | 21 +-
.../IoTDBPerDatabaseRegionGroupAllocationIT.java | 192 +++++++++++++++++
.../treemodel/manual/IoTDBPipePermissionIT.java | 5 +
iotdb-client/client-py/iotdb/utils/rpc_utils.py | 56 ++++-
iotdb-core/confignode/src/assembly/confignode.xml | 2 +-
.../manager/load/balancer/RegionBalancer.java | 4 +-
.../region/GreedyRegionGroupAllocator.java | 43 +++-
.../PartiteGraphPlacementRegionGroupAllocator.java | 159 +++++++++++---
.../procedure/env/RemoveDataNodeHandler.java | 2 +-
.../region/GreedyRegionGroupAllocatorTest.java | 76 +++++++
...titeGraphPlacementRegionGroupAllocatorTest.java | 231 +++++++++++++++++++++
iotdb-core/datanode/src/assembly/server.xml | 2 +-
.../evolvable/batch/PipeTabletEventPlainBatch.java | 19 +-
.../request/PipeTransferTabletBatchReqV2.java | 82 +++++---
.../request/PipeTransferTabletBinaryReqV2.java | 11 +-
.../request/PipeTransferTabletInsertNodeReqV2.java | 11 +-
.../request/PipeTransferTabletRawReqV2.java | 33 ++-
.../protocol/airgap/IoTDBDataRegionAirGapSink.java | 4 +-
.../thrift/async/IoTDBDataRegionAsyncSink.java | 4 +-
.../thrift/sync/IoTDBDataRegionSyncSink.java | 4 +-
.../sink/protocol/writeback/WriteBackSink.java | 6 +-
.../pipe/sink/util/TabletStatementConverter.java | 21 +-
.../execution/fragment/QueryContext.java | 4 +-
.../schemaregion/utils/ResourceByPathUtils.java | 40 +++-
.../dataregion/flush/MemTableFlushTask.java | 1 -
.../memtable/AbstractWritableMemChunk.java | 19 +-
.../memtable/AlignedReadOnlyMemChunk.java | 2 +-
.../dataregion/memtable/IWritableMemChunk.java | 3 +
.../dataregion/memtable/ReadOnlyMemChunk.java | 2 +-
.../pipe/sink/PipeDataNodeThriftRequestTest.java | 152 ++++++++++++++
.../fragment/FragmentInstanceExecutionTest.java | 126 ++++++-----
.../operator/AlignedSeriesScanOperatorTest.java | 9 +
.../operator/SingleDeviceViewOperatorTest.java | 3 +
.../DataNodeInternalRPCServiceImplTest.java | 11 +-
.../inner/InnerSequenceCompactionSpeedTest.java | 65 ------
.../dataregion/memtable/PrimitiveMemTableTest.java | 59 +++++-
.../apache/iotdb/db/utils/EnvironmentUtils.java | 36 +++-
.../conf/iotdb-system.properties.template | 9 +
pom.xml | 44 +---
scripts/conf/windows/confignode-env.bat | 6 +-
scripts/conf/windows/datanode-env.bat | 6 +-
.../windows/{iotdb-locale.bat => iotdb-common.bat} | 0
53 files changed, 1512 insertions(+), 580 deletions(-)
delete mode 100644
integration-test/src/test/java/org/apache/iotdb/ainode/it/AINodeClusterConfigIT.java
delete mode 100644
integration-test/src/test/java/org/apache/iotdb/ainode/it/AINodeConcurrentForecastIT.java
create mode 100644
integration-test/src/test/java/org/apache/iotdb/confignode/it/load/IoTDBPerDatabaseRegionGroupAllocationIT.java
create mode 100644
iotdb-core/confignode/src/test/java/org/apache/iotdb/confignode/manager/load/balancer/region/PartiteGraphPlacementRegionGroupAllocatorTest.java
rename scripts/conf/windows/{iotdb-locale.bat => iotdb-common.bat} (100%)