Class: Dumper::Job

Inherits:
Object
  • Object
show all
Includes:
Utility::LoggingMethods, POSIX::Spawn
Defined in:
lib/dumper/job.rb

Instance Method Summary collapse

Methods included from Utility::LoggingMethods

#log, #log_last_error, #logger, #stdout_logger

Constructor Details

#initialize(agent, job) ⇒ Job

Returns a new instance of Job.



9
10
11
12
# File 'lib/dumper/job.rb', line 9

def initialize(agent, job)
  @agent = agent
  @job = job
end

Instance Method Details

#abort_with(text, code = nil) ⇒ Object



109
110
111
112
113
114
115
116
117
# File 'lib/dumper/job.rb', line 109

def abort_with(text, code=nil)
  log text
  @database.try(:finalize)
  if code
    @agent.api_request('backup/fail', :params => { :backup_id => @backup_id, :code => code.to_s, :message => text })
  end
  log 'aborting...'
  exit!
end

#perform(server) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/dumper/job.rb', line 24

def perform(server)
  # Find database
  server_type = server[:type].to_sym
  abort_with "invalid server type: #{server_type}" unless Dumper::Stack::DATABASES.keys.include?(server_type)
  return log "database not found: #{@database.inspect}" unless @database = @agent.stack.databases[server_type]

  # Prepare
  json = @agent.api_request('backup/prepare', :params => { :server_id => server[:id], :manual => server[:manual].to_s, :ext => @database.file_ext })
  abort_with('backup/prepare failed') unless json[:status] == 'ok'

  @backup_id = json[:backup][:id]

  # Dump
  start_at = Time.now
  @database.tmpdir = Dir.mktmpdir
  @database.filename = json[:backup][:filename]
  log 'starting backup...'
  log "tmpdir = #{@database.tmpdir}, filename = #{@database.filename}"
  log "command = #{@database.command}"

  begin
    pid, stdin, stdout, stderr = popen4(@database.command)
    stdin.close
    (out = stdout.read).empty? or log out, :debug
    (err = stderr.read).empty? or log err, :error
  rescue
    Process.kill(:INT, pid) rescue SystemCallError
    abort_with("dump error: #{$!}", :dump_error)
  ensure
    [stdin, stdout, stderr].each{|io| io.close unless io.closed? }
    Process.waitpid(pid)
  end

  dump_duration = Time.now - start_at
  log "dump_duration = #{dump_duration}"
  if (filesize = File.size(@database.dump_path)) > @agent.max_filesize
    abort_with("max filesize exceeded: #{filesize}", :too_large)
  end

  upload_to_s3(json[:url], json[:fields])

  json = @agent.api_request('backup/commit', :params => { :backup_id => @backup_id, :dump_duration => dump_duration.to_i })
rescue
  log_last_error
ensure
  @database.finalize
end

#run_and_exitObject



14
15
16
17
18
19
20
21
22
# File 'lib/dumper/job.rb', line 14

def run_and_exit
  @job[:servers].each do |server|
    perform(server)
  end
ensure
  log_last_error if $!
  log 'exiting...'
  exit!(true) # Do not use exit or abort to skip at_exit execution, or pid could get deleted on thin
end

#upload_to_s3(url, fields) ⇒ Object

Upload



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/dumper/job.rb', line 73

def upload_to_s3(url, fields)
  require 'net/http/post/multipart'
  fields['file'] = UploadIO.new(@database.dump_path, 'application/octet-stream', @database.filename)
  uri = URI.parse(url)
  request = Net::HTTP::Post::Multipart.new uri.path, fields
  http = Net::HTTP.new(uri.host, uri.port)
  if uri.is_a? URI::HTTPS
    http.use_ssl = true
    http.verify_mode = OpenSSL::SSL::VERIFY_NONE
  end

  retry_count = 0
  begin
    response = http.request(request)
  rescue # Errno::ECONNRESET, Errno::EPIPE, etc.
    raise if retry_count > 8
    retry_count += 1
    fields['file'].rewind
    log "upload failed: #{$!} - retrying after #{2 ** retry_count}sec..."
    sleep 2 ** retry_count
    retry
  end

  log "response from S3 = #{response.to_s} - #{response.body}"

  # http://apidock.com/ruby/Net/HTTPResponse
  case response
  when Net::HTTPSuccess
    true
  else
    abort_with("upload error: #{response.to_s} - #{response.body}", :upload_error)
  end
rescue
  abort_with("upload error: #{$!}", :upload_error)
end