forked from whyrg/aerospike-google-maintenance
-
Notifications
You must be signed in to change notification settings - Fork 4
/
maintenance.py
executable file
·168 lines (132 loc) · 5.62 KB
/
maintenance.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
#!/usr/bin/env python
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Example of using the Compute Engine API to watch for maintenance notices.
For more information, see the README.md under /compute.
"""
# [START all]
import argparse
import time
import requests
import logging
import subprocess
METADATA_URL = 'http://metadata.google.internal/computeMetadata/v1/'
METADATA_HEADERS = {'Metadata-Flavor': 'Google'}
ASINFO = "/usr/bin/asinfo"
ASADM = "/usr/bin/asadm"
AGM_LOG = "/var/log/aerospike/agm.log"
AGM_LEVEL = logging.INFO
# logger setup
logging.basicConfig()
logger = logging.getLogger('AGM')
logger.setLevel(AGM_LEVEL)
f_handler = logging.FileHandler(AGM_LOG)
f_format = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
f_handler.setFormatter(f_format)
logger.addHandler(f_handler)
# option parser
parser = argparse.ArgumentParser()
parser.add_argument("-o",
"--options",
dest = "options",
default = "",
help = "Additional options to pass into asinfo. Can be anything except commands, ie: \"-v $COMMAND\". Entire string must be quoted, eg: -o=\"-u admin -p admin\"")
args = parser.parse_args()
logger.debug('options: %s', args.options)
# Run shell command and check success or failure.
def run_shell_command(command):
p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = p.communicate()
if stderr:
logger.error("Command: \"" + " ".join(command) + "\" Error: \n" + stderr)
return
if stdout:
logger.debug("Command: \"" + " ".join(command) + "\" Output: \n" + stdout)
if p.returncode != 0:
logger.error("Command: \"" + " ".join(command) + "\" returned with error code: " + str(p.returncode))
else:
logger.info("Command \"" + " ".join(command) + "\" ran successfully")
def wait_for_maintenance(callback):
url = METADATA_URL + 'instance/maintenance-event'
last_maintenance_event = None
# [START hanging_get]
last_etag = '0'
while True:
logger.info("getting the metadata request, waiting for event")
try:
r = requests.get(
url,
params={'last_etag': last_etag, 'wait_for_change': True},
headers=METADATA_HEADERS)
logger.info("agm status change, running... new status code: %s. text: %s", r.status_code, r.text.encode('utf-8').strip())
except requests.exceptions.TooManyRedirects as tmr:
# A request exceeds the configured number of maximum redirections, stop script
# May want to try a different URL, better not to retry.
logger.error("Too Many Redirects %s, terminating!", str(tmr))
raise tmr
except requests.exceptions.RequestException as re:
# Retry for all other errors (ConnectionError, Timeout ..).
# The check for 503 and raise_for_status() - 4XX and 5XX will be done separately.
# https://2.python-requests.org//en/latest/user/quickstart/#errors-and-exceptions
logger.error("Request Exception %s, Retrying....", str(re))
time.sleep(1)
continue
# During maintenance the service can return a 503, so these should be retried.
# Check https://cloud.google.com/compute/docs/storing-retrieving-metadata#statuscodes
if r.status_code == 503:
time.sleep(1)
continue
# Any other response from metadata service will kill this script.
# No retry.
try:
r.raise_for_status()
except requests.exceptions.HTTPError as error:
logger.error("metadata service returned bad code, terminating! (%s)", str(error))
raise error
last_etag = r.headers['etag']
# [END hanging_get]
if r.text == 'NONE':
maintenance_event = None
else:
# Possible events:
# MIGRATE_ON_HOST_MAINTENANCE: instance will be migrated
# TERMINATE_ON_HOST_MAINTENANCE: instance will be shut down
maintenance_event = r.text
if maintenance_event != last_maintenance_event:
last_maintenance_event = maintenance_event
callback(maintenance_event)
def maintenance_callback(event):
if event:
logger.warning('Undergoing host maintenance: %s', event)
# realistically, any sort of maintenence event should drain aerospike
asinfo = [ASINFO, "-v", "quiesce:"]
asinfo.extend(args.options.split())
run_shell_command(asinfo)
logger.info('quiesce finished')
else:
logger.info('Finished host maintenance')
asinfo = [ASINFO, "-v", "quiesce-undo:"]
asinfo.extend(args.options.split())
run_shell_command(asinfo)
logger.info('quiesce-undo finished')
asadm = [ASADM, "-e", "asinfo -v \"recluster:\""]
asadm.extend(args.options.split())
run_shell_command(asadm)
logger.info('recluster finished')
def main():
wait_for_maintenance(maintenance_callback)
if __name__ == '__main__':
logger.info('init service')
main()
# [END all]