This is an automated email from the ASF dual-hosted git repository.
xingtanzjr pushed a change to branch ml_0815_data_lost
in repository https://gitbox.apache.org/repos/asf/iotdb.git
discard 7362c14b20 change query info log to debug
discard d0de0d9273 change debug log to info to analyze the root cause of data
lost
add d7854a6d38 [IOTDB-4127] Fix NPE bug in AbstractFragInsStateTracker
(#6991)
add 04ee9fa32d modify deserialize function of FunctionExpression and fix
tests of String UDF (#6893)
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)
new 3afd7be8dc change debug log to info to analyze the root cause of data
lost
new 8890b497c7 change query info log to debug
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (7362c14b20)
\
N -- N -- N refs/heads/ml_0815_data_lost (8890b497c7)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 2 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:
...{start-confignode.bat => remove-confignode.bat} | 8 +-
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 +-
.../db/it/udf/IoTDBUDTFBuiltinFunctionIT.java | 172 +++++--------
.../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 +
.../plan/expression/multi/FunctionExpression.java | 14 +-
.../visitor/IntermediateLayerVisitor.java | 1 +
.../scheduler/AbstractFragInsStateTracker.java | 9 +-
.../intermediate/ConstantIntermediateLayer.java | 8 +
.../dag/intermediate/IntermediateLayer.java | 8 +
.../MultiInputColumnIntermediateLayer.java | 119 +++++++++
...InputColumnMultiReferenceIntermediateLayer.java | 117 +++++++++
...nputColumnSingleReferenceIntermediateLayer.java | 117 +++++++++
.../iotdb/tsfile/utils/ReadWriteIOUtils.java | 17 ++
.../api/customizer/strategy/AccessStrategy.java | 5 +-
.../strategy/SessionTimeWindowAccessStrategy.java | 95 +++++++
25 files changed, 894 insertions(+), 126 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