add basic working version 1
This commit is contained in:
@@ -101,8 +101,10 @@ void InitSignalHandlers(const std::function<void()> &shutdown_fun) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
|
memgraph::memory::PrintStats();
|
||||||
google::SetUsageMessage("Memgraph database server");
|
google::SetUsageMessage("Memgraph database server");
|
||||||
gflags::SetVersionString(version_string);
|
gflags::SetVersionString(version_string);
|
||||||
|
// memgraph::memory::PrintStats();
|
||||||
|
|
||||||
// Load config before parsing arguments, so that flags from the command line
|
// Load config before parsing arguments, so that flags from the command line
|
||||||
// overwrite the config.
|
// overwrite the config.
|
||||||
@@ -113,12 +115,14 @@ int main(int argc, char **argv) {
|
|||||||
gflags::ShowUsageWithFlags(argv[0]);
|
gflags::ShowUsageWithFlags(argv[0]);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
// memgraph::memory::PrintStats();
|
|
||||||
memgraph::flags::InitializeLogger();
|
memgraph::flags::InitializeLogger();
|
||||||
|
|
||||||
// Unhandled exception handler init.
|
// Unhandled exception handler init.
|
||||||
std::set_terminate(&memgraph::utils::TerminateHandler);
|
std::set_terminate(&memgraph::utils::TerminateHandler);
|
||||||
|
|
||||||
|
// memgraph::memory::PrintStats();
|
||||||
|
|
||||||
// Initialize Python
|
// Initialize Python
|
||||||
auto *program_name = Py_DecodeLocale(argv[0], nullptr);
|
auto *program_name = Py_DecodeLocale(argv[0], nullptr);
|
||||||
MG_ASSERT(program_name);
|
MG_ASSERT(program_name);
|
||||||
@@ -192,7 +196,7 @@ int main(int argc, char **argv) {
|
|||||||
"won't be available.");
|
"won't be available.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// memgraph::memory::PrintStats();
|
||||||
std::cout << "You are running Memgraph v" << gflags::VersionString() << std::endl;
|
std::cout << "You are running Memgraph v" << gflags::VersionString() << std::endl;
|
||||||
std::cout << "To get started with Memgraph, visit https://memgr.ph/start" << std::endl;
|
std::cout << "To get started with Memgraph, visit https://memgr.ph/start" << std::endl;
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,10 @@
|
|||||||
|
|
||||||
#include "memory_control.hpp"
|
#include "memory_control.hpp"
|
||||||
#include <fmt/core.h>
|
#include <fmt/core.h>
|
||||||
|
#include <atomic>
|
||||||
|
#include <cstdint>
|
||||||
#include "utils/logging.hpp"
|
#include "utils/logging.hpp"
|
||||||
|
#include "utils/readable_size.hpp"
|
||||||
|
|
||||||
#if USE_JEMALLOC
|
#if USE_JEMALLOC
|
||||||
#include <jemalloc/jemalloc.h>
|
#include <jemalloc/jemalloc.h>
|
||||||
@@ -33,37 +36,83 @@ extent_hooks_t *old_hooks = nullptr;
|
|||||||
|
|
||||||
extent_alloc_t *old_alloc = nullptr;
|
extent_alloc_t *old_alloc = nullptr;
|
||||||
|
|
||||||
|
static std::atomic<uint64_t> allocated_memory{0};
|
||||||
|
|
||||||
void *my_alloc(extent_hooks_t *extent_hooks, void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit,
|
void *my_alloc(extent_hooks_t *extent_hooks, void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit,
|
||||||
unsigned arena_ind) {
|
unsigned arena_ind) {
|
||||||
|
if (*commit) {
|
||||||
|
std::cout << "allocating memory pages: " << size / 4096UL << ", which equals to: " << utils::GetReadableSize(size)
|
||||||
|
<< ", of allignment: " << utils::GetReadableSize(alignment) << std::endl;
|
||||||
|
allocated_memory.fetch_add(size, std::memory_order_relaxed);
|
||||||
|
std::cout << "[TOTAL] total memory: " << utils::GetReadableSize(allocated_memory.load(std::memory_order_relaxed));
|
||||||
|
} else {
|
||||||
|
std::cout << "[VIRTUAL] allocating memory pages: " << size / 4096UL
|
||||||
|
<< ", which equals to: " << utils::GetReadableSize(size)
|
||||||
|
<< ", of allignment: " << utils::GetReadableSize(alignment) << std::endl;
|
||||||
|
}
|
||||||
MG_ASSERT(original_hooks_vec[arena_ind] && original_hooks_vec[arena_ind]->alloc);
|
MG_ASSERT(original_hooks_vec[arena_ind] && original_hooks_vec[arena_ind]->alloc);
|
||||||
return original_hooks_vec[arena_ind]->alloc(extent_hooks, new_addr, size, alignment, zero, commit, arena_ind);
|
return original_hooks_vec[arena_ind]->alloc(extent_hooks, new_addr, size, alignment, zero, commit, arena_ind);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool my_dalloc(extent_hooks_t *extent_hooks, void *addr, size_t size, bool committed, unsigned arena_ind) {
|
static bool my_dalloc(extent_hooks_t *extent_hooks, void *addr, size_t size, bool committed, unsigned arena_ind) {
|
||||||
|
if (committed) {
|
||||||
|
std::cout << "deallocating memory pages: " << size / 4096UL << ", which equals to: " << utils::GetReadableSize(size)
|
||||||
|
<< std::endl;
|
||||||
|
allocated_memory.fetch_sub(size, std::memory_order_relaxed);
|
||||||
|
std::cout << "[TOTAL] total memory: " << utils::GetReadableSize(allocated_memory.load(std::memory_order_relaxed));
|
||||||
|
} else {
|
||||||
|
std::cout << "[VIRTUAL] deallocating memory pages: " << size / 4096UL
|
||||||
|
<< ", which equals to: " << utils::GetReadableSize(size) << std::endl;
|
||||||
|
}
|
||||||
|
MG_ASSERT(original_hooks_vec[arena_ind] && original_hooks_vec[arena_ind]->alloc);
|
||||||
return old_hooks->dalloc(extent_hooks, addr, size, committed, arena_ind);
|
return old_hooks->dalloc(extent_hooks, addr, size, committed, arena_ind);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void my_destroy(extent_hooks_t *extent_hooks, void *addr, size_t size, bool committed, unsigned arena_ind) {
|
static void my_destroy(extent_hooks_t *extent_hooks, void *addr, size_t size, bool committed, unsigned arena_ind) {
|
||||||
|
if (committed) {
|
||||||
|
std::cout << "destroying memory pages: " << size / 4096UL << ", which equals to: " << utils::GetReadableSize(size)
|
||||||
|
<< std::endl;
|
||||||
|
allocated_memory.fetch_sub(size, std::memory_order_relaxed);
|
||||||
|
std::cout << "[TOTAL] total memory: " << utils::GetReadableSize(allocated_memory.load(std::memory_order_relaxed));
|
||||||
|
} else {
|
||||||
|
std::cout << "[VIRTUAL] destroying memory pages: " << size / 4096UL
|
||||||
|
<< ", which equals to: " << utils::GetReadableSize(size) << std::endl;
|
||||||
|
}
|
||||||
|
MG_ASSERT(original_hooks_vec[arena_ind] && original_hooks_vec[arena_ind]->alloc);
|
||||||
old_hooks->destroy(extent_hooks, addr, size, committed, arena_ind);
|
old_hooks->destroy(extent_hooks, addr, size, committed, arena_ind);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool my_commit(extent_hooks_t *extent_hooks, void *addr, size_t size, size_t offset, size_t length,
|
static bool my_commit(extent_hooks_t *extent_hooks, void *addr, size_t size, size_t offset, size_t length,
|
||||||
unsigned arena_ind) {
|
unsigned arena_ind) {
|
||||||
|
std::cout << "commiting memory pages: " << size / 4096UL << ", which equals to: " << utils::GetReadableSize(size)
|
||||||
|
<< std::endl;
|
||||||
|
allocated_memory.fetch_add(size, std::memory_order_relaxed);
|
||||||
|
std::cout << "[TOTAL] total memory: " << utils::GetReadableSize(allocated_memory.load(std::memory_order_relaxed));
|
||||||
|
|
||||||
|
MG_ASSERT(original_hooks_vec[arena_ind] && original_hooks_vec[arena_ind]->alloc);
|
||||||
return old_hooks->commit(extent_hooks, addr, size, offset, length, arena_ind);
|
return old_hooks->commit(extent_hooks, addr, size, offset, length, arena_ind);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool my_decommit(extent_hooks_t *extent_hooks, void *addr, size_t size, size_t offset, size_t length,
|
static bool my_decommit(extent_hooks_t *extent_hooks, void *addr, size_t size, size_t offset, size_t length,
|
||||||
unsigned arena_ind) {
|
unsigned arena_ind) {
|
||||||
|
MG_ASSERT(original_hooks_vec[arena_ind] && original_hooks_vec[arena_ind]->alloc);
|
||||||
return old_hooks->decommit(extent_hooks, addr, size, offset, length, arena_ind);
|
return old_hooks->decommit(extent_hooks, addr, size, offset, length, arena_ind);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool my_purge_forced(extent_hooks_t *extent_hooks, void *addr, size_t size, size_t offset, size_t length,
|
static bool my_purge_forced(extent_hooks_t *extent_hooks, void *addr, size_t size, size_t offset, size_t length,
|
||||||
unsigned arena_ind) {
|
unsigned arena_ind) {
|
||||||
|
std::cout << "pruge forced memory pages: " << size / 4096UL << ", which equals to: " << utils::GetReadableSize(size)
|
||||||
|
<< std::endl;
|
||||||
|
allocated_memory.fetch_sub(size, std::memory_order_relaxed);
|
||||||
|
std::cout << "[TOTAL] total memory: " << utils::GetReadableSize(allocated_memory.load(std::memory_order_relaxed));
|
||||||
|
|
||||||
|
MG_ASSERT(original_hooks_vec[arena_ind] && original_hooks_vec[arena_ind]->alloc);
|
||||||
return old_hooks->purge_forced(extent_hooks, addr, size, offset, length, arena_ind);
|
return old_hooks->purge_forced(extent_hooks, addr, size, offset, length, arena_ind);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool my_purge_lazy(extent_hooks_t *extent_hooks, void *addr, size_t size, size_t offset, size_t length,
|
static bool my_purge_lazy(extent_hooks_t *extent_hooks, void *addr, size_t size, size_t offset, size_t length,
|
||||||
unsigned arena_ind) {
|
unsigned arena_ind) {
|
||||||
|
MG_ASSERT(original_hooks_vec[arena_ind] && original_hooks_vec[arena_ind]->alloc);
|
||||||
return old_hooks->purge_lazy(extent_hooks, addr, size, offset, length, arena_ind);
|
return old_hooks->purge_lazy(extent_hooks, addr, size, offset, length, arena_ind);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -75,6 +124,7 @@ static bool my_split(extent_hooks_t *extent_hooks, void *addr, size_t size, size
|
|||||||
|
|
||||||
static bool my_merge(extent_hooks_t *extent_hooks, void *addr_a, size_t size_a, void *addr_b, size_t size_b,
|
static bool my_merge(extent_hooks_t *extent_hooks, void *addr_a, size_t size_a, void *addr_b, size_t size_b,
|
||||||
bool committed, unsigned arena_ind) {
|
bool committed, unsigned arena_ind) {
|
||||||
|
MG_ASSERT(original_hooks_vec[arena_ind] && original_hooks_vec[arena_ind]->alloc);
|
||||||
return old_hooks->merge(extent_hooks, addr_a, size_a, addr_b, size_b, committed, arena_ind);
|
return old_hooks->merge(extent_hooks, addr_a, size_a, addr_b, size_b, committed, arena_ind);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -110,11 +160,6 @@ void PrintStats() {
|
|||||||
#if USE_JEMALLOC
|
#if USE_JEMALLOC
|
||||||
uint64_t allocated{0};
|
uint64_t allocated{0};
|
||||||
uint64_t sz{sizeof(allocated)};
|
uint64_t sz{sizeof(allocated)};
|
||||||
// mallctl("stats.allocated", &allocated, &sz, nullptr, 0);
|
|
||||||
// std::cout << "stats allocated:" << allocated << ", sz: " << std::endl;
|
|
||||||
|
|
||||||
// mallctl("stats.arenas." STRINGIFY(MALLCTL_ARENAS_ALL) ".pactive", &allocated, &sz, nullptr, 0);
|
|
||||||
// std::cout << "stats allocated:" << allocated << ", sz: " << std::endl;
|
|
||||||
|
|
||||||
sz = sizeof(unsigned);
|
sz = sizeof(unsigned);
|
||||||
unsigned narenas{0};
|
unsigned narenas{0};
|
||||||
@@ -132,7 +177,7 @@ void PrintStats() {
|
|||||||
|
|
||||||
// get original hooks and update alloc
|
// get original hooks and update alloc
|
||||||
original_hooks_vec.reserve(narenas);
|
original_hooks_vec.reserve(narenas);
|
||||||
for (int i = 0; i < narenas; i++) {
|
for (int i = 0; i < 8; i++) {
|
||||||
std::string func_name = "arena." + std::to_string(i) + ".extent_hooks";
|
std::string func_name = "arena." + std::to_string(i) + ".extent_hooks";
|
||||||
|
|
||||||
size_t hooks_len = sizeof(old_hooks);
|
size_t hooks_len = sizeof(old_hooks);
|
||||||
@@ -196,3 +241,9 @@ void PurgeUnusedMemory() {
|
|||||||
// (*commit) ? "true" : "false",
|
// (*commit) ? "true" : "false",
|
||||||
// arena_ind);
|
// arena_ind);
|
||||||
// Default behavior using original hooks
|
// Default behavior using original hooks
|
||||||
|
|
||||||
|
// mallctl("stats.allocated", &allocated, &sz, nullptr, 0);
|
||||||
|
// std::cout << "stats allocated:" << allocated << ", sz: " << std::endl;
|
||||||
|
|
||||||
|
// mallctl("stats.arenas." STRINGIFY(MALLCTL_ARENAS_ALL) ".pactive", &allocated, &sz, nullptr, 0);
|
||||||
|
// std::cout << "stats allocated:" << allocated << ", sz: " << std::endl;
|
||||||
|
|||||||
Reference in New Issue
Block a user