-
Notifications
You must be signed in to change notification settings - Fork 2
/
ec2_launcher_fcgnn.py
1774 lines (1474 loc) · 56.8 KB
/
ec2_launcher_fcgnn.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
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import sys
import boto3
import time
from pssh.clients import ParallelSSHClient
def kill_process(
client_trainers, client_emb_server, client_oracle_cacher, private_ip_trainers
):
run_args_kill_trainers = [
{"cmd": "pkill -9 python"} for i in range(len(private_ip_trainers))
]
run_args_kill_oracle = [{"cmd": "pkill -9 python"}]
run_args_kill_emb_server = [{"cmd": "pkill -9 python"}]
kill_trainers = client_trainers.run_command(
"%(cmd)s", host_args=run_args_kill_trainers
)
kill_emb_server = client_emb_server.run_command(
"%(cmd)s", host_args=run_args_kill_emb_server
)
kill_oracle_cacher = client_oracle_cacher.run_command(
"%(cmd)s", host_args=run_args_kill_oracle
)
print("Launched python kill command")
time.sleep(60)
def other_data_args_emb_server(
private_ip_trainers, private_ip_oracle_cacher, emb_info_file
):
run_args_emb_server = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_embedding_server_other_datasets.sh {} {} {} {}".format(
1,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
emb_info_file,
)
}
]
return run_args_emb_server
def fcgnn_args_oracle_server(
private_ip_trainers,
private_ip_oracle_cacher,
csv_location,
emb_info_file,
batch_size,
):
run_args_oracle_cacher = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout add_fgcnn && bash run_oracle_server_other_datasets.sh {} {} {} {} {} {} {}".format(
0,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
len(private_ip_trainers),
csv_location,
emb_info_file,
batch_size,
)
}
]
return run_args_oracle_cacher
def fcgnn_args_oracle_server_no_cache_no_pref(
private_ip_trainers,
private_ip_oracle_cacher,
csv_location,
emb_info_file,
batch_size,
):
run_args_oracle_cacher = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout add_fgcnn && bash run_oracle_server_no_cache_no_prefetch_other_datasets.sh {} {} {} {} {} {} {}".format(
0,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
len(private_ip_trainers),
csv_location,
emb_info_file,
batch_size,
)
}
]
return run_args_oracle_cacher
def other_data_args_oracle_server(
private_ip_trainers, private_ip_oracle_cacher, csv_location, emb_info_file
):
run_args_oracle_cacher = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_oracle_server_other_datasets.sh {} {} {} {} {} {}".format(
0,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
len(private_ip_trainers),
csv_location,
emb_info_file,
)
}
]
return run_args_oracle_cacher
def other_data_args_oracle_server_no_cache_no_prefetch(
private_ip_trainers, private_ip_oracle_cacher, csv_location, emb_info_file
):
run_args_oracle_cacher = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_oracle_server_no_cache_no_prefetch_other_datasets.sh {} {} {} {} {} {}".format(
0,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
len(private_ip_trainers),
csv_location,
emb_info_file,
)
}
]
return run_args_oracle_cacher
def data_download_avazu_single_machine_fae():
bucket_name = "recommendation-data-bagpipe"
run_download = [
{
"cmd": f"aws s3 cp s3://{bucket_name}/avazu_data ./ && aws s3 cp s3://{bucket_name}/avazu_emb_info ./ && aws s3 cp s3://{bucket_name}/avazu_normal.npz ./ && aws s3 cp s3://{bucket_name}/avazu_hot.npz ./ && aws s3 cp s3://{bucket_name}/avazu_hot_emb_dict.npz ./ "
}
]
return run_download
def data_download_avazu_trainer_machine_fae(private_ip_trainers):
bucket_name = "recommendation-data-bagpipe"
run_download = [
{
"cmd": f"aws s3 cp s3://{bucket_name}/avazu_data ./ && aws s3 cp s3://{bucket_name}/avazu_emb_info ./ && aws s3 cp s3://{bucket_name}/avazu_normal.npz ./ && aws s3 cp s3://{bucket_name}/avazu_hot.npz ./ && aws s3 cp s3://{bucket_name}/avazu_hot_emb_dict.npz ./ "
}
for i in range(len(private_ip_trainers))
]
return run_download
def data_download_avazu_single_machine():
run_download = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/avazu_data ./ && aws s3 cp s3://recommendation-data-bagpipe/avazu_emb_info ./"
}
]
return run_download
def data_download_avazu_trainer_machine(private_ip_trainers):
run_download = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/avazu_data ./ && aws s3 cp s3://recommendation-data-bagpipe/avazu_emb_info ./"
}
for i in range(len(private_ip_trainers))
]
return run_download
def data_download_movie_lens_single_machine():
run_download = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/movielen_data ./ && aws s3 cp s3://recommendation-data-bagpipe/movielen_emb_info ./"
}
]
return run_download
def data_download_movie_lens_trainer_machine(private_ip_trainers):
run_download = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/movielen_data ./ && aws s3 cp s3://recommendation-data-bagpipe/movielen_emb_info ./"
}
for i in range(len(private_ip_trainers))
]
return run_download
def data_download_fcgnn(private_ip_trainers):
run_download = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/parsed_train.txt ./ && aws s3 cp s3://recommendation-data-bagpipe/emb_table_info.txt ./"
}
for i in range(len(private_ip_trainers))
]
return run_download
def data_download_fcgnn_single():
run_download = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/parsed_train.txt ./ && aws s3 cp s3://recommendation-data-bagpipe/emb_table_info.txt ./"
}
]
return run_download
def other_data_args_trainer(
private_ip_trainers,
private_ip_oracle_cacher,
log_file_name,
num_iters,
emb_info_file,
):
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout hide_cache_sync && bash run_trainers_other_datasets.sh {} {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
emb_info_file,
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def fcgnn_other_data_args_trainer_no_hide(
private_ip_trainers,
private_ip_oracle_cacher,
log_file_name,
num_iters,
emb_info_file,
):
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout add_fgcnn && bash run_trainers_fgcnn_no_hide.sh {} {} {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
emb_info_file,
"2-5",
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def fcgnn_other_data_args_trainer_no_cache_no_pref(
private_ip_trainers,
private_ip_oracle_cacher,
log_file_name,
num_iters,
emb_info_file,
):
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout add_fgcnn && bash run_trainers_fgcnn_no_cache_no_prefetch.sh {} {} {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
emb_info_file,
"2-5",
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def fcgnn_other_data_args_trainer(
private_ip_trainers,
private_ip_oracle_cacher,
log_file_name,
num_iters,
emb_info_file,
):
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout add_fgcnn && bash run_trainers_fgcnn.sh {} {} {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
emb_info_file,
"2-5",
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def other_data_args_trainer_no_hide_cache_sync(
private_ip_trainers,
private_ip_oracle_cacher,
log_file_name,
num_iters,
emb_info_file,
):
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_trainers_other_datasets.sh {} {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
emb_info_file,
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def other_data_args_trainer_no_cache_no_prefetch(
private_ip_trainers,
private_ip_oracle_cacher,
log_file_name,
num_iters,
emb_info_file,
):
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_trainers_no_cache_no_prefetch_other_datasets.sh {} {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
emb_info_file,
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def return_args_trainers_bagpipe(
private_ip_trainers, private_ip_oracle_cacher, log_file_name, num_iters
):
"""
Arguments for trainers
"""
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_trainers.sh {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def return_args_trainers_bagpipe_no_cache_no_prefetch(
private_ip_trainers, private_ip_oracle_cacher, log_file_name, num_iters
):
"""
Arguments for trainers
"""
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_trainers_no_cache_no_prefetch.sh {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def return_args_trainers_bagpipe_fae(
private_ip_trainers, private_ip_oracle_cacher, log_file_name, num_iters
):
"""
Arguments for trainers
"""
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout fae && bash run_fae_trainer.sh {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def fcgnn_return_args_emb_server(
private_ip_trainers, private_ip_oracle_cacher, emb_info_file
):
"""
Return arguments for embedding server
"""
run_args_emb_server = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout add_fgcnn && bash run_embedding_server_no_hide.sh {} {} {} {}".format(
1,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
emb_info_file,
)
}
]
return run_args_emb_server
def return_args_emb_server(
private_ip_trainers, private_ip_oracle_cacher, emb_info_file
):
"""
Return arguments for embedding server
"""
run_args_emb_server = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_embedding_server.sh {} {} {} {}".format(
1,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
emb_info_file,
)
}
]
return run_args_emb_server
def return_args_emb_server_fae(private_ip_trainers, private_ip_oracle_cacher):
"""
Return arguments for embedding server
"""
run_args_emb_server = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout fae && bash run_embedding_server.sh {} {} {}".format(
1, (len(private_ip_trainers) + 2), private_ip_oracle_cacher
)
}
]
return run_args_emb_server
def return_args_oracle_server(
private_ip_trainers,
private_ip_oracle_cacher,
):
"""
Return arguments for oracle server
"""
run_args_oracle_cacher = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_oracle_server.sh {} {} {} {}".format(
0,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
len(private_ip_trainers),
)
}
]
return run_args_oracle_cacher
def return_args_oracle_server_no_cache_no_prefetch(
private_ip_trainers,
private_ip_oracle_cacher,
):
"""
Return arguments for oracle server
"""
run_args_oracle_cacher = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && bash run_oracle_server_no_cache_no_prefetch.sh {} {} {} {}".format(
0,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
len(private_ip_trainers),
)
}
]
return run_args_oracle_cacher
def return_args_oracle_server_fae(
private_ip_trainers,
private_ip_oracle_cacher,
):
"""
Return arguments for oracle server
"""
run_args_oracle_cacher = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout fae && bash run_fae_oracle_cacher.sh {} {} {} {}".format(
0,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
len(private_ip_trainers),
)
}
]
return run_args_oracle_cacher
def return_args_original_dlrm_training(private_ip_trainers, log_file_name, stop_iter):
"""
Returns arguments for original DLRM training
"""
run_args_distributed = [
{
"cmd": "rm -rf dlrm_original && git clone git@github.com:iidsample/dlrm_original.git && cd dlrm_original && bash run_dlrm.sh {} {} {} {} {}".format(
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
stop_iter,
)
}
for i in range(len(private_ip_trainers))
]
return run_args_distributed
def return_data_move_args_original(private_ip_trainers):
run_args_move_files = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/kaggle_criteo_info ./ && aws s3 cp s3://recommendation-data-bagpipe/kaggle_criteo_weekly.txt ./ && time wc -l /home/ubuntu/kaggle_criteo_weekly.txt"
}
for i in range(len(private_ip_trainers))
]
return run_args_move_files
def return_args_donwload_fae_kaggle_trainers(private_ip_trainers):
run_args_download_files = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/fae_hot_cold_bsize16384/hot_emb_dict.npz ./ && aws s3 cp s3://recommendation-data-bagpipe/fae_hot_cold_bsize16384/train_hot.npz ./ && aws s3 cp s3://recommendation-data-bagpipe/fae_hot_cold_bsize16384/train_normal.npz ./"
}
for i in range(len(private_ip_trainers))
]
return run_args_download_files
def return_args_donwload_fae_kaggle_oracle():
run_args_download_files = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/fae_hot_cold_bsize16384/hot_emb_dict.npz ./ && aws s3 cp s3://recommendation-data-bagpipe/fae_hot_cold_bsize16384/train_hot.npz ./ && aws s3 cp s3://recommendation-data-bagpipe/fae_hot_cold_bsize16384/train_normal.npz ./"
}
]
return run_args_download_files
def return_args_download_avazu(private_ip_trainers):
run_args_download_movielen = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/avazu_subsampled.npz ./ && aws s3 cp s3://recommendation-data-bagpipe/avazu_emb_info ./"
}
for i in range(len(private_ip_trainers))
]
return run_args_download_movielen
def return_args_download_movielen(private_ip_trainers):
run_args_download_movielen = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/movielen_train.npz ./ && aws s3 cp s3://recommendation-data-bagpipe/movielen_emb_info ./"
}
for i in range(len(private_ip_trainers))
]
return run_args_download_movielen
def return_args_original_dlrm_training_movielens(
private_ip_trainers, log_file_name, stop_iter
):
"""
Returns arguments for original DLRM training
"""
run_args_distributed = [
{
"cmd": "rm -rf dlrm_original && git clone git@github.com:iidsample/dlrm_original.git && cd dlrm_original && bash run_dlrm_other_datasets.sh {} {} {} {} {}".format(
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
stop_iter,
)
}
for i in range(len(private_ip_trainers))
]
return run_args_distributed
def launch_instances_on_demand(launch_cfg):
client = boto3.client("ec2", region_name=launch_cfg["region"])
ec2 = boto3.resource("ec2", region_name=launch_cfg["region"])
instance_lifecycle = launch_cfg["method"]
instance_count = launch_cfg["instance_count"]
if instance_lifecycle == "onDemand":
print("in")
response = client.run_instances(
MaxCount=launch_cfg["instance_count"],
MinCount=launch_cfg["instance_count"],
ImageId=launch_cfg["ami_id"],
InstanceType=launch_cfg["instance_type"],
KeyName=launch_cfg["key_name"],
EbsOptimized=True,
IamInstanceProfile={"Name": launch_cfg["iam_role"]},
# Placement={"AvailabilityZone": launch_cfg["az"]},
# Placement={"GroupName": launch_cfg["GroupName"]},
SecurityGroups=launch_cfg["security_group"],
)
else:
print("Not a valid launch method")
sys.exit()
instance_ids = list()
for request in response["Instances"]:
instance_ids.append(request["InstanceId"])
time.sleep(5)
loop = True
while loop:
loop = False
print("Instance ids {}".format(instance_ids))
response = client.describe_instance_status(
InstanceIds=instance_ids, IncludeAllInstances=True
)
# print("Response {}".format(response))
for status in response["InstanceStatuses"]:
print("Status {}".format(status["InstanceState"]["Name"]))
if status["InstanceState"]["Name"] != "running":
loop = True
time.sleep(5)
print("All instances are running ...")
instance_collection = ec2.instances.filter(
Filters=[{"Name": "instance-id", "Values": instance_ids}]
)
print("Instance collection {}".format(instance_collection))
private_ip = []
public_ip = []
for instance in instance_collection:
print(instance.private_ip_address)
private_ip.append(instance.private_ip_address)
print(instance.public_ip_address)
public_ip.append(instance.public_ip_address)
return (private_ip, public_ip, instance_ids)
def launch_instances_spot(launch_cfg):
client = boto3.client("ec2", region_name=launch_cfg["region"])
ec2 = boto3.resource("ec2", region_name=launch_cfg["region"])
instance_lifecycle = launch_cfg["method"]
instance_count = launch_cfg["instance_count"]
launch_dict = {
"KeyName": launch_cfg["key_name"],
"ImageId": launch_cfg["ami_id"],
"InstanceType": launch_cfg["instance_type"],
"Placement": {"AvailabilityZone": launch_cfg["az"]},
# "Placement": {"GroupName": launch_cfg["GroupName"]},
"SecurityGroups": ["pytorch-distributed"],
"IamInstanceProfile": {"Name": launch_cfg["iam_role"]},
}
if instance_lifecycle == "spot":
response = client.request_spot_instances(
InstanceCount=launch_cfg["instance_count"],
LaunchSpecification=launch_dict,
SpotPrice=launch_cfg["spot_price"],
)
print(response)
else:
print("Spot is not being used")
sys.exit()
request_ids = list()
for request in response["SpotInstanceRequests"]:
request_ids.append(request["SpotInstanceRequestId"])
fulfilled_instances = list()
loop = True
print("Waiting for requests to fulfill")
time.sleep(5)
while loop:
request = client.describe_spot_instance_requests(
SpotInstanceRequestIds=request_ids
)
for req in request["SpotInstanceRequests"]:
print(req)
if req["State"] in ["closed", "cancelled", "failed"]:
print("{}:{}".format(req["SpotInstanceRequestId"], req["State"]))
loop = False
break
if "InstanceId" in req and req["InstanceId"]:
fulfilled_instances.append(req["InstanceId"])
print(req["InstanceId"] + "running...")
if len(fulfilled_instances) == launch_cfg["instance_count"]:
print("All requested instances are fulfilled")
break
time.sleep(5)
if loop == False:
print("Unable to fulfill all requested instance ..")
sys.exit()
while loop:
loop = False
response = client.describe_instance_status(InstanceIds=fulfilled_instances)
for status in response["InstanceStatuses"]:
if status["InstanceType"]["Name"] != "running":
loop = True
print("All instances are running ..")
# getting host keys
instance_collection = ec2.instances.filter(
Filters=[{"Name": "instance-id", "Values": fulfilled_instances}]
)
private_ip = []
public_ip = []
for instance in instance_collection:
print(instance.private_ip_address)
private_ip.append(instance.private_ip_address)
print(instance.public_ip_address)
public_ip.append(instance.public_ip_address)
return (private_ip, public_ip, fulfilled_instances)
def terminate_instances(instance_id, launch_cfg):
print("Terminating instances ....")
client = boto3.client("ec2", region_name=launch_cfg["region"])
ec2 = boto3.resource("ec2", region_name=launch_cfg["region"])
instance_collection = ec2.instances.filter(
Filters=[{"Name": "instance-id", "Values": instance_id}]
)
for instance in instance_collection:
instance.terminate()
print("Bye Bye instances ...")
def get_az(instance_id, launch_cfg):
client = boto3.client("ec2", region_name=launch_cfg["region"])
ec2 = boto3.resource("ec2", region_name=launch_cfg["region"])
response = client.describe_instance_status(
InstanceIds=[instance_id], IncludeAllInstances=True
)
for status in response["InstanceStatuses"]:
az_val = status["AvailabilityZone"]
return az_val
def other_dataset_args_trainers_bagpipe_fae(
private_ip_trainers,
private_ip_oracle_cacher,
log_file_name,
num_iters,
emb_info_file,
hot_emb_dict,
):
"""
Arguments for trainers
"""
run_args_trainers = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout fae && bash run_fae_trainer_other_datasets.sh {} {} {} {} {} {} {} {} {} {}".format(
i + 2,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
i,
len(private_ip_trainers),
private_ip_trainers[0],
log_file_name,
num_iters,
emb_info_file,
hot_emb_dict,
)
}
for i in range(len(private_ip_trainers))
]
return run_args_trainers
def other_dataset_args_emb_server_fae(
private_ip_trainers, private_ip_oracle_cacher, emb_info_file
):
"""
Return arguments for embedding server
"""
run_args_emb_server = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout fae && bash run_embedding_server.sh {} {} {}".format(
1, (len(private_ip_trainers) + 2), private_ip_oracle_cacher
)
}
]
return run_args_emb_server
def other_data_args_oracle_server_fae(
private_ip_trainers,
private_ip_oracle_cacher,
processed_csv,
train_normal_file,
train_hot_file,
train_hot_dict,
emb_info_file,
):
"""
Return arguments for oracle server
"""
run_args_oracle_cacher = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout fae && bash run_fae_oracle_cacher_other_datasets.sh {} {} {} {} {} {} {} {} {}".format(
0,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
len(private_ip_trainers),
processed_csv,
train_normal_file,
train_hot_file,
train_hot_dict,
emb_info_file,
)
}
]
return run_args_oracle_cacher
def other_data_args_emb_server_fae(
private_ip_trainers, private_ip_oracle_cacher, emb_info_file
):
"""
Return arguments for embedding server
"""
run_args_emb_server = [
{
"cmd": "rm -rf bagpipe && git clone git@github.com:iidsample/bagpipe.git && cd bagpipe && git checkout fae && bash run_embedding_server_other_datasets.sh {} {} {} {}".format(
1,
(len(private_ip_trainers) + 2),
private_ip_oracle_cacher,
emb_info_file,
)
}
]
return run_args_emb_server
run_args_ebs_warmnup = [
{
"cmd": "aws s3 cp s3://recommendation-data-bagpipe/kaggle_criteo_info ./ && aws s3 cp s3://recommendation-data-bagpipe/kaggle_criteo_weekly.txt ./ && time wc -l /home/ubuntu/kaggle_criteo_weekly.txt"
}
]
def run_large_scale():
launch_cfg = {
"name": "recommendation-setup",
"key_name": "saurabh_oregon_pc",
"key_path": "/home/saurabh/credentials/cs-shivaram/saurabh_oregon_pc.pem",
"region": "us-west-2",
"method": "onDemand", # onDemand
"az": "us-west-2c",
"GroupName": "distributed-training",
# "ami_id": "ami-0f07487e2b2761b0a", # nv old
# "ami_id": "ami-04e4121bc8f056792", # oregon old
"ami_id": "ami-00cfdc3a2d9df3424",
"ssh_username": "ubuntu",
"iam_role": "ec2-s3-final",
"instance_type": "p3.2xlarge",
# "instance_type": "t2.medium",
"instance_count": 2,
"spot_price": "4.5",
"security_group": ["pytorch-distributed"],
}
# launching trainers
launch_cfg["instance_type"] = "p3.2xlarge"
launch_cfg["method"] = "onDemand"
launch_cfg["instance_count"] = 8
start_time = time.time()
(
private_ip_trainers,
public_ip_trainers,
instance_ids_trainers,
) = launch_instances_on_demand(launch_cfg)
print("Time to launch {}".format(time.time() - start_time))
# launching oracle cacher
p3_az = get_az(instance_ids_trainers[0], launch_cfg)