mirror of
https://github.com/Zygo/bees.git
synced 2025-07-03 09:12:25 +02:00
bees: adjust concurrency model
Tune the concurrency model to work a little better with large numbers of subvols. This is much less than the full rewrite Bees desparately needs, but it provides a marginal improvement until the new code is ready. Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
@ -302,7 +302,7 @@ BeesRoots::BeesRoots(shared_ptr<BeesContext> ctx) :
|
||||
m_crawl_state_file(ctx->home_fd(), crawl_state_filename()),
|
||||
m_writeback_thread("crawl_writeback")
|
||||
{
|
||||
// m_lock_set.max_size(bees_worker_thread_count());
|
||||
m_lock_set.max_size(bees_worker_thread_count());
|
||||
|
||||
catch_all([&]() {
|
||||
state_load();
|
||||
@ -578,17 +578,27 @@ BeesCrawl::crawl_thread()
|
||||
Timer crawl_timer;
|
||||
auto crawl_lock = m_ctx->roots()->lock_set().make_lock(m_state.m_root, false);
|
||||
while (!m_stopped) {
|
||||
#if 0
|
||||
BEESNOTE("waiting for crawl thread limit " << m_state);
|
||||
crawl_lock.lock();
|
||||
#endif
|
||||
BEESNOTE("pop_front " << m_state);
|
||||
auto this_range = pop_front();
|
||||
#if 0
|
||||
crawl_lock.unlock();
|
||||
#endif
|
||||
if (this_range) {
|
||||
catch_all([&]() {
|
||||
#if 1
|
||||
BEESNOTE("waiting for scan thread limit " << m_state);
|
||||
crawl_lock.lock();
|
||||
#endif
|
||||
BEESNOTE("scan_forward " << this_range);
|
||||
m_ctx->scan_forward(this_range);
|
||||
});
|
||||
BEESCOUNT(crawl_scan);
|
||||
// Let another thread have a turn with the mutexes
|
||||
this_thread::yield();
|
||||
} else {
|
||||
auto crawl_time = crawl_timer.age();
|
||||
BEESLOGNOTE("Crawl ran out of data after " << crawl_time << "s, waiting for more...");
|
||||
@ -667,8 +677,10 @@ BeesCrawl::fetch_extents()
|
||||
BEESTRACE("Searching crawl sk " << static_cast<btrfs_ioctl_search_key&>(sk));
|
||||
bool ioctl_ok = false;
|
||||
{
|
||||
#if 0
|
||||
BEESNOTE("waiting to search crawl sk " << static_cast<btrfs_ioctl_search_key&>(sk));
|
||||
// auto lock = bees_ioctl_lock_set.make_lock(gettid());
|
||||
auto lock = bees_ioctl_lock_set.make_lock(gettid());
|
||||
#endif
|
||||
|
||||
BEESNOTE("searching crawl sk " << static_cast<btrfs_ioctl_search_key&>(sk));
|
||||
BEESTOOLONG("Searching crawl sk " << static_cast<btrfs_ioctl_search_key&>(sk));
|
||||
|
Reference in New Issue
Block a user