This is an automated email from the ASF dual-hosted git repository.
marklau99 pushed a change to branch fix-npe-in-cpu-metrics
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from 2fcc585286a fix index out of bound exception
new c5d26936924 [IOTDB-5998] Fix device query bugs in show slot APIs
(#10209)
new fec1ac3718c [IOTDB-5999] Maintain system.properties (#10170) (#10210)
new 2db05f0c242 [IOTDB-5993] ConfigNode leader changing causes lacking
some DataPartition allocation result in the response of
getOrCreateDataPartition method (#10211)
new 5b2dff6b3a6 [IOTDB-5997] Improve efficiency of ConfigNode
PartitionInfo loadSnapshot (#10212)
new 80fd26e5119 [IOTDB-6000] Control the RegionGroup number of system
Database (#10213)
new 42aa016109b set info log to debug log (#10208)
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../iotdb/confignode/conf/ConfigNodeConfig.java | 11 --
.../confignode/conf/ConfigNodeDescriptor.java | 7 -
.../confignode/conf/ConfigNodeStartupCheck.java | 16 +++
.../confignode/conf/SystemPropertiesUtils.java | 58 ++++----
.../iotdb/confignode/manager/ConfigManager.java | 20 ++-
.../partition/GreedyPartitionAllocator.java | 4 +-
.../iotdb/confignode/manager/node/NodeManager.java | 5 +-
.../manager/partition/PartitionManager.java | 158 +++++++++++++++------
.../manager/schema/ClusterSchemaManager.java | 27 +++-
.../persistence/executor/ConfigPlanExecutor.java | 24 +++-
.../persistence/partition/PartitionInfo.java | 52 +++----
.../thrift/ConfigNodeRPCServiceProcessor.java | 21 ++-
.../confignode/it/utils/ConfigNodeTestUtils.java | 2 +
.../iotdb/session/it/IoTDBSessionComplexIT.java | 8 +-
.../src/main/thrift/confignode.thrift | 5 +
.../resources/conf/iotdb-common.properties | 4 -
.../apache/iotdb/commons/conf/CommonConfig.java | 55 ++++++-
.../iotdb/commons/conf/CommonDescriptor.java | 23 +++
.../{TestOnly.java => CommonDateTimeUtils.java} | 32 +++--
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 63 --------
.../org/apache/iotdb/db/conf/IoTDBDescriptor.java | 25 +---
.../org/apache/iotdb/db/conf/IoTDBStartCheck.java | 69 +--------
.../org/apache/iotdb/db/engine/StorageEngine.java | 2 +-
.../impl/RewriteCrossSpaceCompactionSelector.java | 6 +-
.../iotdb/db/engine/storagegroup/DataRegion.java | 13 +-
.../metadata/cache/DataNodeLastCacheManager.java | 4 +-
.../db/metadata/metric/SchemaEngineMemMetric.java | 3 +-
.../db/metadata/metric/SchemaMetricManager.java | 4 +-
.../db/metadata/rescon/SchemaResourceManager.java | 6 +-
.../db/metadata/schemaregion/SchemaEngine.java | 9 +-
.../apache/iotdb/db/metadata/tag/TagLogFile.java | 3 +-
.../apache/iotdb/db/metadata/tag/TagManager.java | 21 +--
.../operator/process/last/LastQueryUtil.java | 4 +-
.../config/metadata/GetTimeSlotListTask.java | 4 +-
.../pipe/connector/v1/IoTDBThriftConnectorV1.java | 3 +-
.../pipe/connector/v1/IoTDBThriftReceiverV1.java | 9 +-
.../pipe/connector/v2/IoTDBThriftConnectorV2.java | 3 +-
.../influxdb/handler/QueryHandlerFactory.java | 3 +-
.../influxdb/meta/InfluxDBMetaManagerFactory.java | 3 +-
.../rest/v1/impl/GrafanaApiServiceImpl.java | 3 +-
.../rest/v2/impl/GrafanaApiServiceImpl.java | 3 +-
.../apache/iotdb/db/service/IoTDBShutdownHook.java | 2 +-
.../service/thrift/impl/ClientRPCServiceImpl.java | 2 +-
.../org/apache/iotdb/db/utils/DateTimeUtils.java | 24 +---
.../apache/iotdb/db/utils/TimePartitionUtils.java | 4 +-
.../SizeTieredCompactionSelectorTest.java | 5 +-
.../db/engine/storagegroup/DataRegionTest.java | 20 +--
.../iotdb/db/engine/storagegroup/TTLTest.java | 7 +-
.../mtree/schemafile/AliasIndexPageTest.java | 6 +-
.../mtree/schemafile/InternalPageTest.java | 6 +-
.../mtree/schemafile/SchemaFileLogTest.java | 6 +-
.../metadata/mtree/schemafile/SchemaFileTest.java | 6 +-
.../mtree/schemafile/WrappedSegmentTest.java | 6 +-
.../schemaRegion/AbstractSchemaRegionTest.java | 9 +-
.../mpp/plan/analyze/QueryTimePartitionTest.java | 62 ++++----
.../plan/node/write/WritePlanNodeSplitTest.java | 7 +-
.../org/apache/iotdb/db/qp/sql/ASTVisitorTest.java | 12 +-
.../iotdb/db/tools/PBTreeFileSketchTest.java | 6 +-
.../iotdb/db/tools/TsFileAndModSettleToolTest.java | 12 +-
59 files changed, 539 insertions(+), 458 deletions(-)
copy node-commons/src/main/java/org/apache/iotdb/commons/utils/{TestOnly.java
=> CommonDateTimeUtils.java} (65%)