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/18 02:02:04 UTC

[iotdb] branch lmh/FixOffsetPushDown updated (9581b7585b -> 07d9251b29)

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 9581b7585b fix not
     add 2ae6ae9c48 Fix unexcepted error message when use raw query with Group By Tag
     add 39438b6cb1 Update Metric-Tool.md
     add 04f140f8bf remove session metrics when close (#9604)
     add 88baa23e2c [DOC] remove site configuration of stale M4 function document (#9562)
     add d2e03dba6f Fix Group By Tag with empty grouped timeseries
     add 6270ed77b5 [ISSUE-9611] Reduce the size of UDF-Library jar (#9610)
     add fae06602d5 [IOTDB-5768] Fixed the bug that IoTDB will create pipe dir outside of IoTDB directory (#9616)
     add 935b5106ed [IOTDB-5762][Metric] add do nothing level(#9615)
     add 8cd4c61a1c Fixed resource stop failure after remote scheduling retry
     add df88dc93e4 Distinguish whether an exception has occurred when releasing the QueryExecution resource
     add 07d9251b29 Merge remote-tracking branch 'origin/master' into lmh/FixOffsetPushDown

No new revisions were added by this update.

Summary of changes:
 docs/UserGuide/Operators-Functions/Sample.md       |  50 ++--
 docs/zh/UserGuide/Monitor-Alert/Metric-Tool.md     |   3 +-
 docs/zh/UserGuide/Operators-Functions/Sample.md    |  58 ++--
 .../db/it/aggregation/IoTDBTagAggregationIT.java   |  23 ++
 .../org/apache/iotdb/db/it/udf/IoTDBUDFM4IT.java   | 304 ---------------------
 .../it/udf/IoTDBUDTFBuiltinScalarFunctionIT.java   | 189 +++++++++++++
 docs/Blog/index.md => library-udf/Readme.md        |   7 +-
 library-udf/pom.xml                                |  45 +--
 .../apache/iotdb/library/anomaly/UDTFKSigma.java   |   6 +-
 .../apache/iotdb/library/anomaly/UDTFRange.java    |   6 +-
 .../iotdb/library/anomaly/UDTFTwoSidedFilter.java  |   3 -
 .../org/apache/iotdb/library/dprofile/UDAFMad.java |   5 +-
 .../apache/iotdb/library/dprofile/UDAFMedian.java  |   5 +-
 .../iotdb/library/dprofile/UDAFPercentile.java     |  10 +-
 .../iotdb/library/dprofile/UDAFQuantile.java       |   6 +-
 .../apache/iotdb/library/dprofile/UDAFSpread.java  |  10 +-
 .../iotdb/library/dprofile/UDTFDistinct.java       |   6 +-
 .../apache/iotdb/library/dprofile/UDTFMvAvg.java   |   6 +-
 .../apache/iotdb/library/dprofile/UDTFSample.java  |   7 +-
 .../dprofile/util/ExactOrderStatistics.java        |  41 +--
 .../java/org/apache/iotdb/library/util/Util.java   |   5 +-
 .../apache/iotdb/metrics/utils/MetricLevel.java    |   3 +-
 .../src/assembly/resources/sbin/stop-datanode.sh   |   2 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |   2 +-
 .../fragment/FragmentInstanceManager.java          |   8 +-
 .../org/apache/iotdb/db/mpp/plan/Coordinator.java  |   8 +-
 .../analyze/schema/ClusterSchemaFetchExecutor.java |   7 +-
 .../db/mpp/plan/execution/IQueryExecution.java     |   4 +-
 .../db/mpp/plan/execution/QueryExecution.java      |  22 +-
 .../mpp/plan/execution/config/ConfigExecution.java |   5 +-
 .../db/mpp/plan/planner/LogicalPlanBuilder.java    |  34 +--
 .../db/mpp/plan/scheduler/ClusterScheduler.java    |   4 +-
 .../db/mpp/plan/scheduler/IQueryTerminator.java    |   2 +-
 .../iotdb/db/mpp/plan/scheduler/IScheduler.java    |   2 +-
 .../mpp/plan/scheduler/SimpleQueryTerminator.java  |  35 ++-
 .../plan/scheduler/load/LoadTsFileScheduler.java   |   2 +-
 .../db/mpp/plan/statement/crud/QueryStatement.java |   2 +-
 .../iotdb/db/query/control/SessionManager.java     |   7 +
 .../service/thrift/impl/ClientRPCServiceImpl.java  |  42 ++-
 .../impl/DataNodeInternalRPCServiceImpl.java       |   2 +-
 .../service/thrift/impl/MLNodeRPCServiceImpl.java  |  15 +-
 .../db/mpp/execution/ConfigExecutionTest.java      |   2 +-
 .../execution/operator/MergeSortOperatorTest.java  |   5 +-
 site/src/main/.vuepress/sidebar/V0.13.x/en.ts      |   3 +-
 site/src/main/.vuepress/sidebar/V0.13.x/zh.ts      |   3 +-
 thrift/src/main/thrift/datanode.thrift             |   1 +
 46 files changed, 467 insertions(+), 550 deletions(-)
 delete mode 100644 integration-test/src/test/java/org/apache/iotdb/db/it/udf/IoTDBUDFM4IT.java
 copy docs/Blog/index.md => library-udf/Readme.md (83%)