forked from elastic/curator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurator.py
executable file
·369 lines (302 loc) · 17.4 KB
/
curator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
#!/usr/bin/env python
#
# Time-based and Size-based operations are mutually exclusive!
#
# Time-based operations
# Put an integer (n) after any of the following options to:
# --delete, --close, (disable) --bloom (filters), --optimize
# Do one or more of these on indices older than (n) --time-unit(s)
# where --time-unit can be 'days' or 'hours'
#
# Size-based operations
# --disk-space (float)
# Permits deletion of indices in excess of (float) size in GB
#
# This script presumes an index is named typically, e.g. logstash-YYYY.MM.DD
# It will work with any ${prefix}YYYY.MM.DD or ${prefix}YYYY.MM.DD.HH sequence
# where --prefix defines the variable ${prefix}, with a default of logstash-
#
# REQUIREMENTS
# Requires python and the following dependencies (all pip/easy_installable):
#
# elasticsearch (official Elasticsearch Python API,
# http://www.elasticsearch.org/guide/en/elasticsearch/client/python-api/current/index.html)
#
# argparse (built-in in python2.7 and higher, python 2.6 and lower will have to
# easy_install it)
#
# TODO: Unit tests. The code is somewhat broken up into logical parts that may
# be tested separately.
# Make sure the code can be used outside of __main__ by people importing the module
# Better error reporting?
# Improve the get_index_epoch method to parse more date formats. Consider renaming (to "parse_date_to_timestamp"?)
import sys
import time
import logging
import argparse
from datetime import timedelta, datetime
import elasticsearch
# This solves https://github.com/elasticsearch/curator/issues/12
try:
from logging import NullHandler
except ImportError:
from logging import Handler
class NullHandler(Handler):
def emit(self, record):
pass
__version__ = '0.5.2'
logger = logging.getLogger(__name__)
def make_parser():
""" Creates an ArgumentParser to parse the command line options. """
parser = argparse.ArgumentParser(description='Curator for Elasticsearch indices. Can delete (by space or time), close, disable bloom filters and optimize (forceMerge) your indices.')
parser.add_argument('-v', '--version', action='version', version='%(prog)s '+__version__)
parser.add_argument('--host', help='Elasticsearch host. Default: localhost', default='localhost')
parser.add_argument('--port', help='Elasticsearch port. Default: 9200', default=9200, type=int)
parser.add_argument('-t', '--timeout', help='Elasticsearch timeout. Default: 30', default=30, type=int)
parser.add_argument('-p', '--prefix', help='Prefix for the indices. Indices that do not have this prefix are skipped. Default: logstash-', default='logstash-')
parser.add_argument('-s', '--separator', help='Time unit separator. Default: .', default='.')
parser.add_argument('-C', '--curation-style', dest='curation_style', action='store', help='Curate indices by [time, space] Default: time', default='time', type=str)
parser.add_argument('-T', '--time-unit', dest='time_unit', action='store', help='Unit of time to reckon by: [days, hours] Default: days', default='days', type=str)
parser.add_argument('-d', '--delete', dest='delete_older', action='store', help='Delete indices older than n TIME_UNITs.', type=int)
parser.add_argument('-c', '--close', dest='close_older', action='store', help='Close indices older than n TIME_UNITs.', type=int)
parser.add_argument('-b', '--bloom', dest='bloom_older', action='store', help='Disable bloom filter for indices older than n TIME_UNITs.', type=int)
parser.add_argument('-g', '--disk-space', dest='disk_space', action='store', help='Delete indices beyond n GIGABYTES.', type=float)
parser.add_argument('--max_num_segments', action='store', help='Maximum number of segments, post-optimize. Default: 2', type=int, default=2)
parser.add_argument('-o', '--optimize', action='store', help='Optimize (Lucene forceMerge) indices older than n TIME_UNITs. Must increase timeout to stay connected throughout optimize operation, recommend no less than 3600.', type=int)
parser.add_argument('-n', '--dry-run', action='store_true', help='If true, does not perform any changes to the Elasticsearch indices.', default=False)
parser.add_argument('-D', '--debug', dest='debug', action='store_true', help='Debug mode', default=False)
parser.add_argument('-l', '--logfile', dest='log_file', help='log file', type=str, default=None)
return parser
def validate_args(myargs):
"""Validate that arguments aren't stomping on each other or conflicting"""
success = True
messages = []
if myargs.curation_style == 'time':
if not myargs.delete_older and not myargs.close_older and not myargs.bloom_older and not myargs.optimize:
success = False
messages.append('Must specify at least one of --delete, --close, --bloom, --optimize')
if ((myargs.delete_older and myargs.delete_older < 1) or
(myargs.close_older and myargs.close_older < 1) or
(myargs.bloom_older and myargs.bloom_older < 1) or
(myargs.optimize and myargs.optimize < 1)):
success = False
messages.append('Values for --delete, --close, --bloom, --optimize must be > 0')
if myargs.time_unit != 'days' and myargs.time_unit != 'hours':
success = False
messages.append('Values for --time-unit must be either "days" or "hours"')
if myargs.disk_space:
success = False
messages.append('Cannot specify --disk-space and --curation-style "time"')
if myargs.optimize and myargs.timeout < 300:
success = False
messages.append('Timeout should be much higher for optimize transactions, recommend no less than 3600 seconds')
else: # Curation-style is 'space'
if (myargs.delete_older or myargs.close_older or myargs.bloom_older or myargs.optimize):
success = False
messages.append('Cannot specify --curation-style "space" and any of --delete, --close, --bloom, --optimize')
if (myargs.disk_space == 0) or (myargs.disk_space < 0):
success = False
messages.append('Value for --disk-space must be greater than 0')
if success:
return True
else:
return messages
def get_index_time(index_timestamp, separator='.'):
""" Gets the time of the index.
:param index_timestamp: A string on the format YYYY.MM.DD[.HH]
:return The creation time (datetime) of the index.
"""
try:
return datetime.strptime(index_timestamp, separator.join(('%Y', '%m', '%d', '%H')))
except ValueError:
return datetime.strptime(index_timestamp, separator.join(('%Y', '%m', '%d')))
def can_bloom(client):
"""Return True if ES version > 0.90.9"""
version = client.info()['version']['number']
version_number = tuple(map(int, version.split('.')))
# Bloom filter unloading not supported in versions < 0.90.9
if version_number >= (0, 90, 9):
return True
else:
logger.warn('Your Elasticsearch version {0} is too old to use the bloom filter disable feature. Requires 0.90.9+'.format(version))
return False
def find_expired_indices(client, time_unit, unit_count, separator='.', prefix='logstash-', utc_now=None):
""" Generator that yields expired indices.
:return: Yields tuples on the format ``(index_name, expired_by)`` where index_name
is the name of the expired index and expired_by is the interval (timedelta) that the
index was expired by.
"""
# time-injection for test purposes only
utc_now = utc_now if utc_now else datetime.utcnow()
# reset to midnight to be sure we are not retiring a human by mistake
utc_now = utc_now.replace(hour=0, minute=0, second=0, microsecond=0)
cutoff = utc_now - timedelta(**{time_unit: unit_count})
required_parts = 4 if time_unit == 'hourly' else 3
sorted_indices = sorted(client.indices.get_settings().keys())
for index_name in sorted_indices:
if not index_name.startswith(prefix):
logger.debug('Skipping index due to missing prefix {0}: {1}'.format(prefix, index_name))
continue
unprefixed_index_name = index_name[len(prefix):]
# find the timestamp parts (i.e ['2011', '01', '05'] from '2011.01.05') using the configured separator
parts = unprefixed_index_name.split(separator)
# verify we have a valid cutoff - hours for 4-part indices, days for 3-part
if len(parts) != required_parts:
logger.debug('Skipping {0} because it is of a type (hourly or daily) that I\'m not asked to evaluate.'.format(index_name))
continue
try:
index_time = get_index_time(unprefixed_index_name, separator=separator)
except ValueError:
logger.error('Could not find a valid timestamp from the index: {0}'.format(index_name))
continue
# if the index is older than the cutoff
if index_time < cutoff:
yield index_name, cutoff-index_time
else:
logger.info('{0} is {1} above the cutoff.'.format(index_name, index_time-cutoff))
def find_overusage_indices(client, disk_space_to_keep, separator='.', prefix='logstash-'):
""" Generator that yields over usage indices.
:return: Yields tuples on the format ``(index_name, 0)`` where index_name
is the name of the expired index. The second element is only here for
compatiblity reasons.
"""
disk_usage = 0.0
disk_limit = disk_space_to_keep * 2**30
sorted_indices = sorted(client.indices.get_settings().keys(), reverse=True)
for index_name in sorted_indices:
if not index_name.startswith(prefix):
logger.debug('Skipping index due to missing prefix {0}: {1}'.format(prefix, index_name))
continue
if not index_closed(client, index_name):
index_size = client.indices.status(index=index_name)['indices'][index_name]['index']['primary_size_in_bytes']
disk_usage += index_size
else:
logger.warn('Cannot check size of index {0} because it is closed. Size estimates will not be accurate.')
if disk_usage > disk_limit:
yield index_name, 0
else:
logger.info('skipping {0}, disk usage is {1:.3f} GB and disk limit is {2:.3f} GB.'.format(index_name, disk_usage/2**30, disk_limit/2**30))
def index_closed(client, index_name):
"""Return True if index is closed"""
try:
# 1.0 params
index_metadata = client.cluster.state(
index=index_name,
metric='metadata',
)
except TypeError:
# 0.90 params:
index_metadata = client.cluster.state(
filter_blocks=True,
filter_index_templates=True,
filter_indices=index_name,
filter_nodes=True,
filter_routing_table=True,
)
return index_metadata['metadata']['indices'][index_name]['state'] == 'close'
def _close_index(client, index_name, **kwargs):
if index_closed(client, index_name):
logger.info('Skipping index {0}: Already closed.'.format(index_name))
return True
else:
client.indices.close(index=index_name)
def _delete_index(client, index_name, **kwargs):
client.indices.delete(index=index_name)
def _optimize_index(client, index_name, max_num_segments=2, **kwargs):
if index_closed(client, index_name): # Don't try to optimize a closed index
logger.info('Skipping index {0}: Already closed.'.format(index_name))
return True
else:
shards, segmentcount = get_segmentcount(client, index_name)
logger.debug('Index {0} has {1} shards and {2} segments total.'.format(index_name, shards, segmentcount))
if segmentcount > (shards * max_num_segments):
logger.info('Optimizing index {0} to {1} segments per shard. Please wait...'.format(index_name, max_num_segments))
client.indices.optimize(index=index_name, max_num_segments=max_num_segments)
else:
logger.info('Skipping index {0}: Already optimized.'.format(index_name))
return True
def _bloom_index(client, index_name, **kwargs):
if index_closed(client, index_name): # Don't try to disable bloom filter on a closed index. It will re-open them
logger.info('Skipping index {0}: Already closed.'.format(index_name))
return True
else:
client.indices.put_settings(index=index_name, body='index.codec.bloom.load=false')
OP_MAP = {
'close': (_close_index, {'op': 'close', 'verbed': 'closed', 'gerund': 'Closing'}),
'delete': (_delete_index, {'op': 'delete', 'verbed': 'deleted', 'gerund': 'Deleting'}),
'optimize': (_optimize_index, {'op': 'optimize', 'verbed': 'optimized', 'gerund': 'Optimizing'}),
'bloom': (_bloom_index, {'op': 'disable bloom filter for', 'verbed': 'bloom filter disabled', 'gerund': 'Disabling bloom filter for'}),
}
def index_loop(client, operation, expired_indices, dry_run=False, by_space=False, **kwargs):
op, words = OP_MAP[operation]
for index_name, expiration in expired_indices:
if dry_run and not by_space:
logger.info('Would have attempted {0} index {1} because it is {2} older than the calculated cutoff.'.format(words['gerund'].lower(), index_name, expiration))
continue
elif dry_run and by_space:
logger.info('Would have attempted {0} index {1} due to space constraints.'.format(words['gerund'].lower(), index_name))
continue
if not by_space:
logger.info('Attempting to {0} index {1} because it is {2} older than cutoff.'.format(words['op'], index_name, expiration))
else:
logger.info('Attempting {0} index {1} due to space constraints.'.format(words['gerund'].lower(), index_name))
skipped = op(client, index_name, **kwargs)
if skipped:
continue
# if no error was raised and we got here that means the operation succeeded
logger.info('{0}: Successfully {1}.'.format(index_name, words['verbed']))
logger.info('{0} index operations completed.'.format(words['op'].upper()))
def get_segmentcount(client, index_name):
"""Return a list of shardcount, segmentcount"""
shards = client.indices.segments(index=index_name)['indices'][index_name]['shards']
segmentcount = 0
for shardnum in shards:
for shard in range(0,len(shards[shardnum])):
segmentcount += shards[shardnum][shard]['num_search_segments']
return len(shards), segmentcount
def main():
start = time.time()
parser = make_parser()
arguments = parser.parse_args()
# Setup logging
logging.basicConfig(level=logging.DEBUG if arguments.debug else logging.INFO,
format='%(asctime)s.%(msecs)03d %(levelname)-9s %(funcName)22s:%(lineno)-4d %(message)s',
datefmt="%Y-%m-%dT%H:%M:%S",
stream=open(arguments.log_file, 'a') if arguments.log_file else sys.stderr)
logging.info("Job starting...")
# Setting up NullHandler to handle nested elasticsearch.trace Logger instance in elasticsearch python client
logging.getLogger('elasticsearch.trace').addHandler(NullHandler())
check_args = validate_args(arguments) # Returns either True or a list of errors
if not check_args == True:
logger.error('Malformed arguments: {0}'.format(';'.join(check_args)))
parser.print_help()
return
client = elasticsearch.Elasticsearch('{0}:{1}'.format(arguments.host, arguments.port), timeout=arguments.timeout)
# Delete by space first
if arguments.disk_space:
logger.info('Deleting indices by disk usage over {0} gigabytes'.format(arguments.disk_space))
expired_indices = find_overusage_indices(client, arguments.disk_space, arguments.separator, arguments.prefix)
index_loop(client, 'delete', expired_indices, arguments.dry_run, by_space=True)
# Delete by time
if arguments.delete_older:
logger.info('Deleting indices older than {0} {1}...'.format(arguments.delete_older, arguments.time_unit))
expired_indices = find_expired_indices(client, time_unit=arguments.time_unit, unit_count=arguments.delete_older, separator=arguments.separator, prefix=arguments.prefix)
index_loop(client, 'delete', expired_indices, arguments.dry_run)
# Close by time
if arguments.close_older:
logger.info('Closing indices older than {0} {1}...'.format(arguments.close_older, arguments.time_unit))
expired_indices = find_expired_indices(client, time_unit=arguments.time_unit, unit_count=arguments.close_older, separator=arguments.separator, prefix=arguments.prefix)
index_loop(client, 'close', expired_indices, arguments.dry_run)
# Disable bloom filter by time
if arguments.bloom_older:
logger.info('Disabling bloom filter on indices older than {0} {1}...'.format(arguments.bloom_older, arguments.time_unit))
expired_indices = find_expired_indices(client, time_unit=arguments.time_unit, unit_count=arguments.bloom_older, separator=arguments.separator, prefix=arguments.prefix)
index_loop(client, 'bloom', expired_indices, arguments.dry_run)
# Optimize index
if arguments.optimize:
logger.info('Optimizing indices older than {0} {1}...'.format(arguments.optimize, arguments.time_unit))
expired_indices = find_expired_indices(client, time_unit=arguments.time_unit, unit_count=arguments.optimize, separator=arguments.separator, prefix=arguments.prefix)
index_loop(client, 'optimize', expired_indices, arguments.dry_run)
logger.info('Done in {0}.'.format(timedelta(seconds=time.time()-start)))
if __name__ == '__main__':
main()