Skip to content

Commit

Permalink
Stop using the dedicated thread for the merger store compressor.
Browse files Browse the repository at this point in the history
  • Loading branch information
fulmicoton authored and fmassot committed Aug 14, 2023
1 parent 0344bd1 commit 91229a5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion quickwit/quickwit-indexing/src/actors/merge_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,10 @@ impl MergeExecutor {
];
directory_stack.extend(split_directories.into_iter());
let union_directory = UnionDirectory::union_of(directory_stack);
let union_index = open_index(union_directory, self.doc_mapper.tokenizer_manager())?;
let mut union_index = open_index(union_directory, self.doc_mapper.tokenizer_manager())?;
union_index
.settings_mut()
.docstore_compress_dedicated_thread = false;

ctx.record_progress();
let _protect_guard = ctx.protect_zone();
Expand Down

0 comments on commit 91229a5

Please sign in to comment.