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

haonan pushed a change to branch ssl_between_nodes
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    from d07a0307a98 Merge branch 'master' of github.com:apache/iotdb into 
ssl_between_nodes
     add 105926a4d70 fix cpp-client-gettimestamp (#16124)
     add 256f3e72652 Pipe: Repair the table model construction TabletBatch 
process causing memory expansion (#16123)
     add 9cd6644a823 fix: Failed to remove unwritable directories when creating 
tsfile (#16122)
     add 8b78c3a4f87 Pipe: Fix and improve async tsfile transfer error handling 
and logging (avoid client connection leak) (#16008)
     add c75d8321a69 [AINode] Refactor CREATE MODEL FROM URI (#15978)
     add 950c6a7dd63 Change IT configuration to make CI more stable
     add 829e12ac34f Implement last cache optimize for query like select 
last(s1), last(s1, time), last(s2), last(s2, time)
     add 7ffab902909 Fixed the NPE when add column of non-existing view & Pipe: 
Fixed the client release problem in trackable handler (#16128)
     add e8f152a4410 Temporarily banned some PBTree IT to avoid CI failure 
(#16127)
     add 2624cc01fec Fix error message when altering a non-exist user (#16126)
     add cf94f1e0114 Pipe: Avoid unnecessary close-client in async client 
(Follow up fix for #16008)
     add 7d39619f828 Pipe: Use fixed memory settings to configure batch (#16134)
     add 95fb59e6220 [AINode] Fix circular import bug (#16137)
     add 1df484e3346 Merge branch 'master' of github.com:apache/iotdb into 
ssl_between_nodes
     add e9e8a9a2f14 add log

No new revisions were added by this update.

Summary of changes:
 .../it/env/cluster/config/MppCommonConfig.java     |   6 +
 .../env/cluster/config/MppSharedCommonConfig.java  |   7 +
 .../it/env/remote/config/RemoteCommonConfig.java   |   5 +
 .../org/apache/iotdb/itbase/env/CommonConfig.java  |   2 +
 .../iotdb/ainode/it/AINodeClusterConfigIT.java     |   2 +-
 .../iotdb/db/it/auth/IoTDBRelationalAuthIT.java    |  14 +
 .../apache/iotdb/db/it/orderBy/IoTDBOrderByIT.java |   3 +-
 .../db/it/schema/IoTDBCreateTimeseriesIT.java      |  19 +-
 .../relational/it/db/it/IoTDBAsofJoinTableIT.java  |   7 +-
 .../db/it/IoTDBMultiTAGsWithAttributesTableIT.java |  52 +++-
 .../it/query/recent/IoTDBTableAggregationIT.java   |  26 +-
 .../iotdb/relational/it/schema/IoTDBTableIT.java   |   8 +
 .../client-cpp/src/main/IoTDBRpcDataSet.cpp        |   8 +-
 iotdb-client/client-cpp/src/main/IoTDBRpcDataSet.h |   6 +-
 .../src/test/cpp/sessionRelationalIT.cpp           |   4 +-
 iotdb-core/ainode/ainode/core/constant.py          |   6 +-
 iotdb-core/ainode/ainode/core/exception.py         |   4 +-
 .../ainode/ainode/core/manager/model_manager.py    |   3 +-
 .../ainode/core/model/built_in_model_factory.py    |  59 ++--
 iotdb-core/ainode/ainode/core/model/model_enums.py |  70 +++++
 .../ainode/ainode/core/model/model_factory.py      | 182 ++++++------
 iotdb-core/ainode/ainode/core/model/model_info.py  |  88 +++---
 .../ainode/ainode/core/model/model_storage.py      |  73 +++--
 iotdb-core/ainode/ainode/core/model/uri_utils.py   | 137 +++++++++
 .../schema/table/view/AddViewColumnProcedure.java  |   5 +
 .../iotdb/db/auth/ClusterAuthorityFetcher.java     |   2 +-
 .../db/pipe/agent/runtime/PipeAgentLauncher.java   |   2 -
 .../evolvable/batch/PipeTabletEventBatch.java      |  69 +----
 .../evolvable/batch/PipeTabletEventPlainBatch.java | 108 ++++++-
 .../thrift/async/IoTDBDataRegionAsyncSink.java     |  32 +-
 .../handler/PipeTransferTrackableHandler.java      |  45 ++-
 .../async/handler/PipeTransferTsFileHandler.java   |  26 +-
 .../relational/LastQueryAggTableScanOperator.java  | 322 ++++++++++++++++++++-
 .../relational/aggregation/AccumulatorFactory.java |  34 ++-
 .../relational/aggregation/LastAccumulator.java    |  10 +-
 .../relational/aggregation/LastByAccumulator.java  |   8 -
 .../aggregation/LastByDescAccumulator.java         |  35 ++-
 .../aggregation/LastDescAccumulator.java           |  19 +-
 .../plan/planner/TableOperatorGenerator.java       | 264 +++++++++++++----
 .../plan/planner/plan/node/PlanGraphPrinter.java   |   4 +-
 .../plan/node/source/LastQueryScanNode.java        |   4 +-
 .../fetcher/cache/TableDeviceSchemaCache.java      |   2 +-
 .../ir/GlobalTimePredicateExtractVisitor.java      |   6 +
 .../tsfile/generator/TsFileNameGenerator.java      |  10 +-
 .../pipe/sink/PipeTabletEventPlainBatchTest.java   | 147 ++++++++++
 .../db/pipe/sink/PipeTabletEventSorterTest.java    |   4 +-
 .../rescon/disk/FolderManagerTest.java             | 188 ++++++++++++
 .../service/AbstractThriftServiceThread.java       |   1 +
 48 files changed, 1684 insertions(+), 454 deletions(-)
 create mode 100644 iotdb-core/ainode/ainode/core/model/model_enums.py
 create mode 100644 iotdb-core/ainode/ainode/core/model/uri_utils.py
 create mode 100644 
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/sink/PipeTabletEventPlainBatchTest.java
 create mode 100644 
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/storageengine/rescon/disk/FolderManagerTest.java

Reply via email to