Class: Backup::Database::Elasticsearch

Inherits:
Base
  • Object
show all
Defined in:
lib/elasticsearch/extensions/backup.rb

Overview

Integration with the Backup gem [backup.github.io/backup/v4/]

This extension allows to backup Elasticsearch indices as flat JSON files on the disk.

Perform the backup with the Backup gem’s command line utility:

$ backup perform -t elasticsearch_backup

The Backup gem can store your backup files on S3, Dropbox and other cloud providers, send notifications about the operation, and so on; read more in the gem documentation.

Examples:

Use the Backup gem’s DSL to configure the backup


require 'elasticsearch/extensions/backup'

Model.new(:elasticsearch_backup, 'Elasticsearch') do

  database Elasticsearch do |db|
    db.url     = 'http://localhost:9200'
    db.indices = 'articles,people'
    db.size    = 500
    db.scroll  = '10m'
  end

  store_with Local do |local|
    local.path = '/tmp/backups'
    local.keep = 3
  end

  compress_with Gzip
end

Use the integration as a standalone script (eg. in a Rake task)


require 'backup'
require 'elasticsearch/extensions/backup'

Backup::Logger.configure do
  logfile.enabled   = true
  logfile.log_path  = '/tmp/backups/log'
end; Backup::Logger.start!

backup  = Backup::Model.new(:elasticsearch, 'Backup Elasticsearch') do
  database Backup::Database::Elasticsearch do |db|
    db.indices = 'test'
  end

  store_with Backup::Storage::Local do |local|
    local.path = '/tmp/backups'
  end
end

backup.perform!

A simple recover script for the backup created in the previous examples


PATH = '/path/to/backup/'

require 'elasticsearch'
client  = Elasticsearch::Client.new log: true
payload = []

Dir[ File.join( PATH, '**', '*.json' ) ].each do |file|
  document = MultiJson.load(File.read(file))
  item = document.merge(data: document['_source'])
  document.delete('_source')
  document.delete('_score')

  payload << { index: item }

  if payload.size == 100
    client.bulk body: payload
    payload = []
  end

  client.bulk body: payload
end

See Also:

Defined Under Namespace

Classes: Error

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(model, database_id = nil, &block) ⇒ Elasticsearch

Returns a new instance of Elasticsearch.



106
107
108
109
110
111
112
113
114
115
116
# File 'lib/elasticsearch/extensions/backup.rb', line 106

def initialize(model, database_id = nil, &block)
  super

  @url     ||= 'http://localhost:9200'
  @indices ||= '_all'
  @size    ||= 100
  @scroll  ||= '10m'
  @mode    ||= 'single'

  instance_eval(&block) if block_given?
end

Instance Attribute Details

#indicesObject

Returns the value of attribute indices.



99
100
101
# File 'lib/elasticsearch/extensions/backup.rb', line 99

def indices
  @indices
end

#modeObject

Returns the value of attribute mode.



104
105
106
# File 'lib/elasticsearch/extensions/backup.rb', line 104

def mode
  @mode
end

#scrollObject

Returns the value of attribute scroll.



99
100
101
# File 'lib/elasticsearch/extensions/backup.rb', line 99

def scroll
  @scroll
end

#sizeObject

Returns the value of attribute size.



99
100
101
# File 'lib/elasticsearch/extensions/backup.rb', line 99

def size
  @size
end

#urlObject

Returns the value of attribute url.



99
100
101
# File 'lib/elasticsearch/extensions/backup.rb', line 99

def url
  @url
end

Instance Method Details

#__perform_singleObject

Raises:



150
151
152
153
154
155
156
157
158
159
160
161
162
# File 'lib/elasticsearch/extensions/backup.rb', line 150

def __perform_single
  r = client.search index: indices, search_type: 'scan', scroll: scroll, size: size
  raise Error, "No scroll_id returned in response:\n#{r.inspect}" unless r['_scroll_id']

  while r = client.scroll(scroll_id: r['_scroll_id'], scroll: scroll) and not r['hits']['hits'].empty? do
    r['hits']['hits'].each do |hit|
      FileUtils.mkdir_p "#{path.join hit['_index'], hit['_type']}"
      File.open("#{path.join hit['_index'], hit['_type'], hit['_id']}.json", 'w') do |file|
        file.write MultiJson.dump(hit)
      end
    end
  end
end

#clientObject



131
132
133
# File 'lib/elasticsearch/extensions/backup.rb', line 131

def client
  @client ||= ::Elasticsearch::Client.new url: url, logger: logger
end

#loggerObject



139
140
141
142
143
144
145
146
147
# File 'lib/elasticsearch/extensions/backup.rb', line 139

def logger
  logger = Backup::Logger.__send__(:logger)
  logger.instance_eval do
    def debug(*args);end
    # alias :debug :info
    alias :fatal :warn
  end
  logger
end

#pathObject



135
136
137
# File 'lib/elasticsearch/extensions/backup.rb', line 135

def path
  Pathname.new File.join(dump_path , dump_filename.downcase)
end

#perform!Object



118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/elasticsearch/extensions/backup.rb', line 118

def perform!
  super

  case mode
    when 'single'
      __perform_single
    else
      raise Error, "Unsupported mode [#{mode}]"
  end

  log!(:finished)
end