Skip to content

Commit

Permalink
Revert "Stop using the dedicated thread for the merger store compress…
Browse files Browse the repository at this point in the history
…or."

This reverts commit 1c0e897.
  • Loading branch information
fmassot committed Aug 14, 2023
1 parent 91229a5 commit 97e0a3d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions quickwit/quickwit-indexing/src/actors/merge_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,10 +460,7 @@ impl MergeExecutor {
];
directory_stack.extend(split_directories.into_iter());
let union_directory = UnionDirectory::union_of(directory_stack);
let mut union_index = open_index(union_directory, self.doc_mapper.tokenizer_manager())?;
union_index
.settings_mut()
.docstore_compress_dedicated_thread = false;
let union_index = open_index(union_directory, self.doc_mapper.tokenizer_manager())?;

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

0 comments on commit 97e0a3d

Please sign in to comment.