Class: BoringBackup::Stores::S3

Inherits:
Store
  • Object
show all
Defined in:
lib/boring_backup/stores/s3.rb

Direct Known Subclasses

R2

Constant Summary collapse

DEFAULT_STORAGE_CLASS =
:standard_ia
STORAGE_CLASSES =
%i[
  standard
  standard_ia
  onezone_ia
  intelligent_tiering
  glacier_ir
  glacier
  deep_archive
  reduced_redundancy
  express_onezone
  outposts
  snow
].freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeS3

Returns a new instance of S3.



24
25
26
27
28
29
30
31
# File 'lib/boring_backup/stores/s3.rb', line 24

def initialize
  @region = ENV["AWS_REGION"]
  @access_key_id = ENV["AWS_ACCESS_KEY_ID"]
  @secret_access_key = ENV["AWS_SECRET_ACCESS_KEY"]
  @part_size = ENV.fetch("BB_S3_PART_SIZE", 8 * 1024 * 1024).to_i
  @thread_count = ENV.fetch("BB_S3_THREAD_COUNT", 2).to_i
  @storage_class = ENV.fetch("BB_S3_STORAGE_CLASS", DEFAULT_STORAGE_CLASS)
end

Instance Attribute Details

#access_key_idObject

Returns the value of attribute access_key_id.



21
22
23
# File 'lib/boring_backup/stores/s3.rb', line 21

def access_key_id
  @access_key_id
end

#bucketObject

Returns the value of attribute bucket.



21
22
23
# File 'lib/boring_backup/stores/s3.rb', line 21

def bucket
  @bucket
end

#endpointObject

Returns the value of attribute endpoint.



21
22
23
# File 'lib/boring_backup/stores/s3.rb', line 21

def endpoint
  @endpoint
end

#part_sizeObject

Returns the value of attribute part_size.



21
22
23
# File 'lib/boring_backup/stores/s3.rb', line 21

def part_size
  @part_size
end

#regionObject

Returns the value of attribute region.



21
22
23
# File 'lib/boring_backup/stores/s3.rb', line 21

def region
  @region
end

#secret_access_keyObject

Returns the value of attribute secret_access_key.



21
22
23
# File 'lib/boring_backup/stores/s3.rb', line 21

def secret_access_key
  @secret_access_key
end

#storage_classObject



33
34
35
36
37
# File 'lib/boring_backup/stores/s3.rb', line 33

def storage_class
  value = @storage_class.to_s.strip.downcase

  value.empty? ? nil : value.to_sym
end

#thread_countObject

Returns the value of attribute thread_count.



21
22
23
# File 'lib/boring_backup/stores/s3.rb', line 21

def thread_count
  @thread_count
end

Instance Method Details

#backup!(key, stream) ⇒ Object

Prefer Aws::S3::TransferManager for streaming uploads if available. Aws::S3::Resource.upload_stream is deprecated in newer versions



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/boring_backup/stores/s3.rb', line 47

def backup!(key, stream)
  started = Process.clock_gettime(Process::CLOCK_MONOTONIC)
  bytes = 0

  validate!

  upload_attempted = true

  if defined?(Aws::S3::TransferManager)
    manager = Aws::S3::TransferManager.new(client: s3_client)

    manager.upload_stream(bucket:, key: key, **upload_options) do |s3_stream|
      bytes = IO.copy_stream(stream, s3_stream)
    end
  else
    object = Aws::S3::Resource.new(client: s3_client).bucket(bucket).object(key)

    object.upload_stream(**upload_options) do |s3_stream|
      bytes = IO.copy_stream(stream, s3_stream)
    end
  end

  duration = Process.clock_gettime(Process::CLOCK_MONOTONIC) - started

  if config.min_size && bytes < config.min_size.to_i
    raise BoringBackup::DumpTooSmallError, "backup too small: #{BoringBackup.utils.human_size(bytes)} < min_size (#{BoringBackup.utils.human_size(config.min_size)})"
  end

  Result.new(success: true, store: name, bytes:, key:, duration:)
rescue => e
  duration = Process.clock_gettime(Process::CLOCK_MONOTONIC) - started

  cleanup!(key) if upload_attempted

  Result.new(success: false, error: e, store: name, bytes:, key:, duration:)
end

#cleanup!(key) ⇒ Object



98
99
100
101
102
# File 'lib/boring_backup/stores/s3.rb', line 98

def cleanup!(key)
  s3_client.delete_object(bucket:, key:)
rescue => e
  warn "Failed to clean up partial upload #{key}: #{e.message}"
end

#descriptionObject



41
42
43
# File 'lib/boring_backup/stores/s3.rb', line 41

def description
  [bucket.to_s.empty? ? "no bucket" : "#{name}://#{bucket}", region].compact.join(" ")
end

#nameObject



39
# File 'lib/boring_backup/stores/s3.rb', line 39

def name = :s3

#validate!Object



84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/boring_backup/stores/s3.rb', line 84

def validate!
  raise BoringBackup::ConfigurationError, "bucket is not configured" if bucket.to_s.empty?

  if access_key_id.to_s.empty? != secret_access_key.to_s.empty?
    raise BoringBackup::ConfigurationError,
      "access_key_id and secret_access_key must both be set, or both left blank to use the default AWS credential chain"
  end

  if storage_class && !STORAGE_CLASSES.include?(storage_class)
    raise BoringBackup::ConfigurationError,
      "unknown storage class: #{storage_class.inspect} (expected one of: #{STORAGE_CLASSES.map(&:inspect).join(", ")}, or nil to use the bucket default)"
  end
end