-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmilldeploy.py
965 lines (842 loc) · 32.5 KB
/
milldeploy.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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
import click
from git import Repo
import os
import boto3
import shutil
import datetime
class QueueNames():
STORAGE_STATS = "storage-stats"
AUDIT = "audit"
BIT = "bit"
BIT_ERROR = "bit-error"
BIT_REPORT = "bit-report"
DUP_HIGH = "dup-high-priority"
DUP_LOW = "dup-low-priority"
DEAD_LETTER = "dead-letter"
ALL = [AUDIT, BIT, BIT_ERROR, BIT_REPORT, DUP_LOW,
DUP_HIGH, DEAD_LETTER, STORAGE_STATS]
def format(self, prefix, queue_name):
return "%s-%s" % (prefix, queue_name)
class AutoScaleGroupConfig:
def __init__(self, autoscale_group, launch_config, scale_up_policy,
scale_up_alarm, scale_down_policy, scale_down_alarm):
self.autoscale_group = autoscale_group
self.launch_config = launch_config
self.scale_up_policy = scale_up_policy
self.scale_up_alarm = scale_up_alarm
self.scale_down_policy = scale_down_policy
self.scale_down_alarm = scale_down_alarm
@click.command()
@click.option('--config_dir', required=True,help="Directory of mill " \
"configuration files")
@click.option('--aws_profile', required=True, help="The aws profile "
"configured in your "
"environment that you "
"would like to use." )
def cli(aws_profile, config_dir):
'''Deploys mill in a production environment.'''
click.echo('MillDeploy')
click.echo('AWS Profile: %s' % aws_profile)
click.echo('Config Directory: %s' % config_dir)
# validate existence of version in maven central
shutil.rmtree("mill-init", ignore_errors=True)
shutil.rmtree("output", ignore_errors=True)
# download mill-init
os.mkdir("mill-init")
repo = Repo.clone_from("https://github.com/duracloud/mill-init.git",
"mill-init")
repo.git.checkout('release-2.1.7')
# generate cloud init scripts
os.system('mill-init/generate-all-cloud-init.py -m '
'%s/mill-config.properties -e '
'%s/environment-account.properties -bx '
'%s/bit-exclusion-list.txt -bi '
'%s/bit-inclusion-list.txt -sx '
'%s/storage-stats-exclusion-list.txt -si '
'%s/storage-stats-inclusion-list.txt -o output' %
(config_dir,
config_dir,
config_dir,
config_dir,
config_dir,
config_dir))
session = boto3.Session(profile_name=aws_profile)
props = read_properties_files_into_dict(
'%s/environment-account.properties' %
config_dir)
jar_version = props["jarVersion"]
key_name = props["keyName"]
image_id = props["amiId"]
sns_client = session.client('sns')
ec2_client = session.client('ec2')
subnet_ids = get_subnet_ids_as_string(ec2_client)
availability_zones = get_subnet_availability_zones(ec2_client);
security_group = get_security_group_id(ec2_client)
env_prefix = props["instancePrefix"]
iam_instance_profile=props["iamInstanceProfile"]
click.echo('Mill Version: %s' % jar_version)
# create queues
sqs_client = session.client('sqs')
put_sqs_queues(sqs_client, env_prefix)
d = datetime.datetime.utcnow()
time = d.strftime("%Y-%m-%d-%H%M%S")
base_launch_config = dict(
ImageId=image_id,
IamInstanceProfile=iam_instance_profile,
SecurityGroups=[security_group],
KeyName=key_name)
groups = []
groups.append(create_sentinel_config(jar_version,
time,
subnet_ids,
availability_zones,
base_launch_config))
groups.append(create_storage_stats_worker_config(jar_version,
time,
subnet_ids,
availability_zones,
env_prefix,
base_launch_config))
groups.append(create_audit_worker_config(jar_version,
time,
subnet_ids,
availability_zones,
env_prefix,
base_launch_config))
groups.append(create_low_priority_dup_worker_config(jar_version,
time,
subnet_ids,
availability_zones,
env_prefix,
base_launch_config))
groups.append(create_high_priority_dup_worker_config(jar_version,
time,
subnet_ids,
availability_zones,
env_prefix,
base_launch_config))
groups.append(create_bit_worker_config(jar_version,
time,
subnet_ids,
availability_zones,
env_prefix,
base_launch_config))
groups.append(create_bit_report_worker_config(jar_version,
time,
subnet_ids,
availability_zones,
env_prefix,
base_launch_config))
# create autoscale and cloudwatch clients
autoscale_client = session.client('autoscaling')
cloudwatch_client = session.client('cloudwatch')
# for each auotscale group that should exist
for i in groups:
# create a launch config
launch_config = i.launch_config
response = create_launch_config(autoscale_client, launch_config)
# if autoscale group already exists
asg = i.autoscale_group
if not autoscale_exists(autoscale_client, asg):
# create an autoscale group with launch config
create_autoscale_group(autoscale_client, asg, launch_config)
else:
#update autoscale group with new launch config
update_existing_autoscale_group(autoscale_client, asg,
launch_config)
# scale down
put_scaling_policy(autoscale_client,
cloudwatch_client,
i.scale_down_policy,
i.scale_down_alarm)
# scale up
put_scaling_policy(autoscale_client,
cloudwatch_client,
i.scale_up_policy,
i.scale_up_alarm)
setup_autoscale_notifications(sns_client, autoscale_client,asg["AutoScalingGroupName"])
def get_security_group_id(ec2_client):
response = ec2_client.describe_security_groups(
Filters=[
{
'Name': 'group-name',
'Values': [
'mill-vpc',
]
},
],
)
check_response(response)
group_id = response["SecurityGroups"][0]["GroupId"]
click.echo("security group id found: %s" % group_id)
return group_id
def get_subnets(ec2_client):
response = ec2_client.describe_vpcs(Filters=[
{
'Name': 'tag-value',
'Values': [
'duracloud',
]
},
],
)
check_response(response)
vpcId = response["Vpcs"][0]["VpcId"]
click.echo("retrieved vpc: %s" % vpcId)
response = ec2_client.describe_subnets()
check_response(response)
subnets = response["Subnets"]
vpc_subnets = []
for subnet in subnets:
if subnet["VpcId"] == vpcId:
vpc_subnets.append(subnet)
return vpc_subnets
def get_subnet_availability_zones(ec2_client):
av_zones = []
subnets = get_subnets(ec2_client)
for subnet in subnets:
av_zone = subnet["AvailabilityZone"]
if av_zones not in av_zones:
av_zones.append(av_zone)
return av_zones
def get_subnet_ids_as_string(ec2_client):
subnet_ids = []
subnets = get_subnets(ec2_client)
for subnet in subnets:
subnet_ids.append(subnet["SubnetId"])
click.echo("retrieved subnet ids: %s" % subnet_ids)
return ",".join(subnet_ids)
def setup_autoscale_notifications(sns_client, autoscale_client,
autoscale_group_name):
topic_arn = sns_client.create_topic(Name='mill-notification')['TopicArn']
response = autoscale_client.put_notification_configuration(
AutoScalingGroupName=autoscale_group_name,
TopicARN=topic_arn,
NotificationTypes=[
'autoscaling:EC2_INSTANCE_LAUNCH',
'autoscaling:EC2_INSTANCE_TERMINATE',
'autoscaling:EC2_INSTANCE_LAUNCH_ERROR',
'autoscaling:EC2_INSTANCE_TERMINATE_ERROR',
])
check_response(response)
click.echo("configured notifications on topic %s for %s" % (topic_arn,
autoscale_group_name))
def read_properties_files_into_dict(path):
myprops = {}
with open(path, 'r') as f:
for line in f:
line = line.rstrip() #removes trailing whitespace and '\n' chars
if "=" not in line: continue #skips blanks and comments w/o =
if line.startswith("#"): continue #skips comments which contain =
k, v = line.split("=", 1)
myprops[k] = v
return myprops
def read_file_as_string(path):
return open(path, 'r').read()
def autoscale_exists(client, asg):
click.echo("auto scaling groups: ")
groups = client.describe_auto_scaling_groups()
#click.echo("keys: %s" % groups['AutoScalingGroups'])
autoscalingGroups = groups['AutoScalingGroups']
for group in autoscalingGroups:
group_name = group["AutoScalingGroupName"]
if group_name == asg['AutoScalingGroupName']:
click.echo("%s already exists." % group_name)
return True
return False
def create_autoscale_group(client, asg, launch_config):
click.echo(("creating auto scale group %s and associating it with %s" %
(asg, get_name(launch_config))))
response = client.create_auto_scaling_group(**asg)
check_response(response)
click.echo("created autoscale config: %s" % asg["AutoScalingGroupName"])
return
def update_existing_autoscale_group(client, asg, launch_config):
name = get_name(launch_config)
click.echo(("updating existing auto scale group %s and linking it with "
"%s" %
(asg, name)))
response = client.update_auto_scaling_group(**asg)
check_response(response)
click.echo("updated autoscale config: %s" % asg)
def get_name(launch_config):
return launch_config["LaunchConfigurationName"]
def check_response(response):
responseCode = response['ResponseMetadata']['HTTPStatusCode']
click.echo("responseCode = %s" % responseCode)
if responseCode < 200 and responseCode < 300:
raise(RuntimeError("failed to create launch config; response=%s" % (response)))
click.echo("response = %s" % response)
def put_sqs_queues(sqs_client, env_prefix):
queue_names = QueueNames.ALL
for queue_name in queue_names:
#format name
qname = QueueNames().format(env_prefix, queue_name)
click.echo("creating queue %s" % qname)
#create queue
response = sqs_client.create_queue(
QueueName=qname,
Attributes={
'VisibilityTimeout': '1200',
'ReceiveMessageWaitTimeSeconds': '0',
'MessageRetentionPeriod': '1209600'
}
)
#verify result
check_response(response)
click.echo("created queue %s" % qname)
def create_launch_config(client, launch_config):
name = get_name(launch_config)
click.echo("creating launch config: %s" % name)
response = client.create_launch_configuration(**launch_config)
check_response(response)
click.echo("created launch config %s" % name)
return launch_config
def put_scaling_policy(auto_scaling_client,
cloudwatch_client,
scaling_policy,
scaling_alarm):
if scaling_policy is None:
return
click.echo("put scaling policy: %s" % scaling_policy)
response = auto_scaling_client.put_scaling_policy(**scaling_policy)
check_response(response)
policy_arn = response["PolicyARN"]
click.echo("successfully put scaling policy with PolicyArn: %s" % policy_arn)
scaling_alarm["AlarmActions"]=[policy_arn]
cloudwatch_client.put_metric_alarm(**scaling_alarm)
click.echo("successfully put metric alarm %s" % scaling_alarm)
def create_storage_stats_worker_config(jar_version, time,
subnet_id,
availability_zones,
env_prefix, base_launch_config):
# storage stats worker config
launch_config = dict(
LaunchConfigurationName=("storage stats worker %s %s" % (jar_version,
time)),
InstanceType="m5.large",
SpotPrice="0.08",
UserData=read_file_as_string('output/cloud-init-storage-stats-worker.txt'))
launch_config.update(base_launch_config)
scaling_group_name = 'Storage Stats Worker'
asg = dict(
AutoScalingGroupName=scaling_group_name,
LaunchConfigurationName=get_name(launch_config),
MinSize=0,
MaxSize=1,
AvailabilityZones=availability_zones,
VPCZoneIdentifier=subnet_id)
scale_up_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Up',
PolicyType='SimpleScaling',
Cooldown=300,
ScalingAdjustment=1,
AdjustmentType='ChangeInCapacity')
scale_down_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Down',
PolicyType='SimpleScaling',
Cooldown=300,
ScalingAdjustment=-1,
AdjustmentType='ChangeInCapacity')
scale_up_alarm = dict(
AlarmName='non-empty-storage-stats-queue',
AlarmDescription='storage stats queue is not empty',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.STORAGE_STATS)
},
],
Period=60,
Threshold=0,
EvaluationPeriods=30,
ComparisonOperator='GreaterThanThreshold'
)
scale_down_alarm = dict(
AlarmName='empty-storage-stats-queue',
AlarmDescription='storage stats are empty',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.STORAGE_STATS)
},
],
Period=300,
Threshold=0,
EvaluationPeriods=6,
ComparisonOperator='LessThanOrEqualToThreshold'
)
return AutoScaleGroupConfig(asg,
launch_config,
scale_up_policy,
scale_up_alarm,
scale_down_policy,
scale_down_alarm)
def create_audit_worker_config(jar_version, time,
subnet_id,
availability_zones,
env_prefix, base_launch_config):
# storage stats worker config
launch_config = dict(
LaunchConfigurationName=("audit worker %s %s" % (jar_version,
time)),
InstanceType="m5.large",
SpotPrice="0.08",
UserData=read_file_as_string('output/cloud-init-audit-worker.txt'),
BlockDeviceMappings=[
{
'DeviceName': '/dev/sda1',
'Ebs': {
'VolumeSize': 60,
'VolumeType': 'gp2',
}
}])
launch_config.update(base_launch_config)
scaling_group_name = 'Audit Worker'
asg = dict(
AutoScalingGroupName=scaling_group_name,
LaunchConfigurationName=get_name(launch_config),
MinSize=1,
MaxSize=10,
AvailabilityZones=availability_zones,
VPCZoneIdentifier=subnet_id)
scale_up_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Up',
PolicyType='SimpleScaling',
Cooldown=900,
ScalingAdjustment=1,
AdjustmentType='ChangeInCapacity')
scale_down_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Down',
PolicyType='SimpleScaling',
Cooldown=900,
ScalingAdjustment=-1,
AdjustmentType='ChangeInCapacity')
scale_up_alarm = dict(
AlarmName='large-audit-queue',
AlarmDescription='large audit queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.AUDIT)
},
],
Period=300,
Threshold=1000,
EvaluationPeriods=2,
ComparisonOperator='GreaterThanThreshold'
)
scale_down_alarm = dict(
AlarmName='small-audit-queue',
AlarmDescription='small audit queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.AUDIT)
},
],
Period=300,
Threshold=500,
EvaluationPeriods=4,
ComparisonOperator='LessThanOrEqualToThreshold'
)
return AutoScaleGroupConfig(asg,
launch_config,
scale_up_policy,
scale_up_alarm,
scale_down_policy,
scale_down_alarm)
def create_high_priority_dup_worker_config(jar_version, time,
subnet_ids,
availability_zones,
env_prefix, base_launch_config):
# storage stats worker config
launch_config = dict(
LaunchConfigurationName=("high priority dup worker %s %s" % (
jar_version,
time)),
InstanceType="m5.large",
SpotPrice="0.08",
UserData=read_file_as_string(
'output/cloud-init-dup-worker.txt'),
BlockDeviceMappings=[
{
'DeviceName': '/dev/sda1',
'Ebs': {
'VolumeSize': 60,
'VolumeType': 'gp2',
}
},
]
)
launch_config.update(base_launch_config)
scaling_group_name = 'High Priority Dup Worker'
asg = dict(
AutoScalingGroupName=scaling_group_name,
LaunchConfigurationName=get_name(launch_config),
MinSize=0,
MaxSize=10,
AvailabilityZones=availability_zones,
VPCZoneIdentifier=subnet_ids)
scale_up_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Up',
PolicyType='SimpleScaling',
Cooldown=300,
ScalingAdjustment=1,
AdjustmentType='ChangeInCapacity')
scale_down_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Down',
PolicyType='SimpleScaling',
Cooldown=900,
ScalingAdjustment=-1,
AdjustmentType='ChangeInCapacity')
scale_up_alarm = dict(
AlarmName='large-high-priority-dup-queue',
AlarmDescription='large high priority dup queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.DUP_HIGH)
},
],
Period=300,
Unit='Seconds',
Threshold=500,
EvaluationPeriods=2,
ComparisonOperator='GreaterThanThreshold'
)
scale_down_alarm = dict(
AlarmName='small-high-priority-dup-queue',
AlarmDescription='small high priority dup queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.DUP_HIGH)
},
],
Period=300,
Threshold=100,
EvaluationPeriods=4,
ComparisonOperator='LessThanOrEqualToThreshold'
)
return AutoScaleGroupConfig(asg,
launch_config,
scale_up_policy,
scale_up_alarm,
scale_down_policy,
scale_down_alarm)
def create_low_priority_dup_worker_config(jar_version, time,
subnet_ids,
availability_zones,
env_prefix, base_launch_config):
# storage stats worker config
launch_config = dict(
LaunchConfigurationName=("low priority dup worker %s %s" % (
jar_version,
time)),
InstanceType="m5.large",
SpotPrice="0.08",
UserData=read_file_as_string(
'output/cloud-init-dup-worker.txt'),
BlockDeviceMappings=[
{
'DeviceName': '/dev/sda1',
'Ebs': {
'VolumeSize': 60,
'VolumeType': 'gp2',
}
},
]
)
launch_config.update(base_launch_config)
scaling_group_name = 'Low Priority Dup Worker'
asg = dict(
AutoScalingGroupName=scaling_group_name,
LaunchConfigurationName=get_name(launch_config),
MinSize=0,
MaxSize=10,
AvailabilityZones=availability_zones,
VPCZoneIdentifier=subnet_ids)
scale_up_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Up',
PolicyType='SimpleScaling',
Cooldown=300,
ScalingAdjustment=1,
AdjustmentType='ChangeInCapacity')
scale_down_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Down',
PolicyType='SimpleScaling',
Cooldown=900,
ScalingAdjustment=-1,
AdjustmentType='ChangeInCapacity')
scale_up_alarm = dict(
AlarmName='large-low-priority-dup-queue',
AlarmDescription='large high priority dup queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.DUP_LOW)
},
],
Period=300,
Threshold=5000,
EvaluationPeriods=2,
ComparisonOperator='GreaterThanOrEqualToThreshold'
)
scale_down_alarm = dict(
AlarmName='small-low-priority-dup-queue',
AlarmDescription='small low priority dup queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.DUP_LOW)
},
],
Period=300,
Threshold=100,
EvaluationPeriods=4,
ComparisonOperator='LessThanOrEqualToThreshold'
)
return AutoScaleGroupConfig(asg,
launch_config,
scale_up_policy,
scale_up_alarm,
scale_down_policy,
scale_down_alarm)
def create_bit_worker_config(jar_version, time,
subnet_ids,
availability_zones,
env_prefix, base_launch_config):
# storage stats worker config
launch_config = dict(
LaunchConfigurationName=("bit worker worker %s %s" % (
jar_version,
time)),
InstanceType="m5.large",
SpotPrice="0.08",
UserData=read_file_as_string(
'output/cloud-init-bit-worker.txt'),
BlockDeviceMappings=[
{
'DeviceName': '/dev/sda1',
'Ebs': {
'VolumeSize': 60,
'VolumeType': 'gp2',
}
},
]
)
launch_config.update(base_launch_config)
scaling_group_name = 'Bit Worker'
asg = dict(
AutoScalingGroupName=scaling_group_name,
LaunchConfigurationName=get_name(launch_config),
MinSize=0,
MaxSize=10,
AvailabilityZones=availability_zones,
VPCZoneIdentifier=subnet_ids)
scale_up_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Up',
PolicyType='SimpleScaling',
Cooldown=300,
ScalingAdjustment=1,
AdjustmentType='ChangeInCapacity')
scale_down_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Down',
PolicyType='SimpleScaling',
Cooldown=900,
ScalingAdjustment=-1,
AdjustmentType='ChangeInCapacity')
scale_up_alarm = dict(
AlarmName='non-empty-bit-queue',
AlarmDescription='non-empty-bit-queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.BIT)
},
],
Period=300,
Threshold=1,
EvaluationPeriods=2,
ComparisonOperator='GreaterThanOrEqualToThreshold'
)
scale_down_alarm = dict(
AlarmName='small-bit-queue',
AlarmDescription='small bit queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesNotVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.BIT)
},
],
Period=900,
Threshold=1,
EvaluationPeriods=4,
ComparisonOperator='LessThanThreshold'
)
return AutoScaleGroupConfig(asg,
launch_config,
scale_up_policy,
scale_up_alarm,
scale_down_policy,
scale_down_alarm)
def create_bit_report_worker_config(jar_version, time,
subnet_ids,
availability_zones,
env_prefix, base_launch_config):
# storage stats worker config
launch_config = dict(
LaunchConfigurationName=("bit report worker %s %s" % (
jar_version,
time)),
InstanceType="m5.large",
SpotPrice="0.08",
UserData=read_file_as_string(
'output/cloud-init-bit-report-worker.txt'),
BlockDeviceMappings=[
{
'DeviceName': '/dev/sda1',
'Ebs': {
'VolumeSize': 20,
'VolumeType': 'gp2',
}
},
]
)
launch_config.update(base_launch_config)
scaling_group_name = 'Bit Report Worker'
asg = dict(
AutoScalingGroupName=scaling_group_name,
LaunchConfigurationName=get_name(launch_config),
MinSize=0,
MaxSize=1,
AvailabilityZones=availability_zones,
VPCZoneIdentifier=subnet_ids)
scale_up_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Up',
PolicyType='SimpleScaling',
Cooldown=300,
ScalingAdjustment=1,
AdjustmentType='ChangeInCapacity')
scale_down_policy = dict(AutoScalingGroupName=scaling_group_name,
PolicyName='Scale Down',
PolicyType='SimpleScaling',
Cooldown=300,
ScalingAdjustment=-1,
AdjustmentType='ChangeInCapacity')
scale_up_alarm = dict(
AlarmName='non-empty-bit-report-queue',
AlarmDescription='non-empty-bit-report-queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.BIT_REPORT)
},
],
Period=300,
Threshold=1,
EvaluationPeriods=1,
ComparisonOperator='GreaterThanOrEqualToThreshold'
)
scale_down_alarm = dict(
AlarmName='bit-report-queue-empty',
AlarmDescription='empty bit report queue',
ActionsEnabled=True,
AlarmActions=[],
MetricName='ApproximateNumberOfMessagesVisible',
Namespace='AWS/SQS',
Statistic='Average',
Dimensions=[
{
'Name': 'QueueName',
'Value': QueueNames().format(env_prefix, QueueNames.BIT_REPORT)
},
],
Period=3600,
Threshold=0,
EvaluationPeriods=6,
ComparisonOperator='LessThanOrEqualToThreshold'
)
return AutoScaleGroupConfig(asg,
launch_config,
scale_up_policy,
scale_up_alarm,
scale_down_policy,
scale_down_alarm)
def create_sentinel_config(jar_version, time, subnet_ids,
availability_zones, base_launch_config):
# sentinel config
launch_config = dict(
LaunchConfigurationName=("sentinel %s %s" % (jar_version, time)),
InstanceType="t3.medium",
UserData=read_file_as_string('output/cloud-init-sentinel.txt'))
launch_config.update(base_launch_config)
asg = dict(
AutoScalingGroupName='Sentinel',
LaunchConfigurationName=get_name(launch_config),
MinSize=1,
MaxSize=1,
AvailabilityZones=availability_zones,
VPCZoneIdentifier=subnet_ids)
return AutoScaleGroupConfig(asg,
launch_config,
None,
None,
None,
None)