This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a change to branch parallel_multi_child_node
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from 58a82af894f Try fix CI
add 5b917560d6d Fix the display of current database during switching
between table and tree model
add 24a93f578e9 Fixed the concurrency bug of create timeseries /
set(unset) template & Optimized the table log & Removed the useless
timeseries/table lock (#15062)
add f16252d8105 [AINode] Support output time column for model inference
add 3cab8602ebd IoTConsensusV2: Fix borrow tsfileWriter and delete
tsfileWriter's file concurrency bug #15072
add d756afb335f Timestamp of Long.MIN_VALUE may be deleted by ttl in
compaction task (#15067)
add e320964de18 Fix the exception handle of InsertionCompactionTask
(#15074)
add 4fa5b2f26f9 Merge remote-tracking branch 'origin/master' into
parallel_multi_child_node
add 594cfe8ccca Try fix CI
add 074432436e2 Try fix CI
add d53900aea5a Try fix CI
add f2d8342f44b Try fix CI
add 7d15b425a9c Try fix CI
No new revisions were added by this update.
Summary of changes:
.../org/apache/iotdb/ainode/it/AINodeBasicIT.java | 15 ++-
.../java/org/apache/iotdb/cli/AbstractCli.java | 20 ++-
.../impl/schema/UnsetTemplateProcedure.java | 146 ++++++++-------------
.../template/NoTemplateOnMNodeException.java | 34 -----
.../pipeconsensus/PipeConsensusReceiver.java | 32 ++++-
.../impl/DataNodeInternalRPCServiceImpl.java | 33 ++---
.../execution/exchange/SharedTsBlockQueue.java | 7 +-
.../execution/exchange/sink/ISinkChannel.java | 2 +
.../execution/exchange/sink/LocalSinkChannel.java | 21 ++-
.../execution/exchange/sink/ShuffleSinkHandle.java | 3 +
.../execution/exchange/sink/SinkChannel.java | 3 +-
.../exchange/source/LocalSourceHandle.java | 12 +-
.../fragment/FragmentInstanceContext.java | 5 +
.../operator/process/ai/InferenceOperator.java | 42 +++++-
.../execution/schedule/AbstractDriverThread.java | 27 ++--
.../execution/schedule/DriverScheduler.java | 2 +-
.../queryengine/plan/analyze/AnalyzeVisitor.java | 49 ++-----
.../plan/analyze/lock/SchemaLockType.java | 13 --
.../db/queryengine/plan/parser/ASTVisitor.java | 3 +
.../plan/planner/LogicalPlanBuilder.java | 1 +
.../plan/planner/LogicalPlanVisitor.java | 2 +-
.../plan/planner/OperatorTreeGenerator.java | 1 +
.../plan/node/process/AI/InferenceNode.java | 18 ++-
.../plan/statement/crud/QueryStatement.java | 9 ++
.../db/schemaengine/table/DataNodeTableCache.java | 28 ++--
.../template/TemplateInternalRPCUpdateType.java | 5 +-
.../task/InsertionCrossSpaceCompactionTask.java | 10 +-
.../execute/utils/MultiTsFileDeviceIterator.java | 5 +-
.../tsfile/timeindex/ArrayDeviceTimeIndex.java | 3 +-
.../dataregion/tsfile/timeindex/FileTimeIndex.java | 2 +-
.../compaction/CompactionWithMinTimestampTest.java | 136 +++++++++++++++++++
31 files changed, 434 insertions(+), 255 deletions(-)
delete mode 100644
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/exception/metadata/template/NoTemplateOnMNodeException.java
create mode 100644
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/storageengine/dataregion/compaction/CompactionWithMinTimestampTest.java