What are you experiences with updating documents? ...
# community-help
s
What are you experiences with updating documents? I'd probably have to update 2/3 documents per second. Would typesense be able to handle that? Using algolia I had to go for batching otherwise it would drop my indexing ops
j
If you have a large volume of updates, using the documents/import endpoint with
action=update
and bulk updating would be the most performant way.
Using algolia I had to go for batching otherwise it would drop my indexing ops
Out of curiosity, could you expand on this? Algolia drops updates if you send too many?
s
Yes if you send too many "costly" requests they start returning 429 errors: https://www.algolia.com/doc/faq/indexing/is-there-a-rate-limit/
j
Interesting! Good to know.