63
63

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

elasticsearchでインデックスのバックアップ、リストア

Posted at

esclientをインストール

sudo easy_install esclient

全インデックスをまるごとバックアップ

esdump --url http://localhost:9200/

特定のインデックスをバックアップ

esdump --url http://localhost:9200/ --indexes logstash-2013.10.12 logstash-2013.10.13

インデックスのバックアップをファイルに出力

esdump --url http://localhost:9200/ --bzip2 --file esdump.bz2

バックアップをファイルから復元(_idがバックアップされているので、重複すれば上書きしてくれる。)

esimport --url http://localhost:9200 --file logstash-2013.10.12.bz2

これは便利。

63
63
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
63
63

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?