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

[iotdb] branch lmh/FixOffsetPushDown updated (293b260904 -> 74cc3efca0)

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

hui pushed a change to branch lmh/FixOffsetPushDown
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    from 293b260904 fix compilation failure
     add 9870f332d6 Resolve quadratic complexity issue when flushing numerous Internal/Entity nodes in SchemaFile (#9659)
     add 3405c49177 Accelerate count all schema via schema statistic (#9660)
     add bc9ee590ed [IOTDB-5720] Fix release processor fail to release memory due to writer-preferred starvation  (#9661)
     add c19bcdc5f1 Double-check protect memory-control boundary to avoid concurrent bug (#9662)
     add 33c98f05ff Merge remote-tracking branch 'upstream/master' into lmh/FixOffsetPushDown
     add 74cc3efca0 set value filter for scan node

No new revisions were added by this update.

Summary of changes:
 .../mtree/store/disk/cache/CacheMemoryManager.java |   4 +-
 .../store/disk/schemafile/SchemaFileConfig.java    |   2 +-
 .../mtree/store/disk/schemafile/SegmentedPage.java |   1 +
 .../store/disk/schemafile/pagemgr/PageManager.java |  90 ++++++++++++--
 .../metadata/rescon/MemSchemaEngineStatistics.java |  26 ++--
 .../schemaregion/SchemaRegionSchemaFileImpl.java   |  15 +--
 .../operator/schema/SchemaCountOperator.java       |  23 ++--
 .../operator/schema/source/DeviceSchemaSource.java |  12 ++
 .../operator/schema/source/ISchemaSource.java      |   4 +
 .../operator/schema/source/NodeSchemaSource.java   |  10 ++
 .../schema/source/PathsUsingTemplateSource.java    |  10 ++
 .../schema/source/TimeSeriesSchemaSource.java      |  12 ++
 .../operator/source/SeriesScanOperator.java        |   2 +-
 .../db/mpp/plan/planner/LogicalPlanBuilder.java    |   8 ++
 .../db/mpp/plan/planner/OperatorTreeGenerator.java |  18 ++-
 .../source/AlignedSeriesAggregationScanNode.java   |  50 ++++----
 .../plan/node/source/AlignedSeriesScanNode.java    |   4 +
 .../node/source/SeriesAggregationScanNode.java     |  50 ++++----
 .../node/source/SeriesAggregationSourceNode.java   |  49 +++++++-
 .../planner/plan/node/source/SeriesScanNode.java   |   4 +
 .../metadata/mtree/schemafile/SchemaFileTest.java  | 137 ++++++++++++++-------
 21 files changed, 389 insertions(+), 142 deletions(-)