This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new fd2e60a2db3 [fix](move-memtable) exclude memtable insert memory in
query tracker (#27953)
fd2e60a2db3 is described below
commit fd2e60a2db32648ecec3944224bb8e267591ccff
Author: Kaijie Chen <[email protected]>
AuthorDate: Tue Dec 5 12:04:15 2023 +0800
[fix](move-memtable) exclude memtable insert memory in query tracker
(#27953)
---
be/src/olap/delta_writer_v2.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/be/src/olap/delta_writer_v2.cpp b/be/src/olap/delta_writer_v2.cpp
index fb5db340be7..672fe4476c9 100644
--- a/be/src/olap/delta_writer_v2.cpp
+++ b/be/src/olap/delta_writer_v2.cpp
@@ -142,6 +142,7 @@ Status DeltaWriterV2::append(const vectorized::Block*
block) {
Status DeltaWriterV2::write(const vectorized::Block* block, const
std::vector<uint32_t>& row_idxs,
bool is_append) {
+
SCOPED_SWITCH_THREAD_MEM_TRACKER_LIMITER(ExecEnv::GetInstance()->orphan_mem_tracker());
if (UNLIKELY(row_idxs.empty() && !is_append)) {
return Status::OK();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]