diff --git a/src/index.cpp b/src/index.cpp index f46916b8..de4b38f9 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -838,7 +838,7 @@ void Index::index_field_in_memory(const field& afield, std::vector vec_index->resizeIndex((curr_ele_count + iter_batch.size()) * 1.3); } - const size_t num_threads = std::min(4, iter_batch.size()); + const size_t num_threads = 1; //std::min(4, iter_batch.size()); const size_t window_size = (num_threads == 0) ? 0 : (iter_batch.size() + num_threads - 1) / num_threads; // rounds up size_t num_processed = 0;