mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
Remove ThreadStatus::untracked_memory_limit_increase
It looks useless nowadays, because operator new cannot throw MEMORY_LIMIT_EXCEEDED today, and so any code that works on Exception is likely safe. Refs: #40249 Refs: #24483 Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
This commit is contained in:
parent
c5c6f8a3fe
commit
ec2e671d20
@ -52,15 +52,10 @@ void CurrentMemoryTracker::allocImpl(Int64 size, bool throw_if_memory_exceeded)
|
|||||||
if (current_thread)
|
if (current_thread)
|
||||||
{
|
{
|
||||||
Int64 will_be = current_thread->untracked_memory + size;
|
Int64 will_be = current_thread->untracked_memory + size;
|
||||||
Int64 limit = current_thread->untracked_memory_limit + current_thread->untracked_memory_limit_increase;
|
|
||||||
|
|
||||||
if (will_be > limit)
|
if (will_be > current_thread->untracked_memory_limit)
|
||||||
{
|
{
|
||||||
/// Increase limit before track. If tracker throws out-of-limit we would be able to alloc up to untracked_memory_limit bytes
|
|
||||||
/// more. It could be useful to enlarge Exception message in rethrow logic.
|
|
||||||
current_thread->untracked_memory_limit_increase = current_thread->untracked_memory_limit;
|
|
||||||
memory_tracker->allocImpl(will_be, throw_if_memory_exceeded);
|
memory_tracker->allocImpl(will_be, throw_if_memory_exceeded);
|
||||||
current_thread->untracked_memory_limit_increase = 0;
|
|
||||||
current_thread->untracked_memory = 0;
|
current_thread->untracked_memory = 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -135,8 +135,6 @@ public:
|
|||||||
Int64 untracked_memory = 0;
|
Int64 untracked_memory = 0;
|
||||||
/// Each thread could new/delete memory in range of (-untracked_memory_limit, untracked_memory_limit) without access to common counters.
|
/// Each thread could new/delete memory in range of (-untracked_memory_limit, untracked_memory_limit) without access to common counters.
|
||||||
Int64 untracked_memory_limit = 4 * 1024 * 1024;
|
Int64 untracked_memory_limit = 4 * 1024 * 1024;
|
||||||
/// Increase limit in case of exception.
|
|
||||||
Int64 untracked_memory_limit_increase = 0;
|
|
||||||
|
|
||||||
/// Statistics of read and write rows/bytes
|
/// Statistics of read and write rows/bytes
|
||||||
Progress progress_in;
|
Progress progress_in;
|
||||||
|
Loading…
Reference in New Issue
Block a user