This is an automated email from the ASF dual-hosted git repository.
spricoder pushed a change to branch feature/memory_test
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from 095b129fadf change to total memory
add 8760e10b796 Pipe: Avoid stuck in insertion process because failed to
allocate memory (#14899)
add 8e4fef3b8f0 Update dockerfile to use the latest ubuntu 24 (#14903)
add 7615222e8fe Subscription: close memory block for previous tsfile
response (#14909)
add b8438dd0165 Add connection_time_out_in_ms for Python SDK (#14898)
add 43ed88f4909 Allow to write time column only (#14703)
add 9a93a0e29f1 Reject inserting invalid timestamp string (#14913)
add 547e7f6f6b8 Initialize WALNode when DataRegion is created for iotv1
and iotv2 (#14918)
add 69d7840cc99 solve conflict
add 7ec745d31ff solve all conflict
new 9989985bc0f Merge branch 'feature/memory_collect' into
feature/memory_test
The 1 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:
docker/src/main/DockerCompose/do-docker-build.sh | 4 +-
docker/src/main/Dockerfile-1.0.0-confignode | 2 +-
docker/src/main/Dockerfile-1.0.0-datanode | 2 +-
docker/src/main/Dockerfile-1.0.0-standalone | 2 +-
docker/src/main/Dockerfile-1c1d | 2 +-
.../org/apache/iotdb/db/it/IoTDBSimpleQueryIT.java | 14 +++++
.../relational/it/db/it/IoTDBInsertTableIT.java | 11 ++--
.../it/session/IoTDBSessionRelationalIT.java | 34 ++++++++++++
.../iotdb/session/it/IoTDBSessionSimpleIT.java | 48 +++++++++++++++++
.../regression/param/IoTDBTestParamTopicIT.java | 2 +-
iotdb-client/client-py/iotdb/Session.py | 61 ++++++++++++----------
iotdb-client/client-py/iotdb/SessionPool.py | 4 ++
iotdb-client/client-py/iotdb/table_session.py | 3 ++
iotdb-client/client-py/iotdb/table_session_pool.py | 2 +
.../java/org/apache/iotdb/session/Session.java | 15 ++++--
.../pipe/event/PipeConfigRegionSnapshotEvent.java | 3 +-
.../schema/PipeSchemaRegionSnapshotEvent.java | 7 +--
.../tablet/PipeInsertNodeTabletInsertionEvent.java | 4 +-
.../common/tsfile/PipeTsFileInsertionEvent.java | 5 +-
.../db/pipe/resource/memory/PipeMemoryManager.java | 54 ++++++++++++++++---
.../protocol/thrift/impl/ClientRPCServiceImpl.java | 2 +-
.../plan/planner/plan/node/write/InsertNode.java | 2 +
.../planner/plan/node/write/InsertRowNode.java | 3 ++
.../plan/node/write/RelationalInsertRowNode.java | 8 +++
.../node/write/RelationalInsertTabletNode.java | 8 +++
.../fetcher/TableHeaderSchemaValidator.java | 4 --
.../plan/relational/sql/ast/InsertRows.java | 3 ++
.../plan/statement/crud/InsertBaseStatement.java | 28 ++++++----
.../plan/statement/crud/InsertRowStatement.java | 3 ++
.../db/storageengine/dataregion/DataRegion.java | 6 +++
.../dataregion/memtable/AbstractMemTable.java | 24 ++++-----
.../response/SubscriptionEventTsFileResponse.java | 7 ++-
.../org/apache/iotdb/db/utils/DateTimeUtils.java | 4 +-
.../apache/iotdb/db/utils/DateTimeUtilsTest.java | 14 +++++
34 files changed, 302 insertions(+), 93 deletions(-)