ClickHouse/src/Common/MemoryTracker.h

213 lines
6.4 KiB
C++
Raw Normal View History

#pragma once
2016-07-31 03:53:16 +00:00
#include <atomic>
2021-10-02 07:13:14 +00:00
#include <base/types.h>
#include <Common/CurrentMetrics.h>
#include <Common/VariableContext.h>
2021-01-13 12:19:41 +00:00
#if !defined(NDEBUG)
2021-01-12 14:34:50 +00:00
#define MEMORY_TRACKER_DEBUG_CHECKS
#endif
2021-01-13 12:19:41 +00:00
/// DENY_ALLOCATIONS_IN_SCOPE macro makes MemoryTracker throw LOGICAL_ERROR on any allocation attempt
/// until the end of the scope. It's useful to ensure that no allocations happen in signal handlers and
/// outside of try/catch block of thread functions. ALLOW_ALLOCATIONS_IN_SCOPE cancels effect of
/// DENY_ALLOCATIONS_IN_SCOPE in the inner scope. In Release builds these macros do nothing.
2021-01-12 14:34:50 +00:00
#ifdef MEMORY_TRACKER_DEBUG_CHECKS
2021-10-02 07:13:14 +00:00
#include <base/scope_guard.h>
2021-08-27 08:21:19 +00:00
extern thread_local bool memory_tracker_always_throw_logical_error_on_allocation;
/// NOLINTNEXTLINE
2021-01-12 14:34:50 +00:00
#define ALLOCATIONS_IN_SCOPE_IMPL_CONCAT(n, val) \
2021-08-27 08:21:19 +00:00
bool _allocations_flag_prev_val##n = memory_tracker_always_throw_logical_error_on_allocation; \
memory_tracker_always_throw_logical_error_on_allocation = val; \
SCOPE_EXIT({ memory_tracker_always_throw_logical_error_on_allocation = _allocations_flag_prev_val##n; })
/// NOLINTNEXTLINE
2021-01-12 14:34:50 +00:00
#define ALLOCATIONS_IN_SCOPE_IMPL(n, val) ALLOCATIONS_IN_SCOPE_IMPL_CONCAT(n, val)
/// NOLINTNEXTLINE
2021-01-12 14:34:50 +00:00
#define DENY_ALLOCATIONS_IN_SCOPE ALLOCATIONS_IN_SCOPE_IMPL(__LINE__, true)
/// NOLINTNEXTLINE
2021-01-12 14:34:50 +00:00
#define ALLOW_ALLOCATIONS_IN_SCOPE ALLOCATIONS_IN_SCOPE_IMPL(__LINE__, false)
#else
#define DENY_ALLOCATIONS_IN_SCOPE static_assert(true)
#define ALLOW_ALLOCATIONS_IN_SCOPE static_assert(true)
#endif
2021-10-22 12:56:09 +00:00
struct OvercommitRatio;
struct OvercommitTracker;
/** Tracks memory consumption.
* It throws an exception if amount of consumed memory become greater than certain limit.
* The same memory tracker could be simultaneously used in different threads.
*
* @see LockMemoryExceptionInThread
* @see MemoryTrackerBlockerInThread
*/
class MemoryTracker
{
2020-04-19 21:43:06 +00:00
private:
std::atomic<Int64> amount {0};
std::atomic<Int64> peak {0};
2021-10-22 12:56:09 +00:00
std::atomic<Int64> soft_limit {0};
2020-01-21 13:53:30 +00:00
std::atomic<Int64> hard_limit {0};
2020-01-22 15:20:19 +00:00
std::atomic<Int64> profiler_limit {0};
2020-01-21 13:53:30 +00:00
2020-01-22 15:20:19 +00:00
Int64 profiler_step = 0;
/// To test exception safety of calling code, memory tracker throws an exception on each memory allocation with specified probability.
double fault_probability = 0;
2020-04-30 13:25:17 +00:00
/// To randomly sample allocations and deallocations in trace_log.
double sample_probability = 0;
/// Singly-linked list. All information will be passed to subsequent memory trackers also (it allows to implement trackers hierarchy).
/// In terms of tree nodes it is the list of parents. Lifetime of these trackers should "include" lifetime of current tracker.
std::atomic<MemoryTracker *> parent {};
/// You could specify custom metric to track memory usage.
2021-01-17 12:40:14 +00:00
std::atomic<CurrentMetrics::Metric> metric = CurrentMetrics::end();
/// This description will be used as prefix into log messages (if isn't nullptr)
std::atomic<const char *> description_ptr = nullptr;
std::atomic<OvercommitTracker *> overcommit_tracker = nullptr;
2021-10-22 12:56:09 +00:00
bool updatePeak(Int64 will_be, bool log_memory_usage);
2020-04-19 21:43:06 +00:00
void logMemoryUsage(Int64 current) const;
void setOrRaiseProfilerLimit(Int64 value);
public:
2021-09-17 16:47:54 +00:00
static constexpr auto USAGE_EVENT_NAME = "MemoryTrackerUsage";
2021-09-08 00:21:21 +00:00
explicit MemoryTracker(VariableContext level_ = VariableContext::Thread);
explicit MemoryTracker(MemoryTracker * parent_, VariableContext level_ = VariableContext::Thread);
~MemoryTracker();
VariableContext level;
/** Call the following functions before calling of corresponding operations with memory allocators.
*/
void alloc(Int64 size);
2021-05-25 09:50:55 +00:00
void allocNoThrow(Int64 size);
void allocImpl(Int64 size, bool throw_if_memory_exceeded, MemoryTracker * query_tracker = nullptr);
2021-05-25 09:50:55 +00:00
void realloc(Int64 old_size, Int64 new_size)
{
2019-07-10 18:12:50 +00:00
Int64 addition = new_size - old_size;
if (addition > 0)
alloc(addition);
else
free(-addition);
}
/** This function should be called after memory deallocation.
*/
void free(Int64 size);
Int64 get() const
{
return amount.load(std::memory_order_relaxed);
}
Int64 getPeak() const
{
return peak.load(std::memory_order_relaxed);
}
2021-10-22 12:56:09 +00:00
void setSoftLimit(Int64 value);
void setHardLimit(Int64 value);
Int64 getHardLimit() const
{
return hard_limit.load(std::memory_order_relaxed);
}
Int64 getSoftLimit() const
{
return soft_limit.load(std::memory_order_relaxed);
}
/** Set limit if it was not set.
* Otherwise, set limit to new value, if new value is greater than previous limit.
*/
2020-01-21 13:53:30 +00:00
void setOrRaiseHardLimit(Int64 value);
void setFaultProbability(double value)
{
fault_probability = value;
}
2020-04-30 13:25:17 +00:00
void setSampleProbability(double value)
{
sample_probability = value;
}
2020-01-22 15:20:19 +00:00
void setProfilerStep(Int64 value)
2020-01-21 13:53:30 +00:00
{
2020-01-22 15:20:19 +00:00
profiler_step = value;
setOrRaiseProfilerLimit(value);
2020-01-21 13:53:30 +00:00
}
/// next should be changed only once: from nullptr to some value.
/// NOTE: It is not true in MergeListElement
void setParent(MemoryTracker * elem)
{
parent.store(elem, std::memory_order_relaxed);
}
MemoryTracker * getParent()
{
return parent.load(std::memory_order_relaxed);
}
/// The memory consumption could be shown in realtime via CurrentMetrics counter
void setMetric(CurrentMetrics::Metric metric_)
{
2021-01-17 12:40:14 +00:00
metric.store(metric_, std::memory_order_relaxed);
}
2021-08-30 11:04:59 +00:00
CurrentMetrics::Metric getMetric()
{
return metric.load(std::memory_order_relaxed);
}
void setDescription(const char * description)
{
description_ptr.store(description, std::memory_order_relaxed);
}
2021-10-22 12:56:09 +00:00
OvercommitRatio getOvercommitRatio();
OvercommitRatio getOvercommitRatio(Int64 limit);
2021-10-22 12:56:09 +00:00
void setOvercommitTracker(OvercommitTracker * tracker) noexcept
{
overcommit_tracker.store(tracker, std::memory_order_relaxed);
}
void resetOvercommitTracker() noexcept
{
overcommit_tracker.store(nullptr, std::memory_order_relaxed);
2021-10-22 12:56:09 +00:00
}
/// Reset the accumulated data
void resetCounters();
/// Reset the accumulated data.
void reset();
2020-04-19 21:43:06 +00:00
/// Reset current counter to a new value.
void set(Int64 to);
/// Prints info about peak memory consumption into log.
void logPeakMemoryUsage() const;
};
2020-04-19 21:43:06 +00:00
extern MemoryTracker total_memory_tracker;