table queue: increase batch size

This commit is contained in:
Alex 2023-09-05 15:07:29 +02:00
parent 1b8c265c14
commit fd00a47ddc
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ use crate::replication::*;
use crate::schema::*;
use crate::table::*;
const BATCH_SIZE: usize = 100;
const BATCH_SIZE: usize = 1024;
pub(crate) struct InsertQueueWorker<F, R>(pub(crate) Arc<Table<F, R>>)
where