Top Level Namespace
Defined Under Namespace
Modules: Zfs
Classes: Hash
Instance Method Summary
collapse
Instance Method Details
#cleanup_expired_snapshots(pool, datasets, interval, keep, should_destroy_zero_sized_snapshots) ⇒ Object
Find and destroy expired snapshots
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
# File 'lib/zfstools.rb', line 215
def cleanup_expired_snapshots(pool, datasets, interval, keep, should_destroy_zero_sized_snapshots)
snapshots = Zfs::Snapshot.list(pool).select { |snapshot| snapshot.name.include?(snapshot_prefix(interval)) }
dataset_snapshots = group_snapshots_into_datasets(snapshots, datasets['included'] + datasets['excluded'])
dataset_snapshots.select! { |dataset, snapshots| datasets['included'].include?(dataset) }
if should_destroy_zero_sized_snapshots
dataset_snapshots = datasets_destroy_zero_sized_snapshots(dataset_snapshots)
end
dataset_snapshots.each do |dataset, snapshots|
dataset_snapshots[dataset].shift(keep)
end
threads = []
dataset_snapshots.values.flatten.each do |snapshot|
threads << Thread.new do
snapshot.destroy
end
threads.last.join unless $use_threads
end
threads.each { |th| th.join }
end
|
#datasets_destroy_zero_sized_snapshots(dataset_snapshots) ⇒ Object
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
# File 'lib/zfstools.rb', line 198
def datasets_destroy_zero_sized_snapshots(dataset_snapshots)
threads = []
dataset_snapshots.each do |dataset, snapshots|
threads << Thread.new do
dataset_snapshots[dataset] = destroy_zero_sized_snapshots(snapshots)
end
threads.last.join unless $use_threads
end
threads.each { |th| th.join }
dataset_snapshots
end
|
#destroy_zero_sized_snapshots(snapshots) ⇒ Object
Destroy zero-sized snapshots. Recheck after each as the size may have shifted.
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
# File 'lib/zfstools.rb', line 183
def destroy_zero_sized_snapshots(snapshots)
saved_snapshot = snapshots.shift(1)
remaining_snapshots = [saved_snapshot]
snapshots.each do |snapshot|
if snapshot.is_zero?
puts "Destroying zero-sized snapshot: #{snapshot.name}" if $verbose
snapshot.destroy
else
remaining_snapshots << snapshot
end
end
remaining_snapshots
end
|
#do_new_snapshots(datasets, interval) ⇒ Object
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
# File 'lib/zfstools.rb', line 148
def do_new_snapshots(datasets, interval)
snapshot_name = snapshot_name(interval)
threads = []
datasets['single'].each do |dataset|
threads << Thread.new do
Zfs::Snapshot.create("#{dataset.name}@#{snapshot_name}", 'db' => dataset.db)
end
threads.last.join unless $use_threads
end
datasets['recursive'].each do |dataset|
threads << Thread.new do
Zfs::Snapshot.create("#{dataset.name}@#{snapshot_name}", 'recursive' => true, 'db' => dataset.db)
end
threads.last.join unless $use_threads
end
threads.each { |th| th.join }
end
|
#filter_datasets(datasets, included_excluded_datasets, property) ⇒ Object
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# File 'lib/zfstools.rb', line 107
def filter_datasets(datasets, included_excluded_datasets, property)
all_datasets = included_excluded_datasets['included'] + included_excluded_datasets['excluded']
datasets.each do |dataset|
next if dataset.properties['mounted'] == 'no'
next if all_datasets.include? dataset
value = dataset.properties[property]
if ["true","mysql","postgresql"].include? value
included_excluded_datasets['included'] << dataset
elsif value
included_excluded_datasets['excluded'] << dataset
end
end
end
|
#find_eligible_datasets(interval, pool) ⇒ Object
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
# File 'lib/zfstools.rb', line 124
def find_eligible_datasets(interval, pool)
properties = [
"#{snapshot_property}:#{interval}",
snapshot_property,
'mounted',
]
datasets = Zfs::Dataset.list(pool, properties)
included_excluded_datasets = {
'included' => [],
'excluded' => [],
}
filter_datasets datasets, included_excluded_datasets, "#{snapshot_property}:#{interval}"
filter_datasets datasets, included_excluded_datasets, snapshot_property
datasets = find_recursive_datasets included_excluded_datasets
end
|
#find_recursive_datasets(datasets) ⇒ Object
Find which datasets can be recursively snapshotted single snapshot restrictions apply to datasets that have a child in the excluded list
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
71
72
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
|
# File 'lib/zfstools.rb', line 42
def find_recursive_datasets(datasets)
all_datasets = datasets['included'] + datasets['excluded']
single = []
recursive = []
cleaned_recursive = []
datasets['included'].each do |dataset|
excluded_child = false
children_datasets = all_datasets.select { |child_dataset| child_dataset.name.start_with? dataset.name }
children_datasets.each do |child_dataset|
if datasets['excluded'].include?(child_dataset)
excluded_child = true
single << dataset
break
end
end
unless excluded_child
recursive << dataset
end
end
recursive.each do |dataset|
if dataset.name.include?('/')
parts = dataset.name.rpartition('/')
parent = all_datasets.find { |parent_dataset| parent_dataset.name == parts[0] }
else
parent = dataset
end
if parent == dataset
cleaned_recursive << dataset
next
end
cleaned_recursive << dataset unless recursive.include?(parent)
end
cleaned_recursive.each do |parent|
all_datasets.each do |dataset|
next if !dataset.name.include?(parent.name)
if dataset.db
parent.contains_db!(dataset.db)
end
end
end
{
'single' => single,
'recursive' => cleaned_recursive,
'included' => datasets['included'],
'excluded' => datasets['excluded'],
}
end
|
#group_snapshots_into_datasets(snapshots, datasets) ⇒ Object
171
172
173
174
175
176
177
178
179
180
|
# File 'lib/zfstools.rb', line 171
def group_snapshots_into_datasets(snapshots, datasets)
dataset_snapshots = Hash.new {|h,k| h[k] = [] }
snapshots.each do |snapshot|
snapshot_name = snapshot.name.split('@')[0]
dataset = datasets.find { |dataset| dataset.name == snapshot_name }
dataset_snapshots[dataset] << snapshot
end
dataset_snapshots
end
|
26
27
28
|
# File 'lib/zfstools.rb', line 26
def snapshot_format
'%Y-%m-%d-%Hh%M'
end
|
#snapshot_name(interval) ⇒ Object
Get the name of the snapshot to create
31
32
33
34
35
36
37
38
|
# File 'lib/zfstools.rb', line 31
def snapshot_name(interval)
if $use_utc
date = Time.now.utc.strftime(snapshot_format + "U")
else
date = Time.now.strftime(snapshot_format)
end
snapshot_prefix(interval) + date
end
|
#snapshot_prefix(interval = nil) ⇒ Object
18
19
20
21
22
23
24
|
# File 'lib/zfstools.rb', line 18
def snapshot_prefix(interval=nil)
prefix = "zfs-auto-snap"
if interval
prefix += "_#{interval}-"
end
prefix
end
|
#snapshot_property ⇒ Object
14
15
16
|
# File 'lib/zfstools.rb', line 14
def snapshot_property
"com.sun:auto-snapshot"
end
|
#usage ⇒ Object
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# File 'bin/zfs-auto-snapshot', line 43
def usage
puts <<-EOF
Usage: #{$0} [-dknpuv] <INTERVAL> <KEEP>
EOF
format = " %-15s %s"
puts format % ["-d", "Show debug output."]
puts format % ["-k", "Keep zero-sized snapshots."]
puts format % ["-n", "Do a dry-run. Nothing is committed. Only show what would be done."]
puts format % ["-p", "Create snapshots in parallel."]
puts format % ["-P pool", "Act only on the specified pool."]
puts format % ["-u", "Use UTC for snapshots."]
puts format % ["-v", "Show what is being done."]
puts format % ["INTERVAL", "The interval to snapshot."]
puts format % ["KEEP", "How many snapshots to keep."]
exit
end
|