This is an automated email from the ASF dual-hosted git repository.
kangkaisen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
The following commit(s) were added to refs/heads/master by this push:
new 9425f17 [Bug] instance mem tracker should has no limit (#3592)
9425f17 is described below
commit 9425f17d28f63d4ab66cad2770134e9b57a061de
Author: Dayue Gao <[email protected]>
AuthorDate: Tue May 19 19:49:39 2020 +0800
[Bug] instance mem tracker should has no limit (#3592)
---
be/src/runtime/runtime_state.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/runtime/runtime_state.cpp b/be/src/runtime/runtime_state.cpp
index 44488e3..3aa41d5 100644
--- a/be/src/runtime/runtime_state.cpp
+++ b/be/src/runtime/runtime_state.cpp
@@ -238,7 +238,7 @@ Status RuntimeState::init_mem_trackers(const TUniqueId&
query_id) {
_query_mem_tracker.reset(
new MemTracker(bytes_limit, runtime_profile()->name(),
_exec_env->process_mem_tracker()));
_instance_mem_tracker.reset(
- new MemTracker(&_profile, bytes_limit, runtime_profile()->name(),
_query_mem_tracker.get()));
+ new MemTracker(&_profile, -1, runtime_profile()->name(),
_query_mem_tracker.get()));
/*
// TODO: this is a stopgap until we implement ExprContext
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]