You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ca...@apache.org on 2022/08/17 06:44:12 UTC

[iotdb] branch beyyes/remove_datanode_precedure updated (5cb45d4725 -> 20a68d00bc)

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

caogaofei pushed a change to branch beyyes/remove_datanode_precedure
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    from 5cb45d4725 make code variable naming tidy
     add 3714feb40f fix datanode cannot restart (#7000)
     add db0b6fd14f [IOTDB-4073] Add SessionTimeWindowAccessStrategy in UDF (#6928)
     add 2cae6a8c15 [IOTDB-4055] Add remove-confignode.bat (#6996)
     add c880d4f9ce Merge branch 'master' into beyyes/remove_datanode_precedure
     add 20a68d00bc add Removing NodeStaus impl for NodeCache and RegionGroupCache

No new revisions were added by this update.

Summary of changes:
 ...{start-confignode.bat => remove-confignode.bat} |   8 +-
 .../iotdb/confignode/manager/NodeManager.java      |  17 ++
 .../iotdb/confignode/manager/PartitionManager.java |  16 +-
 .../load/heartbeat/DataNodeHeartbeatCache.java     |  19 +-
 .../manager/load/heartbeat/RegionGroupCache.java   |   2 +-
 .../procedure/env/ConfigNodeProcedureEnv.java      |   6 +-
 docs/UserGuide/Cluster/Cluster-Setup.md            |   5 +
 docs/zh/UserGuide/Cluster/Cluster-Setup.md         |   5 +
 .../db/query/udf/example/ExampleUDFConstant.java   |   2 +
 .../iotdb/db/query/udf/example/WindowStartEnd.java |  16 +-
 .../iotdb/itbase/constant/UDFTestConstant.java     |   2 +
 .../db/it/udf/IoTDBUDFSessionWindowQueryIT.java    | 283 +++++++++++++++++++++
 .../iotdb/db/it/udf/IoTDBUDFWindowQueryIT.java     |   7 +-
 .../iotdb/db/integration/IoTDBCheckConfigIT.java   |   2 +-
 .../resources/conf/iotdb-datanode.properties       |   2 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |   4 +-
 .../plan/expression/binary/BinaryExpression.java   |   1 +
 .../plan/expression/leaf/TimeSeriesOperand.java    |   1 +
 .../visitor/IntermediateLayerVisitor.java          |   1 +
 .../intermediate/ConstantIntermediateLayer.java    |   8 +
 .../dag/intermediate/IntermediateLayer.java        |   8 +
 .../MultiInputColumnIntermediateLayer.java         | 119 +++++++++
 ...InputColumnMultiReferenceIntermediateLayer.java | 117 +++++++++
 ...nputColumnSingleReferenceIntermediateLayer.java | 117 +++++++++
 .../api/customizer/strategy/AccessStrategy.java    |   5 +-
 .../strategy/SessionTimeWindowAccessStrategy.java  |  95 +++++++
 26 files changed, 845 insertions(+), 23 deletions(-)
 copy confignode/src/assembly/resources/sbin/{start-confignode.bat => remove-confignode.bat} (96%)
 create mode 100644 integration-test/src/test/java/org/apache/iotdb/db/it/udf/IoTDBUDFSessionWindowQueryIT.java
 create mode 100644 udf-api/src/main/java/org/apache/iotdb/udf/api/customizer/strategy/SessionTimeWindowAccessStrategy.java