stocon: bump number of concurrent reconciles per operation (#8179)

## Problem
Background node operations take a long time for loaded nodes.

## Summary of changes
Increase number of concurrent reconciles an operation is allowed to
spawn.
This should make drain and fill operations faster and the new value is
still well below the total limit of concurrent reconciles.
This commit is contained in:
Vlad Lazar
2024-06-27 14:16:41 +01:00
committed by GitHub
parent 54a06de4b5
commit 89cf8df93b
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ use std::{borrow::Cow, fmt::Debug, fmt::Display};
use tokio_util::sync::CancellationToken;
use utils::id::NodeId;
pub(crate) const MAX_RECONCILES_PER_OPERATION: usize = 10;
pub(crate) const MAX_RECONCILES_PER_OPERATION: usize = 32;
#[derive(Copy, Clone)]
pub(crate) struct Drain {