You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xi...@apache.org on 2023/03/07 07:54:07 UTC

[iotdb] branch morePipeline updated (c631b12733 -> 9233b67e80)

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

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


    from c631b12733 reback dop to half cores
     add 9c7add5cb4 [IOTDB-5586] Reduce the scope of lock in MemoryPool
     add 8bf40931bf [IOTDB-5621] Eliminate the deprecated code in the template (#9219)
     add 9385ec96b2 [IOTDB-5624] Optimize the organization of Apache IoTDB ConfigNode Dashboard (#9221)
     add 692c03d850 [IOTDB-5620] Fix flush stuck when there is a lot of time partitions in each DataRegion (#9218)
     add 91414196aa [IOTDB-5631] Add aggregate  method time_duration for query
     add d858450904 [IOTDB-5616] Fix some code smells (#9217)
     add a9c8c9816e [IOTDB-5487] Fix the problem that the timestamp is "null" when using jdbc (#8998)
     add 7dc2de964c Remove 0.75 report (#9224)
     add 46009cdeee Merge branch 'master' into morePipeline
     add 9233b67e80 add copy to TimeDurationAccumulator

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/iotdb/cli/AbstractCli.java     |   54 +-
 .../org/apache/iotdb/tool/AbstractCsvTool.java     |   22 +-
 .../java/org/apache/iotdb/cli/AbstractCliIT.java   |    3 +-
 .../client/async/AsyncDataNodeClientPool.java      |    4 +-
 .../request/ConfigPhysicalPlanSerDeTest.java       |   20 +-
 .../persistence/ClusterSchemaInfoTest.java         |   21 +-
 .../confignode/persistence/TemplateTableTest.java  |   36 +-
 .../impl/DeactivateTemplateProcedureTest.java      |    4 +-
 .../procedure/impl/UnsetTemplateProcedureTest.java |    2 +-
 .../Apache-IoTDB-ConfigNode-Dashboard.json         | 3640 ++++++++++----------
 docs/UserGuide/Monitor-Alert/Metric-Tool.md        |   14 +-
 docs/UserGuide/Operators-Functions/Aggregation.md  |   80 +-
 docs/zh/UserGuide/Monitor-Alert/Metric-Tool.md     |   14 +-
 .../UserGuide/Operators-Functions/Aggregation.md   |   80 +-
 .../iotdb/flink/tsfile/TsFileOutputFormat.java     |    2 +-
 .../iotdb/it/env/cluster/MppCommonConfig.java      |    6 +
 .../it/env/cluster/MppSharedCommonConfig.java      |    7 +
 .../iotdb/it/env/remote/RemoteCommonConfig.java    |    5 +
 .../apache/iotdb/itbase/constant/TestConstant.java |    4 +
 .../org/apache/iotdb/itbase/env/CommonConfig.java  |    2 +
 ...ionIT.java => IoTDBInsertMultiPartitionIT.java} |   41 +-
 .../it/aggregation/IoTDBAggregationOptimizeIT.java |    8 +-
 .../db/it/aggregation/IoTDBTimeDurationIT.java     |  368 ++
 .../iotdb/db/it/schema/IoTDBSchemaTemplateIT.java  |   19 +-
 .../db/integration/IoTDBSchemaTemplateIT.java      |  357 --
 .../reporter/prometheus/PrometheusReporter.java    |    2 -
 .../iotdb/metrics/type/HistogramSnapshot.java      |    1 -
 .../udf/builtin/BuiltinAggregationFunction.java    |    4 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |    1 -
 .../org/apache/iotdb/db/conf/IoTDBDescriptor.java  |    2 +-
 .../org/apache/iotdb/db/constant/SqlConstant.java  |    1 +
 .../engine/storagegroup/TimePartitionManager.java  |    9 +-
 .../mnode/iterator/AbstractTraverserIterator.java  |    3 +-
 .../mtree/store/disk/cache/CacheMemoryManager.java |    3 +
 .../db/metadata/mtree/traverser/Traverser.java     |    5 +-
 .../metadata/template/ClusterTemplateManager.java  |    2 +-
 .../iotdb/db/metadata/template/Template.java       |  352 +-
 .../metadata/template/TemplateMNodeGenerator.java  |   51 +
 .../db/mpp/aggregation/AccumulatorFactory.java     |    2 +
 ...cumulator.java => TimeDurationAccumulator.java} |   50 +-
 .../SlidingWindowAggregatorFactory.java            |    2 +
 .../iotdb/db/mpp/execution/memory/MemoryPool.java  |  237 +-
 .../iotdb/db/mpp/plan/analyze/AnalyzeVisitor.java  |   12 +-
 .../iotdb/db/mpp/plan/parser/ASTVisitor.java       |    8 +-
 .../db/mpp/plan/parser/StatementGenerator.java     |    2 +-
 .../plan/parameter/AggregationDescriptor.java      |    4 +
 .../template/CreateSchemaTemplateStatement.java    |  121 +-
 .../org/apache/iotdb/db/utils/SchemaUtils.java     |    4 +
 .../apache/iotdb/db/utils/TypeInferenceUtils.java  |    3 +
 .../schemaRegion/SchemaRegionManagementTest.java   |    8 +-
 .../schemaRegion/SchemaRegionTemplateTest.java     |   56 +-
 .../iotdb/db/mpp/execution/exchange/Utils.java     |    4 +-
 .../db/mpp/execution/memory/MemoryPoolTest.java    |   26 +-
 .../java/org/apache/iotdb/rpc/IoTDBRpcDataSet.java |    1 +
 thrift-commons/src/main/thrift/common.thrift       |    3 +-
 .../tsfile/write/record/datapoint/DataPoint.java   |    2 +-
 56 files changed, 2730 insertions(+), 3064 deletions(-)
 copy integration-test/src/test/java/org/apache/iotdb/db/it/{aligned/IoTDBLastQueryWithoutLastCacheWithDeletionIT.java => IoTDBInsertMultiPartitionIT.java} (73%)
 create mode 100644 integration-test/src/test/java/org/apache/iotdb/db/it/aggregation/IoTDBTimeDurationIT.java
 delete mode 100644 integration/src/test/java/org/apache/iotdb/db/integration/IoTDBSchemaTemplateIT.java
 create mode 100644 server/src/main/java/org/apache/iotdb/db/metadata/template/TemplateMNodeGenerator.java
 copy server/src/main/java/org/apache/iotdb/db/mpp/aggregation/{MaxTimeAccumulator.java => TimeDurationAccumulator.java} (71%)