forked from hysds/hysds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchived_history.txt
3690 lines (2471 loc) · 110 KB
/
archived_history.txt
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
commit 880664dbd9a0ca1128d3c1d8d794191ab1bd7950
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Oct 5 15:24:12 2017 +0000
expand env vars in docker mappings
commit 42ff0ff0a5cf952fe0a28e933bfcf3348cc15c52
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Sep 20 00:25:52 2017 +0000
override celeryconfig.py and datasets.json using environment vars
HYSDS_CELERY_CFG and HYSDS_DATASETS_CFG, respectively.
commit 5b652c30b3e73da69e0d8ea45bb11eef09c239eb
Merge: 2542650 f609dcc
Author: Gerald Manipon <gmanipon@jpl.nasa.gov>
Date: Tue Sep 19 17:22:07 2017 -0700
Merge pull request #15 from hysds-org/mstarch
mstarch: preventing collision with datasets.json or celeryconfig.py
commit f609dccfcdda4c2c0092460c49fbb5bf47822525
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Sep 19 17:04:39 2017 -0700
mstarch: preventing collision with datasets.json or celeryconfig.py in case of manual override
commit 254265030afc403c929e5acd43263d78570c2257
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Aug 31 16:03:09 2017 +0000
croak with explicit error on docker load failures
commit 6555b05b838cc1074c595d31a5397eba0bd7d63d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Aug 31 14:39:10 2017 +0000
track instance ID
commit 22a692b92da9c96b36cfe7818b9687a628c11a36
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 28 23:14:15 2017 +0000
remove redundant publish of browse image
commit bf4668570dc4c9097a1c492efe0add4c58b101d8
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 21 21:37:46 2017 +0000
update metrics logstash indexer for elk5
commit d8a607bbf71896bfadf89e9de2292c811a29d59a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 21 21:14:35 2017 +0000
fix path to verdi
commit f76810a8b46f22647b15d4115789a2cf8aefc533
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 21 20:04:12 2017 +0000
update generalized templates
commit 2f50f0fa30e477beb14e8846191fe92ab4316b7a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 21 19:32:16 2017 +0000
generalize to template ops user home dir
commit a853290194c04617aa74717bf97cf45ea68f5886
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 14 21:26:46 2017 +0000
add script for spot termination detection and event log submission
https://github.jpl.nasa.gov/hysds-org/general/issues/452
commit 4e22bb927eb4700f410fe022f82084f694d44050
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 14 20:12:39 2017 +0000
add HySDS custom event logging of setting/unsetting of keep-alives and termination
https://github.jpl.nasa.gov/hysds-org/general/issues/451
Update documentation.
commit 4322d226109e47664293aa1c00c0fde3690f7f4e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 14 18:44:41 2017 +0000
expose hostname arg for log_custom_event()
commit 83f797110abb10d594dc297fd9dce3cb1058efb4
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 14 16:33:00 2017 +0000
return uuid of custom log event
commit ec39ffd9d55b5d5b9f7ea9fd2faa526debe2c6d8
Merge: e346bd0 7d94571
Author: Gerald Manipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 17:10:00 2017 -0700
Merge pull request #13 from hysds-org/verdi-events
update verdi to handle new event stream to redis on mozart
commit 7d94571a3e7d20453061b51fed7d8d7024ce8b1e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 23:49:49 2017 +0000
disable clobbering of datasets using noclobber option in osaka
commit e051227e5a6a8c3708b7821c028f5979b4e80d9e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 23:29:20 2017 +0000
use fail_job() and lower time allowed for shutdown to come through
commit d5eb42c2b88cae85e45f6fcc1cbfcc7980b8b451
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 22:49:12 2017 +0000
log job drain as custom event
commit 26193b73e468a16bb2f2be83e5f26a765d8d30db
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 22:33:35 2017 +0000
use logger
commit 27809454e38f66823c889bcdaa0a8dad9dcb5ac6
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 22:27:31 2017 +0000
fix redis pool connection for events; add exponential backoff mitigation
commit a4e11fbb641a5ab047d1fa94124f3bf4d3d4ed63
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 22:07:36 2017 +0000
initial implementation of custom event streaming
commit 3ab9b399f6581d18cca3fa983b0ca48cf7e9d1e6
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 21:27:00 2017 +0000
track worker's pid to ensure unique job drain detection session
commit 94121666aba4e59155aa6433065165f6f232d836
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 17:16:33 2017 +0000
remove job detector before shutdown and give time for remote control to propagate
commit e346bd044943724761eec45b4d1fea5bbc838a12
Merge: 8dc2019 71e3f28
Author: Gerald Manipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 09:19:36 2017 -0700
Merge pull request #12 from hysds-org/verdi-events
verdi job drain detection
commit 71e3f2804d73348a6f0e7d18fcfdecc2d7015743
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 15:59:32 2017 +0000
cleanup job drain detector after worker shutdown
Prevent previous job drain detection from affecting restarted workers.
commit d63f21b2c513a8babdc7e4c6262e7c5ae0ff2642
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 15:41:43 2017 +0000
remove job drain detection from process_events
commit 41fc22ac87162323022b97961f97fbd720b6069e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 15:29:38 2017 +0000
fix bug accessing job failure thresholds
commit 14a30432cd3264fe720dbb5fb280367577f70e09
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 14:26:19 2017 +0000
initial implementation of verdi job drain detector
commit 8dc20199ff724579f9c19c4becc382d4ba0ca7cb
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Aug 3 14:58:16 2017 -0700
update doc string and add color to prompt
commit 39569d4b24a2313c1f37d7b3151e727695637175
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Aug 3 14:46:53 2017 -0700
add offliner script to sync job state when it may be desynchronized
commit 61918af62e2c879edc30bfe801091befd285ded6
Merge: 3d8a756 66bba64
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jul 31 19:03:52 2017 -0700
Merge branch 'master' into oco2-improvements
Conflicts:
scripts/sync_ec2_job_metric.py
commit 66bba6490ade669cfa27a550e388947aa06cdca1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jul 31 19:24:36 2017 +0000
format string not integer
commit 22ffcc869f39c9a62b5f38f6317d47e501e2cee1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jul 31 17:04:00 2017 +0000
update verdi to clean out successfult work dirs first
https://github.jpl.nasa.gov/hysds-org/general/issues/439
commit 09b72672e526b709941063bc7f4a53deb875f206
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jul 31 16:57:05 2017 +0000
allow specification of cloudwatch metrics namespace
commit 3d8a75617fe1f925f6afde68b48335f8e693b374
Merge: 9712dec 63e264f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 27 17:03:53 2017 -0700
Merge branch 'master' into oco2-improvements
commit 63e264f254072398a9d84044112de0506971be38
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 27 15:31:10 2017 +0000
add idempotent makedirs() function to handle race conditions between concurrent workers
commit 032afaca9fa333a1a96b3e0383c1fc0b1bfe6701
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 27 14:45:59 2017 +0000
merge spot fleet capability to harikiri.py
commit 7c5ff85a1cceecf0bb69ec173e42cef230d988de
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 27 14:42:20 2017 +0000
restore sleeps; add logging of response from spot fleet API calls
commit 9acc4b2b3e889d70a6467ec5fe43bd2ceb0f1672
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 27 14:35:22 2017 +0000
remove dryrun flag
commit 37266e759455c10fecea2d5804fd7925064c9dab
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 27 14:24:18 2017 +0000
cancel spot fleet request if target capacity is less than 1
commit 32754c2cebd33de2d270f841e64dc8b3f450574c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jul 26 18:57:23 2017 +0000
implement decrement of spot fleet's target capacity
Get error though:
(ClientError: An error occurred (InvalidParameterValue) when calling
the ModifySpotFleetRequest operation: 1 validation error detected:
Value '0' at 'targetCapacity' failed to satisfy constraint: Member
must have value greater than or equal to 1)
commit e5a9d548f511892bc6a400aeb40edc0688c5545f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jul 26 17:41:22 2017 +0000
initial implementation of spot fleet support in harikiri
commit 9712dec4255f4d2a6963f85e7bb1f48f0ff1cfc1
Merge: b45a853 f4a3df0
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jul 25 16:21:59 2017 -0700
Merge branch 'master' into oco2-improvements
commit f4a3df042e59d604791c762a6d88b4c5cf147842
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jul 25 15:51:03 2017 +0000
fix bad log message
commit 93ea7bdb07a95a0be982663c5535f131c3b284ca
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jul 25 15:27:09 2017 +0000
undo percolator for user_rules_job
commit d11c6d38abfbffe3718c567bc617bcf58eaac06d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jul 25 15:01:23 2017 +0000
enable query update always; fix final query call; better logging
commit 0f9996bbddd151464f0393901fccc6ca94afb69d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jul 25 01:20:49 2017 +0000
query .percolator types
commit 2f412d7930e0ce49aabfcdef0d15d4a8098304bf
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jul 25 01:13:55 2017 +0000
undo percolator for user_rules_datasets
commit b45a853cab654330b27f7c16c762dabca7d38c25
Merge: 4a211b4 1ee874f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Jul 14 11:48:56 2017 -0700
Merge branch 'master' into oco2-improvements
commit 1ee874fa2ff67f518ce66da426d895281243c2d0
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 13 02:32:39 2017 +0000
track username as PROV-ES softwareAgent role
commit 08ef8f1769150a1fe4e44f259f53a5d5697ccc6d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jul 12 00:09:04 2017 +0000
add hysds core packages
commit e46f8d57cbaaadb7920d8f631041c480bcd10e47
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jul 11 16:20:38 2017 +0000
update description
commit 3e621d41951c493cc5caa8a93b96766265d64f2b
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jul 11 16:17:29 2017 +0000
add requirements.txt; add installation instructions
commit db8788b2da7227a62644fbe617b250d6555aa854
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jul 11 15:54:02 2017 +0000
add third party software dependencies
commit 4a211b4b55ba0489bb1ec7b1ebc5208e2a0f34ff
Merge: 9ce5d89 38baeef
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jul 5 14:17:11 2017 -0700
Merge branch 'master' into oco2-improvements
commit 38baeef07b9959a57f1349e2a8afdd1d3bf42c05
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jul 5 18:23:49 2017 +0000
add read-write capability to user-specified docker mount
Add blacklist parameters to limit user-specified docker mounts.
commit 9ce5d89ee501226f6cc1949a242e20c51ed89ff8
Merge: 3984ae8 03ba42b
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Sat Jul 1 01:34:19 2017 -0700
Merge branch 'master' into oco2-improvements
commit 03ba42b6bd5dd9c07da8d09a122f433b7b3027cf
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Sat Jul 1 06:55:46 2017 +0000
use command start/end times for proV:processStep
commit 3984ae8c5e1b59ee73aa0680da1cc3c1b1155f36
Merge: 41fe4d5 f181ce1
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Fri Jun 30 09:41:38 2017 -0700
Merge branch 'master' into oco2-improvements
commit f181ce16e101f7ad97b35c16e058b632d9ea092c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jun 29 21:21:32 2017 +0000
add command execution params to template
commit 315b390f63246c336c6a5dcdc2b2725eff001611
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jun 29 20:57:30 2017 +0000
track command execution time and total job execution time separately
commit 41fe4d5924982b5d47d4e026ced2920185c98f64
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jun 27 10:22:09 2017 -0700
allow specification of rabbitmq creds
commit 21465292543f7e6c6c25be88b3176b796bdf1e47
Merge: b12e7c8 dbf11d2
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jun 20 11:38:26 2017 -0700
Merge branch 'master' into oco2-improvements
commit dbf11d22650100460b2dbd7169498e18d00351c2
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jun 19 23:10:11 2017 +0000
remove trailing period from dedup log message
commit ef1d1fe41ae7fb3d343b6328fe89c1ab69bb969a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jun 19 22:41:54 2017 +0000
fix handling of failed vs. dedup job status
commit b9be9c1cd27130d421406fb6a292b0b955a3fa00
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jun 19 22:29:16 2017 +0000
save dedup message not as an error or traceback
commit b12e7c86e014426498c452feb344b67e1343b839
Merge: 8c2f15e 4d67567
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jun 6 13:01:29 2017 -0700
Merge branch 'master' into oco2-improvements
commit 4d6756721ecfefa0c10b35ef68558a5d13211894
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jun 6 14:31:18 2017 +0000
filter for needed info for job metrics to prevent ES MapperParsingExceptions
commit 8c2f15e5cce5a4cf938937e16e2aa9767f507d04
Author: Hysds Ops <hysdsops@oco2-mozart.jpl.nasa.gov>
Date: Tue May 30 12:42:36 2017 -0700
mstarch: updating rabbitmq config to include user/password
commit 7694f69ad31c5f059935b3dcd8456f8587eaa5b7
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 20:43:23 2017 +0000
update error template and message for figaro friendliness
commit a0bdccc082d8041eba808fcc3e70ac27d2e39504
Merge: 5dece64 5420e17
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 15:26:29 2017 +0000
Merge branch 'dev'
commit 5dece64ef4e6a6fb52811654ebcfdb3a8804429e
Merge: a481505 f380f3d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 15:25:52 2017 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/hysds
commit 5420e17f9e353116f88e47a4d698c6e06cc4f0f1
Merge: 2f330e3 0ec762c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 15:24:26 2017 +0000
Merge branch 'dev' of https://github.jpl.nasa.gov/hysds-org/hysds into dev
commit 2f330e364210e5c566c39a0693168510e15e5795
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 15:16:28 2017 +0000
raise error immediately upon failed match of dataset
commit 0ec762c31900851ed3525ef4a541597d9a4e325c
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Tue May 23 15:16:28 2017 +0000
raise error immediately upon failed match of dataset
commit 9ef110c87e9529301994ea9ee784b3ed10985b2b
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 14:52:56 2017 +0000
allow specification of states to query; do verdi dedup check up front
Don't trigger dedup in verdi on jobs queued that snuck in after queued
commit 07b155229cf086455fb1dd4173d825687f34a21c
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Tue May 23 14:52:56 2017 +0000
allow specification of states to query; do verdi dedup check up front
Don't trigger dedup in verdi on jobs queued that snuck in after queued
commit cf18ef863eaa3d0b886c4dbf6d679ab7b6072e69
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 14:31:40 2017 +0000
set dedup job to be oldest queued job
commit 6fac6703870dde2e173264897c854d12c9f09ccd
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Tue May 23 14:31:40 2017 +0000
set dedup job to be oldest queued job
commit 50fa0ec9b6550cae4814223155f0061e33a22780
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 03:16:33 2017 +0000
update job_status template for context propagation
commit 11678421cc17465fdaa1f55aaadfa9a874b0cf87
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Tue May 23 03:16:33 2017 +0000
update job_status template for context propagation
commit 2557787ae26525d39f24cfd35158d6d5c26a1dda
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 02:48:42 2017 +0000
remove non job-related params from payload hash calculation
commit 5cf0f85ae0b67ff5006e00898250f448611bbb70
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Tue May 23 02:48:42 2017 +0000
remove non job-related params from payload hash calculation
commit 8e4b2f9ea54d8d8184b764b80008c8105698108a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 23 00:12:19 2017 +0000
list dedup jobs when detected
commit ad7cce4d9b20d441355338a4ee585a4f311bcc5d
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Tue May 23 00:12:19 2017 +0000
list dedup jobs when detected
commit 4ff2612be73819cf00d155c82272d3af1e25774e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon May 22 23:42:21 2017 +0000
fix dedup detection
commit ca08f20f889aa2650c7909679f51b6a4c0bc93bc
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Mon May 22 23:42:21 2017 +0000
fix dedup detection
commit 6a939b9c894f8fc92fa6463ad77e447fcb0a3caf
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon May 22 21:11:42 2017 +0000
handle when job_status-current doesn't exist
commit 8c08c42158648484c5438efde72793e9956a0ad5
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Mon May 22 21:11:42 2017 +0000
handle when job_status-current doesn't exist
commit 9d41f3dd28f60e3ac9e47d48f7b28298f399785c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon May 22 20:59:12 2017 +0000
import json lib
commit 76ea8536041bde6acd4282246e2545490bac18a6
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Mon May 22 20:59:12 2017 +0000
import json lib
commit c5d65fb19f8380c73151bc84932b11f289aca8a6
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon May 22 20:41:54 2017 +0000
initial implementation of job dedup
commit 22d8100a3a9fc379fb079d9b6bbda4644ff71ffd
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Mon May 22 20:41:54 2017 +0000
initial implementation of job dedup
commit a48150502ae131f04e76dff1329673795759579e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Apr 13 20:28:49 2017 +0000
set job_name with dataset ID included similar to on-demand jobs
commit f380f3d080ac5ecce17b9a48faf08c2e28d88a79
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Thu Apr 13 20:28:49 2017 +0000
set job_name with dataset ID included similar to on-demand jobs
commit 0fb5eb7cb464266f413a3e1f6285d7b6492b7eba
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 24 16:23:24 2017 +0000
update backoff decorated calls to boto3
commit 5af30c455c2a1a79d246014af06c2efffef11efb
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 24 14:24:48 2017 +0000
update to use boto3; add more informative logging
commit 6d0e19a4906ecc7deb80641537403a5d69f71f43
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Mar 23 23:08:07 2017 +0000
handle non-existence of monitored queue
commit 0bc7e94717199f8a67b85dd202440e343e383410
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Mar 23 17:25:49 2017 +0000
graceful shutdown of docker containers when committing seppuku
commit cd82a18a77b53e8834132c03f241598b751046d5
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Mar 23 16:43:54 2017 +0000
better logging for harikiri
commit 0b5387406aef05f382c9bdf881cb5ed43ddecaad
Merge: 9a023cd f5aff30
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Mar 14 15:03:55 2017 +0000
Merge branch 'v2' into merge-v2
Conflicts:
hysds/container_utils.py
commit f5aff3018f968dbc13a6e4beb9f05b09f384d0c6
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Mar 13 15:53:24 2017 +0000
add TOSCA_URL config
commit 092c9607935b11b77509d2e80653df3c01e4527f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 10 19:32:35 2017 +0000
remove deprecated id_template from sample datasets.json
commit 168c517a51d2371229a7411dab60eb170087b1ee
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 10 18:05:56 2017 +0000
remove teeing of stdout/stderr to task log and remove using task-specific work dir with signal files
Fix bug in calling metadata service.
commit 0b35e262d34900dbbe2f5166666d82ed84facd3c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Mar 6 15:12:16 2017 +0000
allow configuration of hard/soft celery task time limits
commit 57a9f871cf8893aec73508c20b8efe5cc175b03e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 28 19:24:51 2017 +0000
update user_rules_* task workers to submit jobs via celery
commit 6d62e51260258cf7e2751934d85819b5f5eb1800
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 28 14:46:57 2017 +0000
log task worker result and return task url
commit 16c275f9b43029340ebe8e61dc2fd61820871432
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 28 05:12:28 2017 +0000
write task log to task work dir
Automatically clean up old task work dirs as space is needed.
commit fc29dde3e0374f252f03b81cd4544499436380e8
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 27 21:12:15 2017 +0000
add do_submit_task() wrapper function with jitter
commit bc19e4c05075b2dd88c0a5fd8e0250fa57e58885
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Feb 23 20:01:34 2017 +0000
normalize path so that ingest_dataset.py can ingest products specified with trailing slashes
commit 22829aa51ff834e0ec1a48bb0592928ceb0c00f9
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 21 20:25:27 2017 +0000
add supervisor config for figaro
commit 24db8b51827ffe7323628cea8a8bf46f4f1ed86e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 21 17:19:04 2017 +0000
add optional dataset.json field: creation_timestamp
commit 66afe0c692ee99c6ca5a69dc292a8847f8c8ee88
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 14 23:01:29 2017 +0000
conform to v2 ES index template
commit af966b4c2285f3976d30195118e9a80d6d0f12e9
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 14 17:03:38 2017 +0000
restore building of correctly structured query for user_rules_dataset
commit 688c74e97c2426e89b19976f56400c4040f03921
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 13 18:40:50 2017 +0000
pass rabbitmq extensions onto celery task
Add priority extension and placeholder for queue expiration.
commit 824207d67911bdc6fa8ccc54eb8966ddcaf5a40e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Feb 10 20:37:47 2017 +0000
use lightweight task to decouple rule triggering from rule evaluation and provide bottleneck bypass
Utilize lightweight task to do job submission of triggered dataset and jobs rules.
Utilize hysds_commons in job submission task to ensure wiring is consistent.
Clean out legacy worker configs from supervisord configs.
commit ca4f29ae96cda3841a3c13e57bf16596a67ee80e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Feb 9 18:32:28 2017 +0000
roll back celery v4 updates; v4.0.2 results in slow submit_job() execution on the order hundredths of a second per job submission
commit 80569634e16ed573d9be590c772a3eebd444c770
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Feb 8 15:06:59 2017 +0000
keep hysds core highly performant and independent of REST API sitting above it
commit b8f222e586ba8d8cc7b4382df9c8a767c685dbec
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 7 20:30:44 2017 +0000
handle celery v4 update of celery event args
commit 77a9fdc4f8c9295eded1c110bb07323b9eae5a03
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 7 18:36:15 2017 +0000
handle new Request interface in celery v4
commit b7e9bd9c8627ff518db81d63f0c44ceeb6e91ec4
Merge: a1c0218 b395026
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Feb 6 23:06:54 2017 +0000
Merge branch 'v2' of https://github.jpl.nasa.gov/hysds-org/hysds into v2
commit 9a023cdf21a0f76c7b43516bf1b8277fa22e9f3b
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Feb 2 21:01:48 2017 +0000
propagate UID/GID of job worker to container user executing job
Can run any container anywhere without regard for host's UID & GID mapping to
container's UID & GID.
commit b39502622c25a493d821391d8564981c1476dc03
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Feb 2 20:32:11 2017 +0000
propagate UID/GID of job worker to container user executing job
Can run any container anywhere without regard for host's UID & GID mapping to
container's UID & GID.
commit 6c1cf50fdddac1f15b5503577ab3c386eebf41d1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jan 30 22:16:54 2017 +0000
parse AWS profile name from datasets.json and use that for osaka creds
Fix issue where browse creds would use publish creds.
commit a1c0218b4a92181d5d4ee7e917ebd771345c4d05
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Jan 30 19:40:05 2017 +0000
mstarch: adding in import
commit 6be7df9f7d0525c5d92ac3a49266ed372445ed80
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Jan 30 18:45:19 2017 +0000
mstarch: fixing user_rules_job for proper submission
commit 61d1b777a0ad4644f6505897ae25ccdc2f13e307
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 26 23:09:16 2017 +0000
upgrade celery to v4.0.2
commit 05397543668b57b41af0cd016619c5ceb47180ba
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jan 23 23:11:21 2017 +0000
clean up hysds tag in version
commit 5cd5fb677a8bae7b0876191b9b18d0373a265e39
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jan 23 19:52:23 2017 +0000
add celeryconfig.py and datasets.json as default container mounts into job dir
commit fde43098e90db56e8d8a0da52ea39f9d5c12a371
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 19 17:35:41 2017 +0000
mount image mappings as read-only
commit 82c2b44a54ff1e843f59a25993055cf099ba6f03
Merge: 59e541e ae723aa
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 19 08:05:50 2017 +0000
Merge branch 'v2' of https://github.jpl.nasa.gov/hysds-org/hysds into v2
commit 59e541ed0b5e52c2dc1fac83680916d7f92e5953
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 19 08:05:45 2017 +0000
mstarch: replacing colons in job_name to prevent work dir erros
commit ae723aa5c43745bcf5ae55698d55a4d98b50df19
Merge: 1e5b56b 23ace8b
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 19 08:04:27 2017 +0000
Merge branch 'v2' of https://github.jpl.nasa.gov/hysds-org/hysds into v2
commit 1e5b56b99a1d2ac8cf8ecfebec9430a96ffaeca1
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 19 08:04:19 2017 +0000
mstarch: making user_rulse_dataset run
commit 23ace8b25a77ae22171eb8696f5e3747212f2f97
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 19 03:32:14 2017 +0000
mstarch: adding container_mappings to orchestrator pass-through
commit 14fc20c14d954c2e70f7c37088dd5ecd84ef17e8
Author: Michael Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 19 03:31:16 2017 +0000
mstarch: adding .iteritems()
commit e7acca6d8d5e2807542f2a12fb57ccdd8df60bc4
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 19 00:18:04 2017 +0000
handle absolute and relative mount points
commit 94a2bcb47a2a5e4e79e0a08c135e615d1e2bb084
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 18 20:38:38 2017 +0000
mstarch: cleaning up hysds package
commit d0bea172540fe2e2677cea0a879abd222740405a
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 18 20:36:49 2017 +0000
mstarch: pointing to the REST submission libraries
commit 4cf89c125a933554d8837c59a76cc1d24c4bcca9
Merge: b67a3c9 5b22fbd
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 18 20:13:11 2017 +0000
Merge branch 'v2' of https://github.jpl.nasa.gov/hysds-org/hysds into v2
commit 5b22fbdc0c16a033b3c1aca21e25cfa9d8f5c511
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jan 18 18:58:26 2017 +0000
add capability to pass in mappings for mounting files/dirs into containers
commit 3d861244e9eebcd0e1ddd6ba87cd31161335910d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jan 18 14:53:58 2017 +0000
remove AOI filtering feature from v1
commit 48a61260198569dc4fa84bf27c32abbbf7f45d1a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 12 21:03:27 2017 +0000
remove v1 feature for specifying explicit queue name in job type
Needed to track job spec type correctly in facets.
commit 3b21bdc0c2a6d9fdc288276a73aa5a2e32f9004d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 12 16:29:40 2017 +0000
add script to clean out job_specs and containers indices on reset.sh
commit 5209e40bdd49443f33ad9243d833be5c0151b023
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 12 16:27:56 2017 +0000
allow override of job_queue from job json config
commit b67a3c975f7fc8963b5f6e577fd6a2c4e20b8d82
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 11 17:53:45 2017 +0000
mstarch: fixing version
commit c0588357f67040769fe0c531185911f3eb4750a3
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Sat Jan 7 19:27:07 2017 +0000
specify resource id label for custom metric to be properly used for GCP autoscaling
commit 5ab2a78d0bca5bad6ad22d0562c7f6d389be1260
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Sat Jan 7 18:35:54 2017 +0000
add reqs for google cloud monitoring
Update references to EC2 to with GCP.
commit 9e1e3ad6e3dc333e30b9e701e0be6778af8e825a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Sat Jan 7 18:29:07 2017 +0000
job count syncer script for google stackdriver custom metric
commit 345c82cdb313c2695588a0663faaedc46c52c390
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 5 22:02:53 2017 +0000
msatrch: fixing data printout
commit 16513dcfcafed18bcbee0959c770787160c4df13
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 4 22:11:44 2017 +0000
mstarch: minor bug fixes
commit 9a3a0101c3031f9518fcee925fae5cb4b5cffa0e
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 4 22:00:58 2017 +0000
mstarch: adding logging and verify functionality to request_utils
commit 94b9f2c186fda70822621296baa83e76413e8203
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 4 20:36:00 2017 +0000