aboutsummaryrefslogtreecommitdiff
path: root/src/zenstore/gc.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2023-11-16 18:50:27 +0100
committerGitHub <[email protected]>2023-11-16 18:50:27 +0100
commit573907447db3e19d49c0bcaf3f659cf2d599c738 (patch)
tree9374a390ad5ab89ce6991398e2eb11154a3dcb4e /src/zenstore/gc.cpp
parentadd wipe prevention via file in data root dir (#548) (diff)
downloadzen-573907447db3e19d49c0bcaf3f659cf2d599c738.tar.xz
zen-573907447db3e19d49c0bcaf3f659cf2d599c738.zip
blocking queue fix (#550)
* make BlockingQueue::m_CompleteAdding non-atomic * ZenCacheDiskLayer::Flush logging * name worker threads in ZenCacheDiskLayer::DiscoverBuckets * name worker threads in gcv2 * improved logging in ZenServerInstance * scrub threadpool naming * remove waitpid handling, we should just call wait to kill zombie processes
Diffstat (limited to 'src/zenstore/gc.cpp')
-rw-r--r--src/zenstore/gc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenstore/gc.cpp b/src/zenstore/gc.cpp
index 778a47626..7f9ca5236 100644
--- a/src/zenstore/gc.cpp
+++ b/src/zenstore/gc.cpp
@@ -581,7 +581,7 @@ GcManager::CollectGarbage(const GcSettings& Settings)
Result.ReferencerStats.resize(m_GcReferencers.size());
- WorkerThreadPool ThreadPool(WorkerThreadPoolCount);
+ WorkerThreadPool ThreadPool(WorkerThreadPoolCount, "GCV2");
ZEN_INFO("GCV2: Removing expired data from {} referencers", m_GcReferencers.size());
if (!m_GcReferencers.empty())