There's a backup of elasticsearch

Can elasticsearch do incremental backup of data,for example,The first day I backed up a batch of elasticsearch data, and the next day I also want to back up the data, but I will not do the backup of the data I did on the first day, could you please implement it

as this index can storage one day or one hour ,this you only backup one index as you need.

ok thankyou

Another ideia is use snapshot to backup your data. You can pass as an argument the indexes that you want to backup in a PUT call.

Docs:
https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-snapshots.html

@xionghaizi Elasticsearch "snapshots" backups are incremental by design.
See here "Snapshots are incremental a.."

This blog post is old, but still describes how snapshot and restore works quite well.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.