In a multi-tenant cluster, where each document has a tenant id , what is the best practice for backup/restore of data specific to a tenant?
The use case us that we want to backup all the documents for a specific tenant T1at a specific point of time and later want to restore that snapshot of data from for T1 that will overwrite all the current data specific to T1.
We cannot do index snapshot/restore since the same index is shared by multiple tenants. We can do a do a scan/scroll to quickly read the data, but is there a best practice on how to store the data and restore that snapshot that overwrites the current data for a specific tenant?
Thanks for any info regarding this.