-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Batching is still the most efficient way. Though I believe not bulking is less bad vs ES. In case of bulk updates, we do recommend to temporarily disable HNSW building. Please see: https://qdrant.tech/documentation/database-tutorials/bulk-upload/
There's no optimal value that works for everyone. If each individual update is quite large already, pick a lower number. If each individual update is very cheap, pick a higher number. You don't want your batch to be too large because that may 'block' the collection for a long time. In many places we default to 10-100 items per batch. I'd recommend to pick something like that and see how it performs.
It definitely is not free, but that does not mean you should not use it. If you want to change data, I'd recommend to update it directly and not to delete first and then reinsert. |
Beta Was this translation helpful? Give feedback.
Batching is still the most efficient way. Though I believe not bulking is less bad vs ES.
In case of bulk updates, we do recommend to temporarily disable HNSW building.
Please see: https://qdrant.tech/documentation/database-tutorials/bulk-upload/
There's no optimal value that works for everyone. If each individual update is quite large already, pick a lower numbe…