Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFC global: backup and restore features #79

Open
lnielsen opened this issue Aug 29, 2016 · 0 comments
Open

RFC global: backup and restore features #79

lnielsen opened this issue Aug 29, 2016 · 0 comments

Comments

@lnielsen
Copy link
Member

lnielsen commented Aug 29, 2016

ES 2.3+ adds a backup and restore module which e.g can snapshot an entire cluster into to a shared file systems.

Snapshot and restore a useful for:

  • Disaster recovery (a restore is magnitudes faster than reindexing records from scratch).
  • For development to load/dump large datasets.

Proposal:

  • Programmatic API (mostly wrapper around elasticsearch_py):
  • Celery tasks:
    • Creating snapshots (can be installed as a Celery periodic task to have regular snapshots)
    • Expire snapshots
  • CLI:
<instance> search snapshots init
<instance> search snapshots create -r <repository> snapshot_201608291200
<instance> search snapshots list -r <repository>
<instance> search snapshots status -r <repository>
<instance> search snapshots restore -r <repository> snapshot_201608291200 

Or does anyone know about already existing tools the does something similar?

More information:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant