forked from bethac07/Distributed-FIJI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.py
385 lines (338 loc) · 15.7 KB
/
run.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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
from __future__ import print_function
import os, sys
import boto, boto3
import datetime
import json
import subprocess
import time
from base64 import b64encode
from ConfigParser import ConfigParser
from pprint import pprint
from config import *
MONITOR_TIME = 60
#################################
# AUXILIARY FUNCTIONS
#################################
def getAWSJsonOutput(cmd):
process = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE)
out, err = process.communicate()
try:
requestInfo = json.loads(out)
except ValueError as e:
if str(e) == "No JSON object could be decoded":
requestInfo = out
else:
requestInfo = out + err
return requestInfo
def loadConfig(configFile):
data = None
with open(configFile, 'r') as conf:
data = json.load(conf)
return data
def killdeadAlarms(fleetId,monitorapp):
checkdates=[datetime.datetime.now().strftime('%Y-%m-%d'),(datetime.datetime.now()-datetime.timedelta(days=1)).strftime('%Y-%m-%d')]
todel=[]
for eachdate in checkdates:
cmd="aws ec2 describe-spot-fleet-request-history --spot-fleet-request-id "+fleetId+" --start-time "+eachdate+" --output json"
datedead=getAWSJsonOutput(cmd)
for eachevent in datedead['HistoryRecords']:
if eachevent['EventType']=='instanceChange':
if eachevent['EventInformation']['EventSubType']=='terminated':
todel.append(eachevent['EventInformation']['InstanceId'])
for eachmachine in todel:
cmd='aws cloudwatch delete-alarms --alarm-name '+monitorapp+'_'+eachmachine
subprocess.Popen(cmd.split())
time.sleep(3) #Avoid Rate exceeded error
print('Deleted', monitorapp+'_'+eachmachine, 'if it existed')
print('Old alarms deleted')
def seeIfLogExportIsDone(logExportId):
while True:
cmd='aws logs describe-export-tasks --task-id '+logExportId
result =getAWSJsonOutput(cmd)
if result['exportTasks'][0]['status']['code']!='PENDING':
if result['exportTasks'][0]['status']['code']!='RUNNING':
print(result['exportTasks'][0]['status']['code'])
break
time.sleep(30)
def generateECSconfig(ECS_CLUSTER,APP_NAME,AWS_BUCKET,s3client):
configfile=open('configtemp.config','w')
configfile.write('ECS_CLUSTER='+ECS_CLUSTER+'\n')
configfile.write('ECS_AVAILABLE_LOGGING_DRIVERS=["json-file","awslogs"]')
configfile.close()
s3client.upload_file('configtemp.config',AWS_BUCKET,'ecsconfigs/'+APP_NAME+'_ecs.config')
os.remove('configtemp.config')
return 's3://'+AWS_BUCKET+'/ecsconfigs/'+APP_NAME+'_ecs.config'
def generateUserData(ecsConfigFile,dockerBaseSize):
with open('temp_config.txt','w') as tempconfig:
tempconfig.write('#!/bin/bash \n')
tempconfig.write('sudo yum install -y aws-cli \n')
tempconfig.write('sudo yum install -y awslogs \n')
tempconfig.write('aws s3 cp '+ecsConfigFile+' /etc/ecs/ecs.config')
with open('temp_boothook.txt','w') as tempboot:
tempboot.write('#!/bin/bash \n')
tempboot.write("echo 'OPTIONS="+'"${OPTIONS} --storage-opt dm.basesize='+str(dockerBaseSize)+'G"'+"' >> /etc/sysconfig/docker")
cmd = "write-mime-multipart --output=temp_userdata.txt " + \
"temp_boothook.txt:text/cloud-boothook " + \
"temp_config.txt:text/x-shellscript "
subprocess.Popen(cmd.split())
time.sleep(5)
userData=''
with open('temp_userdata.txt','rb') as mimefile:
for line in mimefile:
userData += line
os.remove('temp_boothook.txt')
os.remove('temp_config.txt')
os.remove('temp_userdata.txt')
return b64encode(userData)
def removequeue(queueName):
cmd='aws sqs list-queues --queue-name-prefix ' + queueName
queueoutput=getAWSJsonOutput(cmd)
if len(queueoutput["QueueUrls"])==1:
queueUrl=queueoutput["QueueUrls"][0]
else: #In case we have "AnalysisQueue" and "AnalysisQueue1" and only want to delete the first of those
for eachUrl in queueoutput["QueueUrls"]:
if eachUrl.split('/')[-1] == queueName:
queueUrl=eachUrl
cmd='aws sqs delete-queue --queue-url ' + queueUrl
subprocess.Popen(cmd.split(), stdout=subprocess.PIPE)
def deregistertask(taskName):
cmd='aws ecs list-task-definitions --family-prefix '+taskName+' --status ACTIVE'
taskArns=getAWSJsonOutput(cmd)
for eachtask in taskArns['taskDefinitionArns']:
fulltaskname=eachtask.split('/')[-1]
cmd='aws ecs deregister-task-definition --task-definition '+fulltaskname
result=getAWSJsonOutput(cmd)
def removeClusterIfUnused(clusterName):
if clusterName != 'default':
cmd = 'aws ecs describe-clusters --cluster '+clusterName
result=getAWSJsonOutput(cmd)
if sum([result['clusters'][0]['pendingTasksCount'],result['clusters'][0]['runningTasksCount'],result['clusters'][0]['activeServicesCount']])==0:
cmd = 'aws ecs delete-cluster --cluster '+clusterName
result=getAWSJsonOutput(cmd)
def downscaleSpotFleet(queue, spotFleetID):
visible, nonvisible = queue.returnLoad()
if visible > 0:
return
else:
cmd = 'aws ec2 describe-spot-fleet-instances --spot-fleet-request-id ' + spotFleetID
status = getAWSJsonOutput(cmd)
if nonvisible < len(status['ActiveInstances']):
cmd="aws ec2 modify-spot-fleet-request --excess-capacity-termination-policy NoTermination --target-capacity " + str(nonvisible)+ " --spot-fleet-request-id " + spotFleetID
result=getAWSJsonOutput(cmd)
#################################
# CLASS TO HANDLE SQS QUEUE
#################################
class JobQueue():
def __init__(self,name=None):
self.sqs = boto3.resource('sqs')
if name==None:
self.queue = self.sqs.get_queue_by_name(QueueName=SQS_QUEUE_NAME)
else:
self.queue = self.sqs.get_queue_by_name(QueueName=name)
self.inProcess = -1
self.pending = -1
def scheduleBatch(self, data):
msg = json.dumps(data)
response = self.queue.send_message(MessageBody=msg)
print('Batch sent. Message ID:',response.get('MessageId'))
def pendingLoad(self):
self.queue.load()
visible = int( self.queue.attributes['ApproximateNumberOfMessages'] )
nonVis = int( self.queue.attributes['ApproximateNumberOfMessagesNotVisible'] )
if [visible, nonVis] != [self.pending,self.inProcess]:
self.pending = visible
self.inProcess = nonVis
d = datetime.datetime.now()
print(d,'In process:',nonVis,'Pending',visible)
if visible + nonVis > 0:
return True
else:
return False
def returnLoad(self):
self.queue.load()
visible = int( self.queue.attributes['ApproximateNumberOfMessages'] )
nonVis = int( self.queue.attributes['ApproximateNumberOfMessagesNotVisible'] )
return visible, nonVis
#################################
# SERVICE 1: SUBMIT JOB
#################################
def submitJob():
if len(sys.argv) < 3:
print('Use: run.py submitJob jobfile')
sys.exit()
# Step 1: Read the job configuration file
jobInfo = loadConfig(sys.argv[2])
templateMessage = {'Metadata': '',
'output_file_location': jobInfo["output_file_location"],
'shared_metadata': jobInfo["shared_metadata"]
}
# Step 2: Reach the queue and schedule tasks
print('Contacting queue')
queue = JobQueue()
print('Scheduling tasks')
for batch in jobInfo["groups"]:
templateMessage["Metadata"] = batch
queue.scheduleBatch(templateMessage)
print('Job submitted. Check your queue')
#################################
# SERVICE 2: START CLUSTER
#################################
def startCluster():
if len(sys.argv) < 3:
print('Use: run.py startCluster configFile')
sys.exit()
#Step 1: set up the configuration files
s3client=boto3.client('s3')
ecsConfigFile=generateECSconfig(ECS_CLUSTER,APP_NAME,AWS_BUCKET,s3client)
spotfleetConfig=loadConfig(sys.argv[2])
userData=generateUserData(ecsConfigFile,int(EBS_VOL_SIZE)-2)
spotfleetConfig['LaunchSpecifications'][0]["UserData"]=userData
spotfleetConfig['LaunchSpecifications'][0]['BlockDeviceMappings'][1]['Ebs']["VolumeSize"]= EBS_VOL_SIZE
# Step 2: make the spot fleet request
ec2client=boto3.client('ec2')
requestInfo = ec2client.request_spot_fleet(SpotFleetRequestConfig=spotfleetConfig)
print('Request in process. Wait until your machines are available in the cluster.')
print('SpotFleetRequestId',requestInfo['SpotFleetRequestId'])
# Step 3: Make the monitor
starttime=str(int(time.time()*1000))
createMonitor=open('files/' + APP_NAME + 'SpotFleetRequestId.json','w')
createMonitor.write('{"MONITOR_FLEET_ID" : "'+requestInfo['SpotFleetRequestId']+'",\n')
createMonitor.write('"MONITOR_APP_NAME" : "'+APP_NAME+'",\n')
createMonitor.write('"MONITOR_ECS_CLUSTER" : "'+ECS_CLUSTER+'",\n')
createMonitor.write('"MONITOR_QUEUE_NAME" : "'+SQS_QUEUE_NAME+'",\n')
createMonitor.write('"MONITOR_BUCKET_NAME" : "'+AWS_BUCKET+'",\n')
createMonitor.write('"MONITOR_LOG_GROUP_NAME" : "'+LOG_GROUP_NAME+'",\n')
createMonitor.write('"MONITOR_START_TIME" : "'+ starttime+'"}\n')
createMonitor.close()
# Step 4: Create a log group for this app and date if one does not already exist
logclient=boto3.client('logs')
loggroupinfo=logclient.describe_log_groups(logGroupNamePrefix=LOG_GROUP_NAME)
groupnames=[d['logGroupName'] for d in loggroupinfo['logGroups']]
if LOG_GROUP_NAME not in groupnames:
logclient.create_log_group(logGroupName=LOG_GROUP_NAME)
logclient.put_retention_policy(logGroupName=LOG_GROUP_NAME, retentionInDays=60)
if LOG_GROUP_NAME+'_perInstance' not in groupnames:
logclient.create_log_group(logGroupName=LOG_GROUP_NAME+'_perInstance')
logclient.put_retention_policy(logGroupName=LOG_GROUP_NAME+'_perInstance', retentionInDays=60)
# Step 5: update the ECS service to be ready to inject docker containers in EC2 instances
print('Updating service')
cmd = 'aws ecs update-service --cluster ' + ECS_CLUSTER + \
' --service ' + APP_NAME + 'Service' + \
' --desired-count ' + str(CLUSTER_MACHINES*TASKS_PER_MACHINE)
update = getAWSJsonOutput(cmd)
print('Service updated.')
# Step 6: Monitor the creation of the instances until all are present
cmd = 'aws ec2 describe-spot-fleet-instances --spot-fleet-request-id ' + requestInfo['SpotFleetRequestId']
cmd_tbl='aws ec2 describe-spot-fleet-request-history --spot-fleet-request-id ' + requestInfo['SpotFleetRequestId'] + \
' --event-type error --start-time '+ datetime.date.isoformat(datetime.date.today())
status = getAWSJsonOutput(cmd)
while len(status['ActiveInstances']) < CLUSTER_MACHINES:
# First check to make sure there's not a problem
errorcheck = getAWSJsonOutput(cmd_tbl)
if len(errorcheck['HistoryRecords']) != 0:
print('Your spot fleet request is causing an error and is now being cancelled. Please check your configuration and try again')
for eacherror in errorcheck['HistoryRecords']:
print(eacherror['EventInformation']['EventSubType'] + ' : ' + eacherror['EventInformation']['EventDescription'])
cmd = 'aws ec2 cancel-spot-fleet-requests --spot-fleet-request-ids ' + requestInfo['SpotFleetRequestId'] + ' --terminate-instances'
result = getAWSJsonOutput(cmd)
return
# If everything seems good, just bide your time until you're ready to go
time.sleep(20)
print('.', end=' ')
status = getAWSJsonOutput(cmd)
print('Spot fleet successfully created. Your job should start in a few minutes.')
#################################
# SERVICE 3: MONITOR JOB
#################################
def monitor():
if len(sys.argv) < 3:
print('Use: run.py monitor spotFleetIdFile')
sys.exit()
monitorInfo = loadConfig(sys.argv[2])
monitorcluster=monitorInfo["MONITOR_ECS_CLUSTER"]
monitorapp=monitorInfo["MONITOR_APP_NAME"]
fleetId=monitorInfo["MONITOR_FLEET_ID"]
queueId=monitorInfo["MONITOR_QUEUE_NAME"]
# Step 1: Create job and count messages periodically
queue = JobQueue(name=queueId)
while queue.pendingLoad():
#Once an hour check for terminated machines and delete their alarms.
#This is slooooooow, which is why we don't just do it at the end
curtime=datetime.datetime.now().strftime('%H%M')
if curtime[-2:]=='00':
if curtime[:2]!='00':
killdeadAlarms(fleetId,monitorapp)
#Once every 10 minutes (but not on the hour, becasue this chokes at midnight,
#check if all jobs are in process, and if so scale the spot fleet size to match
#the number of jobs still in process WITHOUT force terminating them.
#This can help keep costs down if, for example, you start up 100+ machines to run a large job, and
#1-10 jobs with errors are keeping it rattling around for hours.
if curtime[-1:]=='9':
downscaleSpotFleet(queue, fleetId)
time.sleep(MONITOR_TIME)
# Step 2: When no messages are pending, stop service
# Reload the monitor info, because for long jobs new fleets may have been started, etc
monitorInfo = loadConfig(sys.argv[2])
monitorcluster=monitorInfo["MONITOR_ECS_CLUSTER"]
monitorapp=monitorInfo["MONITOR_APP_NAME"]
fleetId=monitorInfo["MONITOR_FLEET_ID"]
queueId=monitorInfo["MONITOR_QUEUE_NAME"]
bucketId=monitorInfo["MONITOR_BUCKET_NAME"]
loggroupId=monitorInfo["MONITOR_LOG_GROUP_NAME"]
starttime=monitorInfo["MONITOR_START_TIME"]
cmd = 'aws ecs update-service --cluster ' + monitorcluster + \
' --service ' + monitorapp + 'Service' + \
' --desired-count 0'
update = getAWSJsonOutput(cmd)
print('Service has been downscaled')
# Step3: Delete the alarms from active machines and machines that have died since the last sweep
cmd= 'aws ec2 describe-spot-fleet-instances --spot-fleet-request-id '+fleetId+" --output json"
result= getAWSJsonOutput(cmd)
for eachinstance in result['ActiveInstances']:
delalarm='aws cloudwatch delete-alarms --alarm-name '+monitorapp+'_'+eachinstance["InstanceId"]
subprocess.Popen(delalarm.split())
time.sleep(3)
killdeadAlarms(fleetId,monitorapp)
# Step 4: Read spot fleet id and terminate all EC2 instances
print('Shutting down spot fleet',fleetId)
cmd = 'aws ec2 cancel-spot-fleet-requests --spot-fleet-request-ids '+ fleetId +' --terminate-instances'
result = getAWSJsonOutput(cmd)
print('Job done.')
# Step 5. Release other resources
# Remove SQS queue, ECS Task Definition, ECS Service
ECS_TASK_NAME = monitorapp + 'Task'
ECS_SERVICE_NAME = monitorapp + 'Service'
print('Deleting existing queue.')
removequeue(queueId)
print('Deleting service')
cmd='aws ecs delete-service --cluster '+monitorcluster+' --service '+ECS_SERVICE_NAME
result=getAWSJsonOutput(cmd)
print('De-registering task')
deregistertask(ECS_TASK_NAME)
print("Removing cluster if it's not the default and not otherwise in use")
removeClusterIfUnused(monitorcluster)
#Step 6: Export the logs to S3
cmd = 'aws logs create-export-task --task-name "'+loggroupId+'" --log-group-name '+loggroupId+ \
' --from '+starttime+' --to '+'%d' %(time.time()*1000)+' --destination '+bucketId+' --destination-prefix exportedlogs/'+loggroupId
result =getAWSJsonOutput(cmd)
print('Log transfer 1 to S3 initiated')
seeIfLogExportIsDone(result['taskId'])
cmd = 'aws logs create-export-task --task-name "'+loggroupId+'_perInstance" --log-group-name '+loggroupId+'_perInstance '+ \
'--from '+starttime+' --to '+'%d' %(time.time()*1000)+' --destination '+bucketId+' --destination-prefix exportedlogs/'+loggroupId
result =getAWSJsonOutput(cmd)
print('Log transfer 2 to S3 initiated')
seeIfLogExportIsDone(result['taskId'])
print('All export tasks done')
#################################
# MAIN USER INTERACTION
#################################
if __name__ == '__main__':
if len(sys.argv) < 2:
print('Use: run.py submitJob | startCluster | monitor')
sys.exit()
if sys.argv[1] == 'submitJob':
submitJob()
elif sys.argv[1] == 'startCluster':
startCluster()
elif sys.argv[1] == 'monitor':
monitor()