Skip to content

Commit

Permalink
Reduce delete index concurrency to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
guilload committed Aug 26, 2024
1 parent 7bed022 commit 85994e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickwit/quickwit-index-management/src/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ impl IndexService {
}
let mut delete_responses: HashMap<String, Vec<SplitInfo>> = HashMap::new();
let mut delete_errors: HashMap<String, IndexServiceError> = HashMap::new();
let mut stream = futures::stream::iter(delete_index_tasks).buffer_unordered(100);
let mut stream = futures::stream::iter(delete_index_tasks).buffer_unordered(5);
while let Some((index_id, delete_response)) = stream.next().await {
match delete_response {
Ok(split_infos) => {
Expand Down

0 comments on commit 85994e2

Please sign in to comment.