Selective index snapshotting and restoring #848
sebastian
started this conversation in
Feedback & Feature Proposal
Replies: 1 comment 3 replies
-
meilisearch/meilisearch#5670 has been merged recently and will be released with 1.16.0. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi dear folks. I posted on Discord, and discord user Bentxi suggested I post here.
My usecase is the following:
It appears the only way to update the indices is to recreate them on each search node individually which – unfortunately – means I incurr the cost of indexing the documents N times (once per node), rather than just once. It would be amazing if it was possible to snapshot individual indices (or even better extract a compressed version of it through the API) and furthermore upload a snapshot to a running node (without requiring a restart).
Without a feature like this the problem I am currently running into is that the latency between the master data changing and the indices all being updated can get unacceptably high. The cause of this is largely that I serialize index updates to not overload the search nodes as they also have to do the heavy lifting of reindexing the data.
Beta Was this translation helpful? Give feedback.
All reactions