mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
Allow a user to disable the auto batching system
This commit is contained in:
parent
e2a766acb5
commit
fe84f2648b
@ -397,8 +397,16 @@ impl IndexScheduler {
|
||||
|
||||
let _index = self.get_index(rtxn, index_name)? & enqueued;
|
||||
|
||||
// If the autobatching is disabled we only take one task at a time.
|
||||
let tasks_limit = if self.autobatching_enabled {
|
||||
usize::MAX
|
||||
} else {
|
||||
1
|
||||
};
|
||||
|
||||
let enqueued = enqueued
|
||||
.into_iter()
|
||||
.take(tasks_limit)
|
||||
.map(|task_id| {
|
||||
self.get_task(rtxn, task_id)
|
||||
.and_then(|task| task.ok_or(Error::CorruptedTaskQueue))
|
||||
|
Loading…
Reference in New Issue
Block a user