forked from dmwm/WMCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
8108 lines (7875 loc) · 429 KB
/
CHANGES
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
1.0.6 to 1.0.7.pre4:
- Merge pull request #5863 from amaltaro/trust-site-list
- Merge pull request #5920 from ticoann/reqmgr2_compatibilty
- create the separate log for the each thread
- Merge pull request #5919 from amaltaro/migrate-has-key
- Merge pull request #5905 from ticoann/taskchain_fix
- fix taskchain acquisiton and lumilist
- Merge pull request #5915 from ticoann/add_more_complex_config
- Merge pull request #5916 from amaltaro/validate-site-lists
- Futurize: migrate dict has_key() to in
- Validate site white and black lists
- allow nested dict/list structure in Config
- Merge pull request #5355 from ticoann/remove_delete_wq_replication
- Merge pull request #5911 from amaltaro/dqmHarvest-spec
- DQMHarvest spec remake; Template updated
- don't replicate the deleted documents
- Merge pull request #5903 from ticoann/unittest_script
- add options on unittest script
- Merge pull request #5901 from vkuznet/ajax-bug
- Fix bug in AJAX done function
- Merge pull request #5900 from ticoann/nostale_reqmgr2
- update view right away
- Merge pull request #5894 from amaltaro/multiRun-harvest
- Merge pull request #5897 from ticoann/unittest_setup
- add unittest script
- 1.0.7.pre3
- Merge pull request #5895 from vkuznet/reqmgr2-issue5876
- Merge pull request #5893 from hufnagel/cmssw74-performancedata
- Fix issue 5876
- Fix for multiRun harvesting job creation
- Merge pull request #5890 from amaltaro/test-less-jobs
- Merge pull request #5889 from ericvaandering/fix_raise_mcm
- Merge pull request #5891 from ericvaandering/less_trivial_tests
- Fix pylint/pycharm stuff on McM_t as well
- Merge branch 'master' into fix_raise_mcm
- Reduce to ~20 jobs; fix harvesting parameter
- Try to fix remaining pylint issues with this code
- Merge pull request #5888 from ericvaandering/fix_raise_mcm
- Raise an exception not a tuple
- Merge pull request #5886 from ericvaandering/remove_coverage
- Merge pull request #5885 from ericvaandering/fix_trivial_tests
- Assert of a non-empty tuple is always true
- Hopefully speed up tests
- Add import from nose
- Add import from nose
- WMCore/HTTPFrontEnd/GlobalMonitor no longer exists. Hard to test.
- Merge pull request #5882 from ticoann/fix_update_validation
- fix update validation couch doc
- Merge pull request #5881 from ticoann/fix_queue_url
- fix child url
- Merge pull request #5880 from ticoann/fix_new_wmagent_couch
- fix couchapp on WMAgent
- 1.0.7.pre2
- Merge pull request #5854 from ticoann/remove_view_wmagent_deployment
- remove unnecessary views from wmagent wmstats view
- Merge pull request #5628 from ticoann/remove_auto_replication_fix
- Merge pull request #5868 from vkuznet/pycurl-fix
- remove automatic recovery from replication failure
- Merge pull request #5879 from vkuznet/reqmgr2-issue5875
- Changes to show created request name in web UI
- Merge pull request #5878 from ericvaandering/no_test_acdc_prod
- Remove a test completely
- Merge pull request #5873 from ericvaandering/improve_datamining
- Change printout statement with logging
- Add confirmationMessage; remove obsolete ajaxRequestPrototype
- Merge pull request #5877 from vkuznet/reqmgr2-attrs
- Change order of table attributes, mandatory fields will be shown at the top of the table
- Slightly improved
- json'ize params for non GET calls
- Remove json import
- Merge pull request #5870 from amaltaro/prio-comparison
- Merge pull request #5869 from ticoann/separate_complete_clean
- Fix workflow prio comparison
- temp fix for Oracle queury
- Fixx issue with pycurl
- 1.0.7.pre1
- Merge pull request #5862 from ticoann/fix_cmssw_pset
- Merge pull request #5865 from ericvaandering/improve_datamining
- Add some log messages and a new exception
- Merge pull request #5855 from hufnagel/checksum-crc-remove
- workaround to be able to handle cmssw74 performance data
- Fix useSiteListAsLocation usage
- Merge pull request #5826 from ticoann/separate_cleanup_complete
- Add unittest
- seperate complete workflow and deleting workflow
- initialize funcName
- Merge pull request #5860 from amaltaro/acdc-eventBased
- Correctly upload and create jobs for ACDC EventBased - master
- do both adler32 and crc checksum calculation in one file read
- Merge commit '331bb4287cfb228c6533ed3e2a04159bbb0cbddd'
- Merge pull request #5838 from ericvaandering/make_tests_run
- Merge pull request #5859 from amaltaro/limit-jobs-submit
- Merge pull request #5827 from ericvaandering/remove_import_md5
- Merge pull request #5828 from ericvaandering/remove_glite
- Merge pull request #5840 from ericvaandering/fix_pylint_disable
- Merge pull request #5842 from ericvaandering/fix_except
- Merge pull request #5852 from ticoann/fix_jobprio_call
- Limit amount of jobs to be submitted by JobSubmitter - master version
- Only change jobPrio when it has a diff prio
- Fix except to use python 2.6 recommendation
- Fix for enable in all directories
- Pylint disable messages with sed
- Make it so all tests run
- Remove code that can't possibly work
- Remove instances of import md5 which is deprecated
1.0.6 to 1.0.7.pre3:
- Merge pull request #5895 from vkuznet/reqmgr2-issue5876
- Merge pull request #5893 from hufnagel/cmssw74-performancedata
- Fix issue 5876
- Merge pull request #5890 from amaltaro/test-less-jobs
- Merge pull request #5889 from ericvaandering/fix_raise_mcm
- Merge pull request #5891 from ericvaandering/less_trivial_tests
- Fix pylint/pycharm stuff on McM_t as well
- Merge branch 'master' into fix_raise_mcm
- Reduce to ~20 jobs; fix harvesting parameter
- Try to fix remaining pylint issues with this code
- Merge pull request #5888 from ericvaandering/fix_raise_mcm
- Raise an exception not a tuple
- Merge pull request #5886 from ericvaandering/remove_coverage
- Merge pull request #5885 from ericvaandering/fix_trivial_tests
- Assert of a non-empty tuple is always true
- Hopefully speed up tests
- Add import from nose
- Add import from nose
- WMCore/HTTPFrontEnd/GlobalMonitor no longer exists. Hard to test.
- Merge pull request #5882 from ticoann/fix_update_validation
- fix update validation couch doc
- Merge pull request #5881 from ticoann/fix_queue_url
- fix child url
- Merge pull request #5880 from ticoann/fix_new_wmagent_couch
- fix couchapp on WMAgent
- 1.0.7.pre2
- Merge pull request #5854 from ticoann/remove_view_wmagent_deployment
- remove unnecessary views from wmagent wmstats view
- Merge pull request #5628 from ticoann/remove_auto_replication_fix
- Merge pull request #5868 from vkuznet/pycurl-fix
- remove automatic recovery from replication failure
- Merge pull request #5879 from vkuznet/reqmgr2-issue5875
- Changes to show created request name in web UI
- Merge pull request #5878 from ericvaandering/no_test_acdc_prod
- Remove a test completely
- Merge pull request #5873 from ericvaandering/improve_datamining
- Change printout statement with logging
- Add confirmationMessage; remove obsolete ajaxRequestPrototype
- Merge pull request #5877 from vkuznet/reqmgr2-attrs
- Change order of table attributes, mandatory fields will be shown at the top of the table
- Slightly improved
- json'ize params for non GET calls
- Remove json import
- Merge pull request #5870 from amaltaro/prio-comparison
- Merge pull request #5869 from ticoann/separate_complete_clean
- Fix workflow prio comparison
- temp fix for Oracle queury
- Fixx issue with pycurl
- 1.0.7.pre1
- Merge pull request #5862 from ticoann/fix_cmssw_pset
- Merge pull request #5865 from ericvaandering/improve_datamining
- Add some log messages and a new exception
- Merge pull request #5855 from hufnagel/checksum-crc-remove
- workaround to be able to handle cmssw74 performance data
- Merge pull request #5826 from ticoann/separate_cleanup_complete
- Add unittest
- seperate complete workflow and deleting workflow
- initialize funcName
- Merge pull request #5860 from amaltaro/acdc-eventBased
- Correctly upload and create jobs for ACDC EventBased - master
- do both adler32 and crc checksum calculation in one file read
- Merge commit '331bb4287cfb228c6533ed3e2a04159bbb0cbddd'
- Merge pull request #5838 from ericvaandering/make_tests_run
- Merge pull request #5859 from amaltaro/limit-jobs-submit
- Merge pull request #5827 from ericvaandering/remove_import_md5
- Merge pull request #5828 from ericvaandering/remove_glite
- Merge pull request #5840 from ericvaandering/fix_pylint_disable
- Merge pull request #5842 from ericvaandering/fix_except
- Merge pull request #5852 from ticoann/fix_jobprio_call
- Limit amount of jobs to be submitted by JobSubmitter - master version
- Only change jobPrio when it has a diff prio
- Fix except to use python 2.6 recommendation
- Fix for enable in all directories
- Pylint disable messages with sed
- Make it so all tests run
- Remove code that can't possibly work
- Remove instances of import md5 which is deprecated
1.0.6 to 1.0.7.pre2:
- Merge pull request #5854 from ticoann/remove_view_wmagent_deployment
- remove unnecessary views from wmagent wmstats view
- Merge pull request #5628 from ticoann/remove_auto_replication_fix
- Merge pull request #5868 from vkuznet/pycurl-fix
- remove automatic recovery from replication failure
- Merge pull request #5879 from vkuznet/reqmgr2-issue5875
- Changes to show created request name in web UI
- Merge pull request #5878 from ericvaandering/no_test_acdc_prod
- Remove a test completely
- Merge pull request #5873 from ericvaandering/improve_datamining
- Change printout statement with logging
- Add confirmationMessage; remove obsolete ajaxRequestPrototype
- Merge pull request #5877 from vkuznet/reqmgr2-attrs
- Change order of table attributes, mandatory fields will be shown at the top of the table
- Slightly improved
- json'ize params for non GET calls
- Remove json import
- Merge pull request #5870 from amaltaro/prio-comparison
- Merge pull request #5869 from ticoann/separate_complete_clean
- Fix workflow prio comparison
- temp fix for Oracle queury
- Fixx issue with pycurl
- 1.0.7.pre1
- Merge pull request #5862 from ticoann/fix_cmssw_pset
- Merge pull request #5865 from ericvaandering/improve_datamining
- Add some log messages and a new exception
- Merge pull request #5855 from hufnagel/checksum-crc-remove
- Merge pull request #5826 from ticoann/separate_cleanup_complete
- Add unittest
- seperate complete workflow and deleting workflow
- initialize funcName
- Merge pull request #5860 from amaltaro/acdc-eventBased
- Correctly upload and create jobs for ACDC EventBased - master
- do both adler32 and crc checksum calculation in one file read
- Merge commit '331bb4287cfb228c6533ed3e2a04159bbb0cbddd'
- Merge pull request #5838 from ericvaandering/make_tests_run
- Merge pull request #5859 from amaltaro/limit-jobs-submit
- Merge pull request #5827 from ericvaandering/remove_import_md5
- Merge pull request #5828 from ericvaandering/remove_glite
- Merge pull request #5840 from ericvaandering/fix_pylint_disable
- Merge pull request #5842 from ericvaandering/fix_except
- Merge pull request #5852 from ticoann/fix_jobprio_call
- Limit amount of jobs to be submitted by JobSubmitter - master version
- Only change jobPrio when it has a diff prio
- Fix except to use python 2.6 recommendation
- Fix for enable in all directories
- Pylint disable messages with sed
- Make it so all tests run
- Remove code that can't possibly work
- Remove instances of import md5 which is deprecated
1.0.6 to 1.0.7.pre1:
- Merge pull request #5862 from ticoann/fix_cmssw_pset
- Merge pull request #5865 from ericvaandering/improve_datamining
- Add some log messages and a new exception
- Merge pull request #5855 from hufnagel/checksum-crc-remove
- Merge pull request #5826 from ticoann/separate_cleanup_complete
- Add unittest
- seperate complete workflow and deleting workflow
- initialize funcName
- Merge pull request #5860 from amaltaro/acdc-eventBased
- Correctly upload and create jobs for ACDC EventBased - master
- do both adler32 and crc checksum calculation in one file read
- Merge commit '331bb4287cfb228c6533ed3e2a04159bbb0cbddd'
- Merge pull request #5838 from ericvaandering/make_tests_run
- Merge pull request #5859 from amaltaro/limit-jobs-submit
- Merge pull request #5827 from ericvaandering/remove_import_md5
- Merge pull request #5828 from ericvaandering/remove_glite
- Merge pull request #5840 from ericvaandering/fix_pylint_disable
- Merge pull request #5842 from ericvaandering/fix_except
- Merge pull request #5852 from ticoann/fix_jobprio_call
- Limit amount of jobs to be submitted by JobSubmitter - master version
- Only change jobPrio when it has a diff prio
- Fix except to use python 2.6 recommendation
- Fix for enable in all directories
- Pylint disable messages with sed
- Make it so all tests run
- Remove code that can't possibly work
- Remove instances of import md5 which is deprecated
1.0.5 to 1.0.6:
- Merge pull request #5850 from ticoann/unittest_fix
- fix ReqMgr_t unit test
- 1.0.6.pre7
- Merge pull request #5841 from ticoann/reqmgr2_fix2
- fix reqmgr2 jQuery call
- 1.0.6.pre6
- Merge pull request #5837 from amaltaro/typo-logDB
- fix typo in logDB
- 1.0.6.pre5
- Merge pull request #5812 from hufnagel/diskwall-estimate
- Merge pull request #5836 from hufnagel/simplify-cmssw
- simplify how CMSSW is called
- Merge pull request #5835 from ticoann/reqmgr2_fix
- fix reqmgr2 create and approve
- Merge pull request #5833 from amaltaro/phedex-replica
- Change CustodialSubType dafault to Replica instead of Move
- Merge pull request #5823 from hufnagel/alcaharvest-duplicates
- workaround for duplicate alcaharvest output in fjr
- Merge pull request #5822 from amaltaro/jobupdater-exceptions
- Handle couch exceptions in JobUpdater
- 1.0.6.pre4
- Merge pull request #5821 from ticoann/request_summary
- add unittest for summary info method
- Add temporary access to request information including lastest job.
- Merge pull request #5820 from ticoann/remove_local_logdb2
- remove local logdb
- Merge pull request #5816 from vkuznet/logdb-central
- Re-factor code to use deterministics ids and central LogDB; Add report LogDB class
- add/fix job disk and wall estimates
- Merge pull request #5813 from amaltaro/includeParents-template
- New template to exercise IncludeParents code
- 1.0.6.pre3
- Merge pull request #5811 from hufnagel/numberofcores-baggage
- Merge pull request #5808 from hufnagel/fixedreadsettings-repack
- Merge pull request #5802 from ericvaandering/shuffle_pileup
- Merge pull request #5807 from hufnagel/dqmupload-multiurl
- Merge pull request #5806 from amaltaro/fix-childbyparents
- Merge pull request #5810 from hufnagel/logdb_url-typo
- allow to set number of cores in job splitting
- fix typo for logdb
- Fix listFilesInBlockWithParents since parent lfn is a list
- 1.0.6.pre2
- Merge pull request #5797 from ticoann/fix_condor_class_ad
- Merge pull request #5803 from ticoann/fix_summary_unit_test
- fix the logdb unittest
- Merge pull request #5801 from amaltaro/injectOnly-tests
- Adapt test for shuffled pileup files
- Shuffle pileup files
- bugfix and added parameter for request creation only
- change JobPrio to int value
- Merge pull request #5799 from amaltaro/taskarchiver-logging
- 1.0.6.pre1
- Merge pull request #5796 from ticoann/auto_approval_validation
- Merge pull request #5775 from amaltaro/validate-auto-approve
- add auto approval validation
- Merge pull request #5769 from amaltaro/validation-templates
- Merge pull request #5786 from ericvaandering/remove_JSONParser
- Merge pull request #5795 from ericvaandering/fix_typos0416
- Fix two typos
- Merge pull request #5765 from ticoann/logdb_set
- add logdb deployment
- Merge pull request #5792 from vkuznet/logdb-types
- Add pre-defined LogDB Message types and associative unit test
- Merge pull request #5789 from ticoann/summary_fix
- add taskArchiver logging for completing work
- Merge pull request #5790 from vkuznet/pycurl-fix
- Allow to handle all 1XX/2XX HTTP statuses
- fix summary call to have one id per thread
- Merge pull request #5788 from ticoann/move_logdb_test
- move test under Service_t
- Merge pull request #5787 from ticoann/acdc_cleanup
- add missing method
- Remove JSON Parser
- Merge pull request #5783 from vkuznet/logdb-thread
- Add thread name support and fix bugs
- Merge pull request #5782 from vkuznet/logdb-cleanup
- Changes to perform LogDB clean-up, add new tstamp view and unit test
- Merge pull request #5781 from vkuznet/logdb_wrap
- Wrap LogDB APIs into try/except block, upon exception dump loger error message
- Merge pull request #5773 from vkuznet/logdb2
- Forbids auto-approval to MSS endpoint
- Changes for LogDB
- Add templates for Integration tests
- Merge pull request #5763 from amaltaro/cmssw-pileup-setup
- Merge pull request #5764 from vkuznet/load_specs
- Remove WMFactory and read spec files themselves for probing class names
- Corrects format of PU files in the CMSSW MixingModule
- 1.0.5.patch1
- Merge pull request #5743 from vkuznet/logdb
- Merge pull request #5760 from tsarangi/issue5672_again
- Fix #5672 . Read latest and non-empty condor log for classAd information
- Merge pull request #5759 from ericvaandering/fix_dashboard_getter_conflict
- Fix the conflicts introduced in two different pull requests
- Merge branch 'ericvaandering-multithread_taskchain'
- multi thread task chain
- Merge pull request #5758 from ericvaandering/remove_dbs2code
- Merge pull request #5752 from amaltaro/set-thresholds-ssb
- Merge pull request #5755 from ericvaandering/fix_5420
- Merge pull request #5756 from ericvaandering/report_jobtype
- Merge pull request #5753 from ericvaandering/fix_js_linefeed
- Merge pull request #5749 from hufnagel/secondary-priority
- Merge pull request #5751 from ericvaandering/dashboard_ncore_start
- Merge pull request #5708 from juztas/gfal2
- Merge pull request #5679 from tsarangi/issue5659
- Merge pull request #5699 from amaltaro/create-test-wfs
- Script to create and assign DMWM workflows
- Fix #5659 . Ignore accounting for jobs that are in X state. Fixed Exceptions Multiple typos Fixed Add job to complete list if the job status is removed Do not trust classAd and update the status to Removed if the jobStatus is New Reorder job status report. Break after jobs are pushed to completeList. Ignore getClassAd for jobs in Removed Status
- Remove DBS2 code and references
- Add CMS_JobType into the JDL. Can be for reprioritization by HTCondor or enforcing global resource control in GlideinWMS.
- Loop over tasks and find the maximum # of cores to request for the job
- Re-factor ctor to use DMWM config
- Collect all user messages and only last ones for agent-X type messages
- Fix linefeeds in two javascript files
- don't change site thresholds if site not in ssb
- Report out # of cores to dashboard on job start, not just job end
- Implement logic according to new set of requirements (see issue 5705)
- Implement dynamic creation of logdb_agent and upload requests view
- Move under WMCore/Services and adjusted classes to read modules from proper location
- Added production-manager and t0operator roles to global access
- Remove requests module
- Initial prototype of LogDB interface: include code base and associative couchapp
- set secondary job priority, fixes #5688
- add gfal2 support.
- fix read settings for repack jobs
- support multiple URL for DQM GUI upload
1.0.5 to 1.0.6.pre7:
- Merge pull request #5841 from ticoann/reqmgr2_fix2
- fix reqmgr2 jQuery call
- 1.0.6.pre6
- Merge pull request #5837 from amaltaro/typo-logDB
- fix typo in logDB
- 1.0.6.pre5
- Merge pull request #5812 from hufnagel/diskwall-estimate
- Merge pull request #5836 from hufnagel/simplify-cmssw
- simplify how CMSSW is called
- Merge pull request #5835 from ticoann/reqmgr2_fix
- fix reqmgr2 create and approve
- Merge pull request #5833 from amaltaro/phedex-replica
- Change CustodialSubType dafault to Replica instead of Move
- Merge pull request #5823 from hufnagel/alcaharvest-duplicates
- workaround for duplicate alcaharvest output in fjr
- Merge pull request #5822 from amaltaro/jobupdater-exceptions
- Handle couch exceptions in JobUpdater
- 1.0.6.pre4
- Merge pull request #5821 from ticoann/request_summary
- add unittest for summary info method
- Add temporary access to request information including lastest job.
- Merge pull request #5820 from ticoann/remove_local_logdb2
- remove local logdb
- Merge pull request #5816 from vkuznet/logdb-central
- Re-factor code to use deterministics ids and central LogDB; Add report LogDB class
- add/fix job disk and wall estimates
- Merge pull request #5813 from amaltaro/includeParents-template
- New template to exercise IncludeParents code
- 1.0.6.pre3
- Merge pull request #5811 from hufnagel/numberofcores-baggage
- Merge pull request #5808 from hufnagel/fixedreadsettings-repack
- Merge pull request #5802 from ericvaandering/shuffle_pileup
- Merge pull request #5807 from hufnagel/dqmupload-multiurl
- Merge pull request #5806 from amaltaro/fix-childbyparents
- Merge pull request #5810 from hufnagel/logdb_url-typo
- allow to set number of cores in job splitting
- fix typo for logdb
- Fix listFilesInBlockWithParents since parent lfn is a list
- 1.0.6.pre2
- Merge pull request #5797 from ticoann/fix_condor_class_ad
- Merge pull request #5803 from ticoann/fix_summary_unit_test
- fix the logdb unittest
- Merge pull request #5801 from amaltaro/injectOnly-tests
- Adapt test for shuffled pileup files
- Shuffle pileup files
- bugfix and added parameter for request creation only
- change JobPrio to int value
- Merge pull request #5799 from amaltaro/taskarchiver-logging
- 1.0.6.pre1
- Merge pull request #5796 from ticoann/auto_approval_validation
- Merge pull request #5775 from amaltaro/validate-auto-approve
- add auto approval validation
- Merge pull request #5769 from amaltaro/validation-templates
- Merge pull request #5786 from ericvaandering/remove_JSONParser
- Merge pull request #5795 from ericvaandering/fix_typos0416
- Fix two typos
- Merge pull request #5765 from ticoann/logdb_set
- add logdb deployment
- Merge pull request #5792 from vkuznet/logdb-types
- Add pre-defined LogDB Message types and associative unit test
- Merge pull request #5789 from ticoann/summary_fix
- add taskArchiver logging for completing work
- Merge pull request #5790 from vkuznet/pycurl-fix
- Allow to handle all 1XX/2XX HTTP statuses
- fix summary call to have one id per thread
- Merge pull request #5788 from ticoann/move_logdb_test
- move test under Service_t
- Merge pull request #5787 from ticoann/acdc_cleanup
- add missing method
- Remove JSON Parser
- Merge pull request #5783 from vkuznet/logdb-thread
- Add thread name support and fix bugs
- Merge pull request #5782 from vkuznet/logdb-cleanup
- Changes to perform LogDB clean-up, add new tstamp view and unit test
- Merge pull request #5781 from vkuznet/logdb_wrap
- Wrap LogDB APIs into try/except block, upon exception dump loger error message
- Merge pull request #5773 from vkuznet/logdb2
- Forbids auto-approval to MSS endpoint
- Changes for LogDB
- Add templates for Integration tests
- Merge pull request #5763 from amaltaro/cmssw-pileup-setup
- Merge pull request #5764 from vkuznet/load_specs
- Remove WMFactory and read spec files themselves for probing class names
- Corrects format of PU files in the CMSSW MixingModule
- 1.0.5.patch1
- Merge pull request #5743 from vkuznet/logdb
- Merge pull request #5760 from tsarangi/issue5672_again
- Fix #5672 . Read latest and non-empty condor log for classAd information
- Merge pull request #5759 from ericvaandering/fix_dashboard_getter_conflict
- Fix the conflicts introduced in two different pull requests
- Merge branch 'ericvaandering-multithread_taskchain'
- multi thread task chain
- Merge pull request #5758 from ericvaandering/remove_dbs2code
- Merge pull request #5752 from amaltaro/set-thresholds-ssb
- Merge pull request #5755 from ericvaandering/fix_5420
- Merge pull request #5756 from ericvaandering/report_jobtype
- Merge pull request #5753 from ericvaandering/fix_js_linefeed
- Merge pull request #5749 from hufnagel/secondary-priority
- Merge pull request #5751 from ericvaandering/dashboard_ncore_start
- Merge pull request #5708 from juztas/gfal2
- Merge pull request #5679 from tsarangi/issue5659
- Merge pull request #5699 from amaltaro/create-test-wfs
- Script to create and assign DMWM workflows
- Fix #5659 . Ignore accounting for jobs that are in X state. Fixed Exceptions Multiple typos Fixed Add job to complete list if the job status is removed Do not trust classAd and update the status to Removed if the jobStatus is New Reorder job status report. Break after jobs are pushed to completeList. Ignore getClassAd for jobs in Removed Status
- Remove DBS2 code and references
- Add CMS_JobType into the JDL. Can be for reprioritization by HTCondor or enforcing global resource control in GlideinWMS.
- Loop over tasks and find the maximum # of cores to request for the job
- Re-factor ctor to use DMWM config
- Collect all user messages and only last ones for agent-X type messages
- Fix linefeeds in two javascript files
- don't change site thresholds if site not in ssb
- Report out # of cores to dashboard on job start, not just job end
- Implement logic according to new set of requirements (see issue 5705)
- Implement dynamic creation of logdb_agent and upload requests view
- Move under WMCore/Services and adjusted classes to read modules from proper location
- Added production-manager and t0operator roles to global access
- Remove requests module
- Initial prototype of LogDB interface: include code base and associative couchapp
- set secondary job priority, fixes #5688
- add gfal2 support.
- fix read settings for repack jobs
- support multiple URL for DQM GUI upload
1.0.5 to 1.0.6.pre6:
- Merge pull request #5837 from amaltaro/typo-logDB
- fix typo in logDB
- 1.0.6.pre5
- Merge pull request #5812 from hufnagel/diskwall-estimate
- Merge pull request #5836 from hufnagel/simplify-cmssw
- simplify how CMSSW is called
- Merge pull request #5835 from ticoann/reqmgr2_fix
- fix reqmgr2 create and approve
- Merge pull request #5833 from amaltaro/phedex-replica
- Change CustodialSubType dafault to Replica instead of Move
- Merge pull request #5823 from hufnagel/alcaharvest-duplicates
- workaround for duplicate alcaharvest output in fjr
- Merge pull request #5822 from amaltaro/jobupdater-exceptions
- Handle couch exceptions in JobUpdater
- 1.0.6.pre4
- Merge pull request #5821 from ticoann/request_summary
- add unittest for summary info method
- Add temporary access to request information including lastest job.
- Merge pull request #5820 from ticoann/remove_local_logdb2
- remove local logdb
- Merge pull request #5816 from vkuznet/logdb-central
- Re-factor code to use deterministics ids and central LogDB; Add report LogDB class
- add/fix job disk and wall estimates
- Merge pull request #5813 from amaltaro/includeParents-template
- New template to exercise IncludeParents code
- 1.0.6.pre3
- Merge pull request #5811 from hufnagel/numberofcores-baggage
- Merge pull request #5808 from hufnagel/fixedreadsettings-repack
- Merge pull request #5802 from ericvaandering/shuffle_pileup
- Merge pull request #5807 from hufnagel/dqmupload-multiurl
- Merge pull request #5806 from amaltaro/fix-childbyparents
- Merge pull request #5810 from hufnagel/logdb_url-typo
- allow to set number of cores in job splitting
- fix typo for logdb
- Fix listFilesInBlockWithParents since parent lfn is a list
- 1.0.6.pre2
- Merge pull request #5797 from ticoann/fix_condor_class_ad
- Merge pull request #5803 from ticoann/fix_summary_unit_test
- fix the logdb unittest
- Merge pull request #5801 from amaltaro/injectOnly-tests
- Adapt test for shuffled pileup files
- Shuffle pileup files
- bugfix and added parameter for request creation only
- change JobPrio to int value
- Merge pull request #5799 from amaltaro/taskarchiver-logging
- 1.0.6.pre1
- Merge pull request #5796 from ticoann/auto_approval_validation
- Merge pull request #5775 from amaltaro/validate-auto-approve
- add auto approval validation
- Merge pull request #5769 from amaltaro/validation-templates
- Merge pull request #5786 from ericvaandering/remove_JSONParser
- Merge pull request #5795 from ericvaandering/fix_typos0416
- Fix two typos
- Merge pull request #5765 from ticoann/logdb_set
- add logdb deployment
- Merge pull request #5792 from vkuznet/logdb-types
- Add pre-defined LogDB Message types and associative unit test
- Merge pull request #5789 from ticoann/summary_fix
- add taskArchiver logging for completing work
- Merge pull request #5790 from vkuznet/pycurl-fix
- Allow to handle all 1XX/2XX HTTP statuses
- fix summary call to have one id per thread
- Merge pull request #5788 from ticoann/move_logdb_test
- move test under Service_t
- Merge pull request #5787 from ticoann/acdc_cleanup
- add missing method
- Remove JSON Parser
- Merge pull request #5783 from vkuznet/logdb-thread
- Add thread name support and fix bugs
- Merge pull request #5782 from vkuznet/logdb-cleanup
- Changes to perform LogDB clean-up, add new tstamp view and unit test
- Merge pull request #5781 from vkuznet/logdb_wrap
- Wrap LogDB APIs into try/except block, upon exception dump loger error message
- Merge pull request #5773 from vkuznet/logdb2
- Forbids auto-approval to MSS endpoint
- Changes for LogDB
- Add templates for Integration tests
- Merge pull request #5763 from amaltaro/cmssw-pileup-setup
- Merge pull request #5764 from vkuznet/load_specs
- Remove WMFactory and read spec files themselves for probing class names
- Corrects format of PU files in the CMSSW MixingModule
- 1.0.5.patch1
- Merge pull request #5743 from vkuznet/logdb
- Merge pull request #5760 from tsarangi/issue5672_again
- Fix #5672 . Read latest and non-empty condor log for classAd information
- Merge pull request #5759 from ericvaandering/fix_dashboard_getter_conflict
- Fix the conflicts introduced in two different pull requests
- Merge branch 'ericvaandering-multithread_taskchain'
- multi thread task chain
- Merge pull request #5758 from ericvaandering/remove_dbs2code
- Merge pull request #5752 from amaltaro/set-thresholds-ssb
- Merge pull request #5755 from ericvaandering/fix_5420
- Merge pull request #5756 from ericvaandering/report_jobtype
- Merge pull request #5753 from ericvaandering/fix_js_linefeed
- Merge pull request #5749 from hufnagel/secondary-priority
- Merge pull request #5751 from ericvaandering/dashboard_ncore_start
- Merge pull request #5708 from juztas/gfal2
- Merge pull request #5679 from tsarangi/issue5659
- Merge pull request #5699 from amaltaro/create-test-wfs
- Script to create and assign DMWM workflows
- Fix #5659 . Ignore accounting for jobs that are in X state. Fixed Exceptions Multiple typos Fixed Add job to complete list if the job status is removed Do not trust classAd and update the status to Removed if the jobStatus is New Reorder job status report. Break after jobs are pushed to completeList. Ignore getClassAd for jobs in Removed Status
- Remove DBS2 code and references
- Add CMS_JobType into the JDL. Can be for reprioritization by HTCondor or enforcing global resource control in GlideinWMS.
- Loop over tasks and find the maximum # of cores to request for the job
- Re-factor ctor to use DMWM config
- Collect all user messages and only last ones for agent-X type messages
- Fix linefeeds in two javascript files
- don't change site thresholds if site not in ssb
- Report out # of cores to dashboard on job start, not just job end
- Implement logic according to new set of requirements (see issue 5705)
- Implement dynamic creation of logdb_agent and upload requests view
- Move under WMCore/Services and adjusted classes to read modules from proper location
- Added production-manager and t0operator roles to global access
- Remove requests module
- Initial prototype of LogDB interface: include code base and associative couchapp
- set secondary job priority, fixes #5688
- add gfal2 support.
- fix read settings for repack jobs
- support multiple URL for DQM GUI upload
1.0.5 to 1.0.6.pre5:
- Merge pull request #5812 from hufnagel/diskwall-estimate
- Merge pull request #5836 from hufnagel/simplify-cmssw
- simplify how CMSSW is called
- Merge pull request #5835 from ticoann/reqmgr2_fix
- fix reqmgr2 create and approve
- Merge pull request #5833 from amaltaro/phedex-replica
- Change CustodialSubType dafault to Replica instead of Move
- Merge pull request #5823 from hufnagel/alcaharvest-duplicates
- workaround for duplicate alcaharvest output in fjr
- Merge pull request #5822 from amaltaro/jobupdater-exceptions
- Handle couch exceptions in JobUpdater
- 1.0.6.pre4
- Merge pull request #5821 from ticoann/request_summary
- add unittest for summary info method
- Add temporary access to request information including lastest job.
- Merge pull request #5820 from ticoann/remove_local_logdb2
- remove local logdb
- Merge pull request #5816 from vkuznet/logdb-central
- Re-factor code to use deterministics ids and central LogDB; Add report LogDB class
- add/fix job disk and wall estimates
- Merge pull request #5813 from amaltaro/includeParents-template
- New template to exercise IncludeParents code
- 1.0.6.pre3
- Merge pull request #5811 from hufnagel/numberofcores-baggage
- Merge pull request #5808 from hufnagel/fixedreadsettings-repack
- Merge pull request #5802 from ericvaandering/shuffle_pileup
- Merge pull request #5807 from hufnagel/dqmupload-multiurl
- Merge pull request #5806 from amaltaro/fix-childbyparents
- Merge pull request #5810 from hufnagel/logdb_url-typo
- allow to set number of cores in job splitting
- fix typo for logdb
- Fix listFilesInBlockWithParents since parent lfn is a list
- 1.0.6.pre2
- Merge pull request #5797 from ticoann/fix_condor_class_ad
- Merge pull request #5803 from ticoann/fix_summary_unit_test
- fix the logdb unittest
- Merge pull request #5801 from amaltaro/injectOnly-tests
- Adapt test for shuffled pileup files
- Shuffle pileup files
- bugfix and added parameter for request creation only
- change JobPrio to int value
- Merge pull request #5799 from amaltaro/taskarchiver-logging
- 1.0.6.pre1
- Merge pull request #5796 from ticoann/auto_approval_validation
- Merge pull request #5775 from amaltaro/validate-auto-approve
- add auto approval validation
- Merge pull request #5769 from amaltaro/validation-templates
- Merge pull request #5786 from ericvaandering/remove_JSONParser
- Merge pull request #5795 from ericvaandering/fix_typos0416
- Fix two typos
- Merge pull request #5765 from ticoann/logdb_set
- add logdb deployment
- Merge pull request #5792 from vkuznet/logdb-types
- Add pre-defined LogDB Message types and associative unit test
- Merge pull request #5789 from ticoann/summary_fix
- add taskArchiver logging for completing work
- Merge pull request #5790 from vkuznet/pycurl-fix
- Allow to handle all 1XX/2XX HTTP statuses
- fix summary call to have one id per thread
- Merge pull request #5788 from ticoann/move_logdb_test
- move test under Service_t
- Merge pull request #5787 from ticoann/acdc_cleanup
- add missing method
- Remove JSON Parser
- Merge pull request #5783 from vkuznet/logdb-thread
- Add thread name support and fix bugs
- Merge pull request #5782 from vkuznet/logdb-cleanup
- Changes to perform LogDB clean-up, add new tstamp view and unit test
- Merge pull request #5781 from vkuznet/logdb_wrap
- Wrap LogDB APIs into try/except block, upon exception dump loger error message
- Merge pull request #5773 from vkuznet/logdb2
- Forbids auto-approval to MSS endpoint
- Changes for LogDB
- Add templates for Integration tests
- Merge pull request #5763 from amaltaro/cmssw-pileup-setup
- Merge pull request #5764 from vkuznet/load_specs
- Remove WMFactory and read spec files themselves for probing class names
- Corrects format of PU files in the CMSSW MixingModule
- 1.0.5.patch1
- Merge pull request #5743 from vkuznet/logdb
- Merge pull request #5760 from tsarangi/issue5672_again
- Fix #5672 . Read latest and non-empty condor log for classAd information
- Merge pull request #5759 from ericvaandering/fix_dashboard_getter_conflict
- Fix the conflicts introduced in two different pull requests
- Merge branch 'ericvaandering-multithread_taskchain'
- multi thread task chain
- Merge pull request #5758 from ericvaandering/remove_dbs2code
- Merge pull request #5752 from amaltaro/set-thresholds-ssb
- Merge pull request #5755 from ericvaandering/fix_5420
- Merge pull request #5756 from ericvaandering/report_jobtype
- Merge pull request #5753 from ericvaandering/fix_js_linefeed
- Merge pull request #5749 from hufnagel/secondary-priority
- Merge pull request #5751 from ericvaandering/dashboard_ncore_start
- Merge pull request #5708 from juztas/gfal2
- Merge pull request #5679 from tsarangi/issue5659
- Merge pull request #5699 from amaltaro/create-test-wfs
- Script to create and assign DMWM workflows
- Fix #5659 . Ignore accounting for jobs that are in X state. Fixed Exceptions Multiple typos Fixed Add job to complete list if the job status is removed Do not trust classAd and update the status to Removed if the jobStatus is New Reorder job status report. Break after jobs are pushed to completeList. Ignore getClassAd for jobs in Removed Status
- Remove DBS2 code and references
- Add CMS_JobType into the JDL. Can be for reprioritization by HTCondor or enforcing global resource control in GlideinWMS.
- Loop over tasks and find the maximum # of cores to request for the job
- Re-factor ctor to use DMWM config
- Collect all user messages and only last ones for agent-X type messages
- Fix linefeeds in two javascript files
- don't change site thresholds if site not in ssb
- Report out # of cores to dashboard on job start, not just job end
- Implement logic according to new set of requirements (see issue 5705)
- Implement dynamic creation of logdb_agent and upload requests view
- Move under WMCore/Services and adjusted classes to read modules from proper location
- Added production-manager and t0operator roles to global access
- Remove requests module
- Initial prototype of LogDB interface: include code base and associative couchapp
- set secondary job priority, fixes #5688
- add gfal2 support.
- fix read settings for repack jobs
- support multiple URL for DQM GUI upload
1.0.5 to 1.0.6.pre4:
- Merge pull request #5821 from ticoann/request_summary
- add unittest for summary info method
- Add temporary access to request information including lastest job.
- Merge pull request #5820 from ticoann/remove_local_logdb2
- remove local logdb
- Merge pull request #5816 from vkuznet/logdb-central
- Re-factor code to use deterministics ids and central LogDB; Add report LogDB class
- Merge pull request #5813 from amaltaro/includeParents-template
- New template to exercise IncludeParents code
- 1.0.6.pre3
- Merge pull request #5811 from hufnagel/numberofcores-baggage
- Merge pull request #5808 from hufnagel/fixedreadsettings-repack
- Merge pull request #5802 from ericvaandering/shuffle_pileup
- Merge pull request #5807 from hufnagel/dqmupload-multiurl
- Merge pull request #5806 from amaltaro/fix-childbyparents
- Merge pull request #5810 from hufnagel/logdb_url-typo
- allow to set number of cores in job splitting
- fix typo for logdb
- Fix listFilesInBlockWithParents since parent lfn is a list
- 1.0.6.pre2
- Merge pull request #5797 from ticoann/fix_condor_class_ad
- Merge pull request #5803 from ticoann/fix_summary_unit_test
- fix the logdb unittest
- Merge pull request #5801 from amaltaro/injectOnly-tests
- Adapt test for shuffled pileup files
- Shuffle pileup files
- bugfix and added parameter for request creation only
- change JobPrio to int value
- Merge pull request #5799 from amaltaro/taskarchiver-logging
- 1.0.6.pre1
- Merge pull request #5796 from ticoann/auto_approval_validation
- Merge pull request #5775 from amaltaro/validate-auto-approve
- add auto approval validation
- Merge pull request #5769 from amaltaro/validation-templates
- Merge pull request #5786 from ericvaandering/remove_JSONParser
- Merge pull request #5795 from ericvaandering/fix_typos0416
- Fix two typos
- Merge pull request #5765 from ticoann/logdb_set
- add logdb deployment
- Merge pull request #5792 from vkuznet/logdb-types
- Add pre-defined LogDB Message types and associative unit test
- Merge pull request #5789 from ticoann/summary_fix
- add taskArchiver logging for completing work
- Merge pull request #5790 from vkuznet/pycurl-fix
- Allow to handle all 1XX/2XX HTTP statuses
- fix summary call to have one id per thread
- Merge pull request #5788 from ticoann/move_logdb_test
- move test under Service_t
- Merge pull request #5787 from ticoann/acdc_cleanup
- add missing method
- Remove JSON Parser
- Merge pull request #5783 from vkuznet/logdb-thread
- Add thread name support and fix bugs
- Merge pull request #5782 from vkuznet/logdb-cleanup
- Changes to perform LogDB clean-up, add new tstamp view and unit test
- Merge pull request #5781 from vkuznet/logdb_wrap
- Wrap LogDB APIs into try/except block, upon exception dump loger error message
- Merge pull request #5773 from vkuznet/logdb2
- Forbids auto-approval to MSS endpoint
- Changes for LogDB
- Add templates for Integration tests
- Merge pull request #5763 from amaltaro/cmssw-pileup-setup
- Merge pull request #5764 from vkuznet/load_specs
- Remove WMFactory and read spec files themselves for probing class names
- Corrects format of PU files in the CMSSW MixingModule
- 1.0.5.patch1
- Merge pull request #5743 from vkuznet/logdb
- Merge pull request #5760 from tsarangi/issue5672_again
- Fix #5672 . Read latest and non-empty condor log for classAd information
- Merge pull request #5759 from ericvaandering/fix_dashboard_getter_conflict
- Fix the conflicts introduced in two different pull requests
- Merge branch 'ericvaandering-multithread_taskchain'
- multi thread task chain
- Merge pull request #5758 from ericvaandering/remove_dbs2code
- Merge pull request #5752 from amaltaro/set-thresholds-ssb
- Merge pull request #5755 from ericvaandering/fix_5420
- Merge pull request #5756 from ericvaandering/report_jobtype
- Merge pull request #5753 from ericvaandering/fix_js_linefeed
- Merge pull request #5749 from hufnagel/secondary-priority
- Merge pull request #5751 from ericvaandering/dashboard_ncore_start
- Merge pull request #5708 from juztas/gfal2
- Merge pull request #5679 from tsarangi/issue5659
- Merge pull request #5699 from amaltaro/create-test-wfs
- Script to create and assign DMWM workflows
- Fix #5659 . Ignore accounting for jobs that are in X state. Fixed Exceptions Multiple typos Fixed Add job to complete list if the job status is removed Do not trust classAd and update the status to Removed if the jobStatus is New Reorder job status report. Break after jobs are pushed to completeList. Ignore getClassAd for jobs in Removed Status
- Remove DBS2 code and references
- Add CMS_JobType into the JDL. Can be for reprioritization by HTCondor or enforcing global resource control in GlideinWMS.
- Loop over tasks and find the maximum # of cores to request for the job
- Re-factor ctor to use DMWM config
- Collect all user messages and only last ones for agent-X type messages
- Fix linefeeds in two javascript files
- don't change site thresholds if site not in ssb
- Report out # of cores to dashboard on job start, not just job end
- Implement logic according to new set of requirements (see issue 5705)
- Implement dynamic creation of logdb_agent and upload requests view
- Move under WMCore/Services and adjusted classes to read modules from proper location
- Added production-manager and t0operator roles to global access
- Remove requests module
- Initial prototype of LogDB interface: include code base and associative couchapp
- set secondary job priority, fixes #5688
- add gfal2 support.
- fix read settings for repack jobs
- support multiple URL for DQM GUI upload
1.0.5 to 1.0.6.pre3:
- Merge pull request #5811 from hufnagel/numberofcores-baggage
- Merge pull request #5808 from hufnagel/fixedreadsettings-repack
- Merge pull request #5802 from ericvaandering/shuffle_pileup
- Merge pull request #5807 from hufnagel/dqmupload-multiurl
- Merge pull request #5806 from amaltaro/fix-childbyparents
- Merge pull request #5810 from hufnagel/logdb_url-typo
- allow to set number of cores in job splitting
- fix typo for logdb
- Fix listFilesInBlockWithParents since parent lfn is a list
- 1.0.6.pre2
- Merge pull request #5797 from ticoann/fix_condor_class_ad
- Merge pull request #5803 from ticoann/fix_summary_unit_test
- fix the logdb unittest
- Merge pull request #5801 from amaltaro/injectOnly-tests
- Adapt test for shuffled pileup files
- Shuffle pileup files
- bugfix and added parameter for request creation only
- change JobPrio to int value
- Merge pull request #5799 from amaltaro/taskarchiver-logging
- 1.0.6.pre1
- Merge pull request #5796 from ticoann/auto_approval_validation
- Merge pull request #5775 from amaltaro/validate-auto-approve
- add auto approval validation
- Merge pull request #5769 from amaltaro/validation-templates
- Merge pull request #5786 from ericvaandering/remove_JSONParser
- Merge pull request #5795 from ericvaandering/fix_typos0416
- Fix two typos
- Merge pull request #5765 from ticoann/logdb_set
- add logdb deployment
- Merge pull request #5792 from vkuznet/logdb-types
- Add pre-defined LogDB Message types and associative unit test
- Merge pull request #5789 from ticoann/summary_fix
- add taskArchiver logging for completing work
- Merge pull request #5790 from vkuznet/pycurl-fix
- Allow to handle all 1XX/2XX HTTP statuses
- fix summary call to have one id per thread
- Merge pull request #5788 from ticoann/move_logdb_test
- move test under Service_t
- Merge pull request #5787 from ticoann/acdc_cleanup
- add missing method
- Remove JSON Parser
- Merge pull request #5783 from vkuznet/logdb-thread
- Add thread name support and fix bugs
- Merge pull request #5782 from vkuznet/logdb-cleanup
- Changes to perform LogDB clean-up, add new tstamp view and unit test
- Merge pull request #5781 from vkuznet/logdb_wrap
- Wrap LogDB APIs into try/except block, upon exception dump loger error message
- Merge pull request #5773 from vkuznet/logdb2
- Forbids auto-approval to MSS endpoint
- Changes for LogDB
- Add templates for Integration tests
- Merge pull request #5763 from amaltaro/cmssw-pileup-setup
- Merge pull request #5764 from vkuznet/load_specs
- Remove WMFactory and read spec files themselves for probing class names
- Corrects format of PU files in the CMSSW MixingModule
- 1.0.5.patch1
- Merge pull request #5743 from vkuznet/logdb
- Merge pull request #5760 from tsarangi/issue5672_again
- Fix #5672 . Read latest and non-empty condor log for classAd information
- Merge pull request #5759 from ericvaandering/fix_dashboard_getter_conflict
- Fix the conflicts introduced in two different pull requests
- Merge branch 'ericvaandering-multithread_taskchain'
- multi thread task chain
- Merge pull request #5758 from ericvaandering/remove_dbs2code
- Merge pull request #5752 from amaltaro/set-thresholds-ssb
- Merge pull request #5755 from ericvaandering/fix_5420
- Merge pull request #5756 from ericvaandering/report_jobtype
- Merge pull request #5753 from ericvaandering/fix_js_linefeed
- Merge pull request #5749 from hufnagel/secondary-priority
- Merge pull request #5751 from ericvaandering/dashboard_ncore_start
- Merge pull request #5708 from juztas/gfal2
- Merge pull request #5679 from tsarangi/issue5659
- Merge pull request #5699 from amaltaro/create-test-wfs
- Script to create and assign DMWM workflows
- Fix #5659 . Ignore accounting for jobs that are in X state. Fixed Exceptions Multiple typos Fixed Add job to complete list if the job status is removed Do not trust classAd and update the status to Removed if the jobStatus is New Reorder job status report. Break after jobs are pushed to completeList. Ignore getClassAd for jobs in Removed Status
- Remove DBS2 code and references
- Add CMS_JobType into the JDL. Can be for reprioritization by HTCondor or enforcing global resource control in GlideinWMS.
- Loop over tasks and find the maximum # of cores to request for the job
- Re-factor ctor to use DMWM config
- Collect all user messages and only last ones for agent-X type messages
- Fix linefeeds in two javascript files
- don't change site thresholds if site not in ssb
- Report out # of cores to dashboard on job start, not just job end
- Implement logic according to new set of requirements (see issue 5705)
- Implement dynamic creation of logdb_agent and upload requests view
- Move under WMCore/Services and adjusted classes to read modules from proper location
- Added production-manager and t0operator roles to global access
- Remove requests module
- Initial prototype of LogDB interface: include code base and associative couchapp
- set secondary job priority, fixes #5688
- add gfal2 support.
- fix read settings for repack jobs
- support multiple URL for DQM GUI upload
1.0.5 to 1.0.6.pre2:
- Merge pull request #5797 from ticoann/fix_condor_class_ad
- Merge pull request #5803 from ticoann/fix_summary_unit_test
- fix the logdb unittest
- Merge pull request #5801 from amaltaro/injectOnly-tests
- bugfix and added parameter for request creation only
- change JobPrio to int value
- Merge pull request #5799 from amaltaro/taskarchiver-logging
- 1.0.6.pre1
- Merge pull request #5796 from ticoann/auto_approval_validation
- Merge pull request #5775 from amaltaro/validate-auto-approve
- add auto approval validation
- Merge pull request #5769 from amaltaro/validation-templates
- Merge pull request #5786 from ericvaandering/remove_JSONParser
- Merge pull request #5795 from ericvaandering/fix_typos0416
- Fix two typos
- Merge pull request #5765 from ticoann/logdb_set
- add logdb deployment
- Merge pull request #5792 from vkuznet/logdb-types
- Add pre-defined LogDB Message types and associative unit test
- Merge pull request #5789 from ticoann/summary_fix
- add taskArchiver logging for completing work
- Merge pull request #5790 from vkuznet/pycurl-fix
- Allow to handle all 1XX/2XX HTTP statuses
- fix summary call to have one id per thread
- Merge pull request #5788 from ticoann/move_logdb_test
- move test under Service_t
- Merge pull request #5787 from ticoann/acdc_cleanup
- add missing method
- Remove JSON Parser
- Merge pull request #5783 from vkuznet/logdb-thread
- Add thread name support and fix bugs
- Merge pull request #5782 from vkuznet/logdb-cleanup
- Changes to perform LogDB clean-up, add new tstamp view and unit test
- Merge pull request #5781 from vkuznet/logdb_wrap
- Wrap LogDB APIs into try/except block, upon exception dump loger error message
- Merge pull request #5773 from vkuznet/logdb2
- Forbids auto-approval to MSS endpoint
- Changes for LogDB
- Add templates for Integration tests
- Merge pull request #5763 from amaltaro/cmssw-pileup-setup
- Merge pull request #5764 from vkuznet/load_specs
- Remove WMFactory and read spec files themselves for probing class names
- Corrects format of PU files in the CMSSW MixingModule