MCPcopy Create free account
hub / github.com/apache/arrow / OutOfMemory

Method OutOfMemory

cpp/src/arrow/memory_pool.cc:891–897  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

889}
890
891Status CappedMemoryPool::OutOfMemory(int64_t current_allocated, int64_t requested) const {
892 return Status::OutOfMemory(
893 "MemoryPool bytes_allocated cap exceeded: "
894 "limit=",
895 bytes_allocated_limit_, ", current allocation=", current_allocated,
896 ", requested=", requested);
897}
898
899// -----------------------------------------------------------------------
900// Pool buffer and allocation

Callers

nothing calls this directly

Calls 1

OutOfMemoryFunction · 0.85

Tested by

no test coverage detected