forked from aws-samples/aws-plugin-for-slurm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.py
305 lines (229 loc) · 12.8 KB
/
common.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
import json
import logging
import os
import re
import subprocess
import sys
import boto3
dir_path = os.path.dirname(os.path.realpath(__file__)) # Folder where resides the Python files
logger = None # Global variable for the logging.Logger object
config = None # Global variable for the config parameters
partitions = None # Global variable that stores partitions details
# Create and return a logging.Logger object
# - scriptname: name of the module
# - levelname: log level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
# - filename: location of the log file
def get_logger(scriptname, levelname, filename):
logger = logging.getLogger(scriptname)
# Update log level
log_levels = {
'DEBUG': logging.DEBUG,
'INFO': logging.INFO,
'WARNING': logging.WARNING,
'ERROR': logging.ERROR,
'CRITICAL': logging.CRITICAL
}
logger.setLevel(log_levels.get(levelname, logging.DEBUG))
# Create a console handler
sh = logging.StreamHandler()
sh_formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
sh.setFormatter(sh_formatter)
logger.addHandler(sh)
# Create a file handler
fh = logging.FileHandler(filename)
fh_formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
fh.setFormatter(fh_formatter)
logger.addHandler(fh)
return logger
# Validate the structure of the config.json file content
# - data: dict loaded from config.json
def validate_config(data):
assert 'LogLevel' in data, 'Missing "LogLevel" in root'
assert data['LogLevel'] in ('CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG'), 'root["LogLevel"] is an invalid value'
assert 'LogFileName' in data, 'Missing "LogFileName" in root'
assert 'SlurmBinPath' in data, 'Missing "SlurmBinPath" in root'
assert 'SlurmConf' in data, 'Missing "SlurmConf" in root'
slurm_conf = data['SlurmConf']
assert isinstance(slurm_conf, dict), 'root["SlurmConf"] is not a dict'
assert 'PrivateData' in slurm_conf, 'Missing "PrivateData" in root["SlurmConf"]'
assert 'ResumeProgram' in slurm_conf, 'Missing "ResumeProgram" in root["SlurmConf"]'
assert 'SuspendProgram' in slurm_conf, 'Missing "SuspendProgram" in root["SlurmConf"]'
assert 'ResumeRate' in slurm_conf, 'Missing "ResumeRate" in root["SlurmConf"]'
assert 'SuspendRate' in slurm_conf, 'Missing "SuspendRate" in root["SlurmConf"]'
assert 'ResumeTimeout' in slurm_conf, 'Missing "ResumeTimeout" in root["SlurmConf"]'
assert 'SuspendTime' in slurm_conf, 'Missing "SuspendTime" in root["SlurmConf"]'
assert 'TreeWidth' in slurm_conf, 'Missing "TreeWidth" in root["SlurmConf"]'
# Validate the structure of the partitions.json file content
# - data: dict loaded from partitions.json
def validate_partitions(data):
assert 'Partitions' in data, 'Missing "Partitions" in root'
assert isinstance(data['Partitions'], list), 'root["Partitions"] is not an array'
for i_partition, partition in enumerate(data['Partitions']):
assert 'PartitionName' in partition, 'Missing "PartitionName" in root["Partitions"][%s]' %i_partition
assert re.match('^[a-zA-Z0-9]+$', partition['PartitionName']), 'root["Partitions"][%s]["PartitionName"] does not match ^[a-zA-Z0-9]+$' %i_partition
assert 'NodeGroups' in partition, 'Missing "NodeGroups" in root["Partitions"][%s]' %i_partition
assert isinstance(partition['NodeGroups'], list), 'root["Partitions"][%s]["NodeGroups"] is not an array' %i_partition
for i_nodegroup, nodegroup in enumerate(partition['NodeGroups']):
assert 'NodeGroupName' in nodegroup, 'Missing "NodeGroupName" in root["Partitions"][%s]["NodeGroups"][%s]' %(i_partition, i_nodegroup)
assert re.match('^[a-zA-Z0-9]+$', nodegroup['NodeGroupName']), 'root["Partitions"][%s]["NodeGroups"][%s]["NodeGroupName"] does not match ^[a-zA-Z0-9]+$' %(i_partition, i_nodegroup)
assert 'MaxNodes' in nodegroup, 'Missing "MaxNodes" in root["Partitions"][%s]["NodeGroups"][%s]' %(i_partition, i_nodegroup)
assert isinstance(nodegroup['MaxNodes'], int), 'root["Partitions"][%s]["NodeGroups"][%s]["MaxNodes"] is not a number' %(i_partition, i_nodegroup)
assert 'Region' in nodegroup, 'Missing "Region" in root["Partitions"][%s]["NodeGroups"][%s]' %(i_partition, i_nodegroup)
assert 'SlurmSpecifications' in nodegroup, 'Missing "SlurmSpecifications" in root["Partitions"][%s]["NodeGroups"][%s]' %(i_partition, i_nodegroup)
assert isinstance(nodegroup['SlurmSpecifications'], dict), 'root["Partitions"][%s]["NodeGroups"][%s]["SlurmSpecifications"] is not a dict' %(i_partition, i_nodegroup)
assert 'PurchasingOption' in nodegroup, 'Missing "PurchasingOption" in root["Partitions"][%s]["NodeGroups"][%s]' %(i_partition, i_nodegroup)
assert nodegroup['PurchasingOption'] in ('spot', 'on-demand'), 'root["Partitions"][%s]["NodeGroups"][%s]["PurchasingOption"] must be spot or on-demand' %(i_partition, i_nodegroup)
assert 'LaunchTemplateSpecification' in nodegroup, 'Missing "LaunchTemplateSpecification" in root["Partitions"][%s]["NodeGroups"][%s]' %(i_partition, i_nodegroup)
assert isinstance(nodegroup['LaunchTemplateSpecification'], dict), 'root["Partitions"][%s]["NodeGroups"][%s]["LaunchTemplateSpecification"] is not a dict' %(i_partition, i_nodegroup)
assert 'LaunchTemplateOverrides' in nodegroup, 'Missing "LaunchTemplateOverrides" in root["Partitions"][%s]["NodeGroups"][%s]' %(i_partition, i_nodegroup)
assert isinstance(nodegroup['LaunchTemplateOverrides'], list), 'root["Partitions"][%s]["NodeGroups"][%s]["LaunchTemplateOverrides"] is not a dict' %(i_partition, i_nodegroup)
assert 'SubnetIds' in nodegroup, 'Missing "SubnetIds" in root["Partitions"][%s]["NodeGroups"][%s]' %(i_partition, i_nodegroup)
assert isinstance(nodegroup['SubnetIds'], list), 'root["Partitions"][%s]["NodeGroups"][%s]["SubnetIds"] is not a dict' %(i_partition, i_nodegroup)
if 'PartitionOptions' in partition:
assert isinstance(partition['PartitionOptions'], dict), 'root["Partitions"][%s]["PartitionOptions"] is not a dict' %(i_partition)
# Create and return logger, config, and partitions variables
def get_common(scriptname):
global logger
global config
global partitions
# Load configuration parameters from ./config.json and merge with default values
try:
config_filename = '%s/config.json' %dir_path
with open(config_filename, 'r') as f:
config = json.load(f)
except Exception as e:
config = {'JsonLoadError': str(e)}
# Populate default values if unspecified
if not 'LogFileName' in config:
config['LogFileName'] = '%s/aws_plugin.log' %dir_path
if not 'LogLevel' in config:
config['LogLevel'] = 'DEBUG'
# Make sure that SlurmBinPath ends with a /
if 'SlurmBinPath' in config and not config['SlurmBinPath'].endswith('/'):
config['SlurmBinPath'] += '/'
# Create a logger
logger = get_logger(scriptname, config['LogLevel'], config['LogFileName'])
logger.debug('Config: %s' %json.dumps(config, indent=4))
# Validate the structure of config.json
if 'JsonLoadError' in config:
logger.critical('Failed to load %s - %s' %(config['LogFileName'], config['JsonLoadError']))
sys.exit(1)
try:
validate_config(config)
except Exception as e:
logger.critical('File config.json is invalid - %s' %e)
sys.exit(1)
# Load partitions details from ./partitions.json
partitions_filename = '%s/partitions.json' %dir_path
try:
with open(partitions_filename, 'r') as f:
partitions_json = json.load(f)
except Exception as e:
logger.critical('Failed to load %s - %s' %(partitions_filename, e))
sys.exit(1)
# Validate the structure of partitions.json
try:
validate_partitions(partitions_json)
except Exception as e:
logger.critical('File partition.json is invalid - %s' %e)
sys.exit(1)
finally:
partitions = partitions_json['Partitions']
logger.debug('Partitions: %s' %json.dumps(partitions_json, indent=4))
return logger, config, partitions
# Return the name of a node [partition_name]-[nodegroup_name][id]
# - partition: can either be a string, or a dict with dict['PartitionName'] = partition_name
# - nodegroup: can either be a string, or a dict with dict['NodeGroupName'] = nodegroup_name
# - id: optional id
def get_node_name(partition, nodegroup, node_id=''):
if isinstance(partition, dict):
partition_name = partition['PartitionName']
else:
partition_name = partition
if isinstance(nodegroup, dict):
nodegroup_name = nodegroup['NodeGroupName']
else:
nodegroup_name = nodegroup
if node_id == '':
return '%s-%s' %(partition_name, nodegroup_name)
else:
return '%s-%s-%s' %(partition_name, nodegroup_name, node_id)
# Return the name of a node [partition_name]-[nodegroup_name][id]
# - partition: can either be a string, or a dict with dict['PartitionName'] = partition_name
# - nodegroup: can either be a string, or a dict with dict['NodeGroupName'] = nodegroup_name
# - nb_nodes: optional number of nodes
def get_node_range(partition, nodegroup, nb_nodes=None):
if nb_nodes is None:
nb_nodes = nodegroup['MaxNodes']
if nb_nodes > 1:
return '%s-[0-%s]' %(get_node_name(partition, nodegroup), nb_nodes-1)
else:
return '%s-0' %(get_node_name(partition, nodegroup))
# Run scontrol and return output
# - command: name of the command such as scontrol
# - arguments: array
def run_scommand(command, arguments):
scommand_path = '%s%s' %(config['SlurmBinPath'], command)
cmd = [scommand_path] + arguments
logger.debug('Command %s: %s' %(command, ' '.join(cmd)))
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)
lines = proc.communicate()[0].splitlines()
return [line.decode() for line in lines]
# Use 'scontrol show hostnames' to expand the hostlist and return a list of node names
# - hostlist: argument passed to SuspendProgram or ResumeProgram
def expand_hostlist(hostlist):
try:
arguments = ['show', 'hostnames', hostlist]
return run_scommand('scontrol', arguments)
except Exception as e:
logger.critical('Failed to expand hostlist - %s' %e)
sys.exit(1)
# Take a list of node names in input and return a dict with result[partition_name][nodegroup_name] = list of node ids
def parse_node_names(node_names):
result = {}
for node_name in node_names:
# For each node: extract partition name, node group name and node id
pattern = '^([a-zA-Z0-9]+)-([a-zA-Z0-9]+)-([0-9]+)$'
match = re.match(pattern, node_name)
if match:
partition_name, nodegroup_name, node_id = match.groups()
# Add to result
if not partition_name in result:
result[partition_name] = {}
if not nodegroup_name in result[partition_name]:
result[partition_name][nodegroup_name] = []
result[partition_name][nodegroup_name].append(node_id)
return result
# Return a pointer in partitions to a specific partition and node group
def get_partition_nodegroup(partition_name, nodegroup_name):
for partition in partitions:
if partition['PartitionName'] == partition_name:
for nodegroup in partition['NodeGroups']:
if nodegroup['NodeGroupName'] == nodegroup_name:
return nodegroup
# Return None if it does not exist
return None
# Use 'scontrol update node' to update nodes
def update_node(node_name, parameters):
parameters_split = parameters.split(' ')
arguments = ['update', 'nodename=%s' %node_name] + parameters_split
run_scommand('scontrol', arguments)
# Call sinfo and return node status for a list of nodes
def get_node_state(hostlist):
try:
cmd = [scontrol_path, '-n', ','.join(hostlist), '-N', '-o', '"%N %t"']
return run_scommand('sinfo', arguments)
except Exception as e:
logger.critical('Failed to retrieve node state - %s' %e)
sys.exit(1)
# Return boto3 client
def get_ec2_client(nodegroup):
if 'ProfileName' in nodegroup:
try:
session = boto3.session.Session(region_name=nodegroup['Region'], profile_name=nodegroup['ProfileName'])
return session.client('ec2')
except Exception as e:
logger.critical('Failed to create a EC2 client - %s' %e)
sys.exit(1)
else:
return boto3.client('ec2', region_name=nodegroup['Region'])