forked from DIRACGrid/DIRAC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.notes
11928 lines (8437 loc) · 406 KB
/
release.notes
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
[v8.1.0a16]
*FrameworkSystem
FIX: (#7149) Do not overwrite the tornado port if already set
FIX: (#7117) replaced deprecated importlib read_text function to fix failure in CI tests
*Resources
FIX: (#7147) MultiVO proxy renewal in AREX
FIX: (#7146) Propagate environment variables from host to container.
FIX: (#7134) Don't print client_secret in oauth2 debug
FEAT: (#7120) allow to pass credentials when downloading the SRR file
CHANGE: (#7103) ARC and ARC6 are now deprecated
CHANGE/FIX: (#7102) proxy renewal logic in AREX
FIX: (#7102) submitting tokens with AREX
FIX: (#7102) correctly report aborted pilots with AREX
*TransformationSystem
FIX: (#7144) dirac_production_runjoblocal: updated list of Pilot modules
CHANGE: (#7124) use userName instead of DN
*Core
FIX: (#7142) look also for DIRAC.rootPath/etc/dirac.cfg before printing a warning of not found cfg
*docs
change: Replace the use of sphinx-panels with sphinx-design, this unblocks the use of latest sphinx versions (panels was requiring sphinx < 5)
FIX: (#7133) formatting item list
*WorkloadManagement
NEW: (#7132) Introducing 'Scouting' status in job state transitions
*ResourceStatusSystem
FIX: (#7120) Add the Error status in the scripts
*WorkloadManagementSystem
FIX: (#7101) JobManagerHandler: get the OwnerDN only when needed.
[v8.1.0a15]
*Resources
FIX: (#7100) concatenate tags instead of overriding them in ComputingElement.initializeParameters()
NEW: (#7079) audienceName attribute in CEs
NEW: (#7065) add a test for the PoolCE to highlight the fact that submission failures cannot be handled by the caller with the return value
*WorkloadManagementSystem
FIX: (#7098) Exceptions in StalledJobAgent
CHANGE: (#7097) modifying access specifiers of JobPolicy from private to protected
FIX: (#7081) disable activityMonitoring for JobAgent
NEW: (#7079) audience support in SiteDirector
CHANGE: (#6973) validating the JDL job format using a pydantic model
*FrameworkSystem
FIX: (#7094) Support Authlib v1.2.1
*FrameworkSyste
FIX: (#7079) fix TokenManager(Client/Handler/Utilities)
*WorkloadManagent
NEW: (#7068) New TornadoSandboxStoreHandler implementation
*Core
NEW: (#7068) TornadoClient - added sendFile() method
FIX: (#7067) Close DISET selector when we no longer need it
*WorkloadManagement
FIX: (#7065) management of the job status in JobAgent
NEW: (#7065) add a test for the JobAgent to make sure the status of the submissions are correctly handled
*docs
NEW: (#7065) documentation about ComputingElement
*tests
NEW: (#7024) added script for comdirac hackathon certification tests
[v8.1.0a14]
*WorkloadManagementSystem
NEW: (#7059) new script dirac-admin-add-pilot
*dashboard
NEW: (#7039) add missing dashboards of issue #6742 also to the LHCb grafana organisation. The dashboards can be checked/reviewed at https://monit-grafana.cern.ch/dashboards/f/qwdBd3KVk/dev-dirac-certification
Please follow the template:
*docs
FIX: (#7023) added remaining info from COMDIRAC Wiki. Addresses part of #6746
[v8.1.0a13]
*Core
FIX: (#7058) print a warning message when no CFG file is found
FIX: (#6976) retry upon DNS lookup error
FIX: (#6955) HandlerManager - create separate class for each service handler
FIX: (#6955) BaseRequestHandler - fullComponentName can be only defined in the configuration
*docs
FIX: (#7057) added a note about removal of elastic job parameters
CHANGE: (#6969) more details in the "supercomputers" section
*Resources
CHANGE: (#7055) use double slash in Echo xroot URLs
FIX: (#7042) reduce memory consumption of AREXCE.getJobOutput()
CHANGE: (#7036) remove CREAM CE
FIX: (#7028) SSHCE getPilotOutput remove stamp
FIX: (#7000) ARCLogLevel
FIX: (#6999) remove executables definition from AREXCE.submitJob()
NEW: (#6969) cleanJob() in AREX
CHANGE: (#6969) executables from inputs are passed as executables in the XRSL in ARC and AREX
*test
FIX: (#7053) Workflow tests need pilot.cfg to work
*WorkloadManagementSystem
FIX: (#7052) Implementation of DefaultLocalCEType option
FIX: (#7046) fix(StalledJobAgent): after a job was Killed, we have to force the Failed.
CHANGE: (#7033) TokenManagerHandler provides client access token if username is not provided.
CHANGE: (#7031) Using JobManager instead of JobDB for rescheduling stalled jobs
CHANGE: (#7019) removed old format of ElasticJobParametersDB
NEW: (#7017) add the possibility of adding generic options for running the pilots
FIX: (#6980) JobStatus: add staging to checking transition, needed by StorageManagementSystem (Stager)
NEW: (#6969) tests for RemoteRunner
CHANGE: (#6969) RemoteRunner can deal with MP applications, clean job outputs and process more applications
FIX: (#6969) Modify the DIRACVersion in the PushJobAgent
*WorkloadManagement
NEW: (#7042) md5 checksum comparison in RemoteRunner
NEW: (#7041) Add /Resources/Computing/DefaultLocalCEType option
FIX: (#7007) return specific exit code in RemoteRunner in case of failure
FIX: (#7006) Getting the value of /LocalSite/RemoteExecution
*RequestManagementSystem
FIX: (#7013) fix the monitoring of Operations not yet entered into the DB
*FrameworkSystem
CHANGE: (#6967) enable/disableLogsFromExternalLibs only used from LocalConfiguration
FIX: (#6967) remove a deprecated method
CHANGE: (#6967) gLogger date format
NEW: (#6967) type hinting in gLogger
*Interfaces
FIX: (#6961) Removed dinit, sessions are now instantiated automatically. Also removed DCOMMANDS_PPID.
PR for adding Dirac side code related to https://github.com/DIRACGrid/WebAppDIRAC/pull/729/commits
CHANGE: (#6956) Add getTokensByUserID method and make it compliant with ProxyManager code
*Integration tests
FIX: (#6954) Make error nicer when the IAM docker instance is not working properly
*dashboards
NEW: (#6911) added json export of Grafana demo dashboard
[v8.1.0a12]
*WorkloadManagementSystem
FIX: (#6953) Watchdog fix: always report correct types
FIX: (#6931) make singletons of VirtualMachineDB and PilotAgentsDB
PR for fixing dead link in doc (monitoring part)
FIX: (#6949) change urls for WMS and Logs dashboards
*tests
CHANGE: (#6948) Integration tests: upped Opensearch version to 2.1.0
NEW: (#6937) integration tests for IdProviders
*Core
CHANGE: (#6947) remove support for MySQL 5.7
FIX: (#6944) protection for opensearch_dsl being merged in opensearchpy
FIX: (#6924) cast method names to string before sending monitoring
*Resources
NEW: (#6937) unit tests for IdProviders
FIX: (#6927) HTCondorCEComputingElement - set _CONDOR_AUTH_SSL_CLIENT_CADIR before executing condor commands
*Tornado
FIX: (#6933) do not use activityMonitor in TornadoREST
*FrameworkSystem
FIX: (#6922) stdoutJson logger prints all the necessary fields
FIX: (#6922) MicrosecondJsonFormatter does not dump DIRAC specific fields (`timeStampIsShown`, `colorIsShown`, etc)
[v8.1.0a11]
*Resources
FIX: (#6913) better handle exceptions in AREXCE
CHANGE: (#6902) (AREX)ComputingElement - use proxy only if it is set up
FIX: (#6883) add workaround for https timeout when dowloading file
*WorkloadManagementSystem
FIX: (#6913) config helper error message
FIX: (#6907) SiteDirector: failure in submitting Accounting or Monitoring report only prints an error
*MonitoringSystem
FIX: (#6904) while updating ES documents, wait and retry on ConflictError
CHANGE: (#6875) introduce gMonitoringDB global instance
*Interfaces
FIX: (#6903) make -F (file) option work for drm command. This fixes #6896
*WorkloadManagement
NEW: (#6902) Enable PilotManager to manage pilots with tokens
*Core
FIX: (#6901) Tornado PeriodicCallbacks are actually called
FEAT: (#6901) Tornado Handlers report to ActivityMonitor
FEAT: (#6901) Activity Monitoring reports useful information
FIX: (#6874) TornadoREST - fix the error in resolution of exposed methods
Thank you for writing the text to appear in the release notes. It will show up
exactly as it appears between the two bold lines
Please follow the template:
*Production System
CHANGE: (#6898) change column types in ProductionDB from VARCHAR(255) to LONGTEXT
*FrameworkSystem
CHANGE: (#6897) Default log level is INFO
NEW: (#6897) Define global configuration options for log level
*ConfigurationSystem
FIX: (#6888) Fix the connection to ES database when using certificates
*DataManagementSystem
CHANGE: (#6884) refactor (DFC): rewrite the file/replica deletion stored procedure as they were in 5.6
CHANGE: (#6880) FTS3DB uses `in` instead of `not in` for some query
CHANGE: (#6880) FTS3DB removal of operations uses python datetime instead of mysql builtin
[v8.1.0a11]
*Resources
FIX: (#6913) better handle exceptions in AREXCE
CHANGE: (#6902) (AREX)ComputingElement - use proxy only if it is set up
FIX: (#6883) add workaround for https timeout when dowloading file
*WorkloadManagementSystem
FIX: (#6913) config helper error message
FIX: (#6907) SiteDirector: failure in submitting Accounting or Monitoring report only prints an error
*MonitoringSystem
FIX: (#6904) while updating ES documents, wait and retry on ConflictError
CHANGE: (#6875) introduce gMonitoringDB global instance
*Interfaces
FIX: (#6903) make -F (file) option work for drm command. This fixes #6896
*WorkloadManagement
NEW: (#6902) Enable PilotManager to manage pilots with tokens
*Core
FIX: (#6901) Tornado PeriodicCallbacks are actually called
FEAT: (#6901) Tornado Handlers report to ActivityMonitor
FEAT: (#6901) Activity Monitoring reports useful information
FIX: (#6874) TornadoREST - fix the error in resolution of exposed methods
Thank you for writing the text to appear in the release notes. It will show up
exactly as it appears between the two bold lines
Please follow the template:
*Production System
CHANGE: (#6898) change column types in ProductionDB from VARCHAR(255) to LONGTEXT
*FrameworkSystem
CHANGE: (#6897) Default log level is INFO
NEW: (#6897) Define global configuration options for log level
*ConfigurationSystem
FIX: (#6888) Fix the connection to ES database when using certificates
*DataManagementSystem
CHANGE: (#6884) refactor (DFC): rewrite the file/replica deletion stored procedure as they were in 5.6
CHANGE: (#6880) FTS3DB uses `in` instead of `not in` for some query
CHANGE: (#6880) FTS3DB removal of operations uses python datetime instead of mysql builtin
[v8.1.0a10]
*Tests
CHANGE: (#6861) factorize FTS3 tests
[v8.1.0a9]
*ConfigurationSystem
FIX: (#6868) VOMS2CSAgent: strip whitespaces from DN entried and nickname
NEW: (#6865) Resources helper - getQueues() - can select queues by Tag values also
*FrameworkSystem
FIX: (#6865) TokenManager - use refreshToken flow to generate access tokens from the stored refresh tokens
*WorkloadManagement
NEW: (#6865) SiteDirector enabled to select queues by tags
NEW: (#6865) SiteDirector sets up tokens for ComputingElements configured with the Token tag
*Resources
NEW: (#6865) HTCondorComputingElement, ARC(6)ComputingElement and AREXComputingElement enabled to for job operations with tokens
FIX: (#6842) Complete AREX renewal
*DataManagementSystem
NEW: (#6863) ReplicateAndRegister FTS mode also checks the SE status
NEW: (#6863) add a delay in monitoring in the FTS3Agent
NEW: (#6860) dirac-dms-filecatalog-cli - use the default VO FileCatalog if not explicitly specified
CHANGE: (#6835) Speed up ReplicateAndRegister operation
*dashboards/PilotSubmissions
FIX: (#6858) efficiency plots now use heatmaps
FIX: (#6858) index patterns are now environment agnostic
*dashboards/ServiceMonitoring
FIX: (#6858) index patterns are now environment agnostic
*dashboards/AgentMonitoring
FIX: (#6858) index patterns are now environment agnostic
*dashboards/PilotsHistory
FIX: (#6858) style of plots
FIX: (#6858) index patterns are now environment agnostic
*Interfaces
NEW: (#6853) Add setPriority to Job API
FIX: (#6849) removed print statements and replaced with gLogger as appropriate as requested in #6746
*RequestManagementSystem
CHANGE: (#6848) ReqProxy does not attempt a direct forward to central ReqManager
[v8.1.0a8]
*Resources
FIX: (#6832) Update AREX delegation renewal
FIX: (#6830) Fix AREX ARCRESTTimeout
FIX: (#6817) fix account parameter in SSHBatchCE
*TransformationSystem
FIX: (#6829) keep transID an int in utilities
*DataManagementSystem
FIX: (#6819) specify the same column in order_by and distinct in FTS3DB.getNonFinishedOperations
*Tests
NEW: (#6812) Integration test for StorageElementHandler and FileHelper
[v8.1.0a7]
*Core
FIX: (#6811) don't use matplotlib deprecated methods
FIX: (#6793) Fix exception in FileHelper.networkToString on Python3
FIX: (#6784) Tornado components are initialized using the Tornado system section
FIX: (#6784) each Tornado handler reads its own log level
New: dirac-configure warns you about existing config file
FIX: (#6731) Fix in FileHelper module writing to file, fixed exception "TypeError: write() argument must be str, not bytes, because file was opened in the wrong mode.
CHANGE: (#6706) debug log level instead of info in a few places
*Resources
NEW: (#6806) [ALL]ComputingElements - pass pilot stamp to the pilot environment
FIX: (#6768) do not handle ECOMM when removing file
FIX: (#6753) Add a note about XRSL times in ARC(6) vs AREX
NEW: (#6729) SensitiveDataFilter in LogFilters
FIX: (#6719) remove stupid CS sync when getting MQ config
CHANGE: (#6690) drop the WholeNode CE option from Condor
CHANGE: (#6683) https comes before gsiftp in the preference list
NEW: (#6683) Singularity detects locally mounted file system on the worker node to bind mount
FIX: (#6681) fix upload from relative path
*Docs
FIX: (#6801) Removed Google forum from docs
NEW: (#6786) Improve documentation on installing HTTPs services
FIX: (#6732) nginx takes aliases into account
NEW: (#6683) document how to access locally mounted file system
*DataManagementSystem
CHANGE: (#6787) take into account all possible sources for intermediate copy when replicating files
CHANGE: (#6763) Removed deprecated StorageElementProxy and FileCatalogProxy
NEW: (#6759) Provide `diskOnly` option in getFile. Defaul is `False`
CHANGE: (#6752) adapt FTS3DB to sqlalchemy 2.0
NEW: (#6697) Introduce getDirectoryDump method in the DFC
CHANGE: (#6697) dirac-dms-user-lfns uses getDirectoryDump method
CHANGE: (#6697) DataManager getReplicasFromDirectory and __cleanDirectory use getDirectoryDump
FIX: (#6696) fix a non initialized variable when doing a TPC with gfal2
FIX: (#6696) propagate error number when calling getTURL in SRM2
FIX : (#6696) ConsistencyInspector default value should be a dict and not a list
*ConfigurationSystem
FIX: (#6779) VOMS2CSSynchronizer: strip leading and trailing whitespaces from DN entries
FIX: (#6706) getMonitoringBackends returns a list
*WorkloadManagement
FIX: (#6756) Repect paramList argument in ElasticJobParametersDB.getJobParameters
FIX: (#6749) Reorder pilot downloads to minimise race condition
FIX: (#6704) Calculating index for JobParametersDB for string job ids
*Interfaces
NEW: (#6755) Merge COMDIRAC
*RequestManagementSystem
CHANGE: (#6752) adapt ReqDB to sqlalchemy 2.0
*FrameworkSystem
CHANGE: (#6743) Increased length of MySQL field UserProfileDB.up_Users to 64 (was 32)
CHANGE: (#6729) Refactor access to log filters and Logging.__init__()
FIX: (#6718) ComponentSupervisionAgent: Fix problem if two instances in different systems but with the same name are present on the same machine (e.g., Framework/Monitoring and Monitoring/Monitoring)
CHANGE: (#6686) Removed old RabbitMQ specific interface
*WorkloadManagementSystem
FIX: (#6706) Matcher handles cases of empty Tag in resource description
FIX: (#6684) InputData optimizer: keep the tape LFNs in
*Accounting
FIX: (#6695) JobsPerPilot plot when no data available
[v8.1.0a6]
*Resources
FIX: (#6620) convert ARC to DIRAC JobID in AREXCE
FIX: (#6618) SSHBatchComputingElement needs self.account
FIX: (#6608) HTCondorCE: use CS location Resources/Computing/CEDefaults/HTCondorCE instead of Resources/Computing/HTCondorCE
FIX: (#6595) fix delegation process in the AREXCE
*WorkloadManagementSystem
FIX: (#6618) encoding proxy in PilotWrapper.py
FIX: (#6609) ExtraPilotOptions can be a comma-separated list
*StorageManagamentSystem
FIX: (#6617) fix py3 incompatibility in wakeupOldRequests
*DataManagementSystem
FIX: (#6591) Faster query to list directory for DFC LHCb managers
[v8.1.0a5]
*Resources
FIX: (#6577) multi-node allocations with SLURM
FIX: (#6558) AREXCE._getDelegation() returns an error if the process cannot be completed
*ConfigurationSystem
NEW: (#6576) BDII2CSAgent: allow using AREX or ARC6 Computing Elements instead of ARC, fixes #6541
*tests
NEW: (#6569) added system/rms_script.sh test for basic RMS test
*WorkloadManagementSystem
CHANGE: (#6568) improve killing of process with psutil
CHANGE: (#6556) completely removed old PilotsLogging machinery
*DataManagementSystem
NEW: (#6567) TornadoS3GatewayHandler service
*ProductionSystem
NEW: (#6567) TornadoProductionManagerHandler service
*StorageManagementSystem
NEW: (#6567) TornadoStorageManagerHandler service
*MonitoringSystem
CHANGE: (#6563) remove setup
*Subsystem
CHANGE: (#6561) Swapped the default of EnableSecurityLogging flag
FIX: (#6553) simplified NotificationHandler
*Core
CHANGE: (#6466) removed DIRAC_USE_JSON_DECODE, flipped DIRAC_USE_JSON_ENCODE
[v8.1.0a4]
*Resources
NEW: (#6530) add the ARCLogLevel option in ARC
NEW: (#6530) add the ComputingInfoEndpoint in ARC6
FIX: (#6530) restore a commented line in AREX._reset()
FIX: (#6524) Support using ARC that was compiled against SWIG 4.1+
NEW: (#6506) Added network selection to CloudCE.
FIX: (#6505) simplifying `if` statements for setting bools
*WorkloadManagement
FIX: (#6525) Ensure cpuNormalizationFactor is a float
FIX: (#6489) pass CE parameters to dirac-jobexec instead of writing them in the configuration
*WorkloadManagementSystem
FIX: (#6521) JobDB.getJobAttributes() returns an empty dict if jobID does not exist
FIX: (#6479) reduce the PollingTime of JobAgent to 20s
*ResourceStatusSystem
FIX: (#6513) GOCDB parser to understand also real URLs
FIX: (#6501) replace pre-Python 2.5 ternary syntax
*docs
FIX: (#6512) Added CloudComputingElement to AdminGuide/Resources
*ConfigurationSystem
FIX: (#6505) simplifying `if` statements for returning bools
*DataManagementSystem
FIX: (#6505) simplifying `if` statements for returning bools
FIX: (#6505) use `not in` instead of `not ... in`
FIX: (#6505) simplify loop with `any` call
*FrameworkSystem
FIX: (#6505) simplifying `if` statements for setting bools
FIX: (#6505) simplified if statement for checking list/string len
FIX: (#6501) replace pre-Python 2.5 ternary syntax
NEW: (#6450) added TornadoComponentMonitoringHandler
NEW: (#6450) added TornadoNotificationHandler
NEW: (#6450) added TornadoUserProfileManagerHandler
*TransformationSystem
FIX: (#6505) simplifying `if` statements [unneeded `not`]
FIX: (#6505) simplified if statement for checking list/string len
*Core
FIX: (#6480) quoting the DB passwords for special characters
FIX: (#6462) Scripts: adapt to proper way of getting console_scripts entry_points, mandatory for importlib_metadata v5
FIX: (#6459) Setting timeout when adding VOMS extension
*tests
NEW: (#6463) added Glasgow to sites that should work(TM) in multiVO test
NEW: (#6454) launching the Optimizers in integration-tests
*Docs
FIX: (#6462) Fail if one the commands cannot be documented
[v8.1.0a3]
*Docs
FIX: (#6457) Fix the title for the Command Reference Page, fixes #6455
*Interfaces
CHANGE: (#6452) remove JobRepository functionality
*FrameworkSystem
CHANGE: (#6451) remove support for myProxy
*Core
FIX: (#6448) Only use X- headers if /WebApp/Balancer is defined
FIX: (#6428) MySQL tracer bugs
*ConfigurationSystem
FIX: (#6444) remove warning logs when initializing ElasticDB parameters
*WorkloadManagementSystem
FIX: (#6441) fix the timestamp of initial logging records
FIX: (#6436) WMSUtilities.killPilotsInQueues have a consistent return value
FIX: (#6432) removed unused SubmissionMode CE parameter
NEW: (#6429) Information about VirtualOrganization parameter added.
*Test
FIX: (#6428) server installation do not install JobAgent
*MonitoringSystem
CHANGE: (#6426) Remove PilotSubmissionPlotter
*WorkloadManagement
CHANGE: (#6380) Remove VMDIRAC components
[v8.1.0a2]
*DataManagementSystem
FIX: (#6414) Proper casting for data sent to the monitoring
NEW: (#6410) backport getDestinationSEList from LHCbDIRAC
FIX: (#6392) DirectoryLevelTree: fix missing keyword argument name causing failures to upload files for example
*Tests
NEW: (#6410) introduce generateDIRACConfig utility to generate DIRAC config during tests
*Docs
CHANGE: (#6410) move site documentation from ConfigRef to Resources and dirac.cfg
NEW: (#6410) document Countries
*WorkloadManagementSystem
CHANGE: (#6410) JobWrapper uses getDestinationSEList rather that resolveSEGroup
CHANGE: (#6408) ElasticJobParametersDB: create a new index every 1M jobs
FIX: (#6397) JobScheduling: select the correct RescheduleDelay instead of 1 higher
*MonitoringSystem
CHANGE: (#6409) Remove DataOperationPlotter
*Production
NEW: (#6406) add dirac-prod-complete command
*Core
FIX: (#6398) Use safer mode for grid-security directories
FIX: (#6397) TimeUtilities.fromString: when given a datetime.datetime, return the same object, instead of None. Also Fixes JobScheduling issue
[v8.1.0a1]
*WorkloadManagementSystem
FIX: (#6388) replace opPath by opChain in JobPath
*DataManagementSystem
FIX: (#6385) Monitoring does not update the dict using by the accounting, avoiding a crash
NEW: (#6385) FailedDataOperation monitoring now keeps track of interactive/job failures
NEW: (#6383) cancel the FTS transfers when an RMS request is found to be canceled
*Core
FIX: (#6379) Explicitly depend on db12
CHANGE: (#6337) Use Python's default SSL ciphers by default
*Resources
CHANGE: (#6378) negative free space value is transformed to 0
[v8.0.0]
*Resources
FIX: (#6359) new directory creation specifies the permission in octal mode
NEW: (#6357) Add a setGfalSetting decorator
CHANGE: (#6357) add a 30s timeout for removal at RAL
*WorkloadManagementSystem
NEW: (#6355) The default InputDataDirectory used by DownloadInputData can be overridden by setting /LocalSite/InputDataDirectory
FIX: (#6354) Stop instance from VirtualMachineMonitor
[v8.0.0a29]
*Core
NEW: (#6347) Introduce ``DIRAC_MYSQL_OPTIMIZER_TRACES_PATH`` environment variable for advance optimization of MySQL calls
CHANGE: (#6347) calls to the MySQL class with keyword parameters MUST now be named
FIX: (#6345) Setting codeProperties["version"] in AgentModule
[v8.0.0a28]
*Core
FIX: (#6341) createClient now creates subclasses of the original class
NEW: (#6335) DIRAC.initialize now provides keyword arguments to customise initialisation
NEW: (#6335) SecurityProperty enum for expressing security properties which can be assigned to groups/hosts
NEW: (#6335) LogLevel enum for choosing the logging level
NEW: (#6309) Introduce DReturnType/DOKReturnType/DErrorReturnType for DIRAC return structures
CHANGE: (#6299) Set OpenSSL ciphers to "DEFAULT:@SECLEVEL=1"
NEW: (#6299) Experimental support for Python 3.10
NEW: (#6299) Suppress InsecureRequestWarning when using dirac-configure with HTTPS servers
NEW: (#6299) Support overriding ciphers and methods with environment variables when using HTTPS
CHANGE: (#6298) Replace suds-jurko with suds
CHANGE: (#6297) Use psutil.net_if_addrs for Network.discoverInterfaces
NEW: (#6291) adding general flag for disabling Monitoring for Agents (used by JobAgent)
CHANGE: (#6286) Default proxy length is 2048 bits
CHANGE: (#6286) remove RFC argument for proxy generation
*WorkloadManagement
FIX: (#6338) Log error if CE Platform is missing.
CHANGE: (#6336) Remove CPU(MHz) from CacheSize(kB) job parameters
*Resources
FIX: (#6320) Forward jobDesc to innerCE in PoolCE
FIX: (#6318) Set HOME in SingularityCE
FIX: (#6317) Return proper error if provider value missing in CloudCE
CHANGE: (#6283) GFA2_SRM2 does not use anymore StorageElements/DefaultProtocols option in the CS (relies on specific OutputProtocols config)
CHANGE: (#6283) explicit distinction between PluginName and ProtocolSection name in all the StorageElement components
CHANGE: (#6283) API change for the StorageElement. See https://github.com/DIRACGrid/DIRAC/pull/6283 for details
CHANGE: (#6283) StorageElement favors local plugins
*WorkloadManagementSystem
FIX: (#6288) ElasticJobParametersDB: do not return parameters that are not needed
*tests
FIX: (#6287) replication transformation test: avoid target==source
FEAT: (#6287) transformation tests: allow -disk SEs, avoid RAL, RALPP, CESNET (don't work for me, YMMV)
*MonitoringSystem
FIX: (#6286) ElasticSearchDB generates full index names based on UTC
FIX: (#6286) DataOperationSender works on a copy of the documents
CHANGE: (#6286) DataOperationSender fails if the master accounting system fails
[v8.0.0a27]
*ConfigurationSystem
CHANGE: (#6285) Make GOCDB2CSAgent functionMap less private
*Core
CHANGE: (#6281) Removed Core.Utilities.MemStat module (use psutil module instead)
CHANGE: (#6281) Removed possibility to Register a DISET service with a secondary name
*Resources
FIX: (#6275) Conditional FC ProxyPlugin checks the ThreadConfig
*DataManagementSystem
FIX: (#6268) Fix FC change{group,owner,mode} for multiple LFNs
*WorkloadManagement
NEW: (#6267) ContainerBind option can be set on the per-site and per-CE level
*WorkloadManagementSystem
FIX: (#6256) Making getJobParameters handle specific parameters
CHANGE: (#6178) removing filtering user sites by platform during the CHECKING state
*FrameworkSystem
NEW: (#6248) Add StdoutJsonBackend
FIX: (#6246) dirac_login HTML error hiding the actual error
[v7.3.25]
*Resources
FIX: (#6275) Conditional FC ProxyPlugin checks the ThreadConfig
*DataManagementSystem
FIX: (#6268) Fix FC change{group,owner,mode} for multiple LFNs
*WorkloadManagement
NEW: (#6267) ContainerBind option can be set on the per-site and per-CE level
*FrameworkSystem
NEW: (#6248) Add StdoutJsonBackend
FIX: (#6246) dirac_login HTML error hiding the actual error
[v8.0.0a26]
*Resources
FIX: (#6242) remove REST information from the ARC6 pilot job references to bind them with jobs
FIX: (#6222) dirac_resource_info - restored the SE lookup logic
FIX: (#6218) ARCCE.getARCJob() becomes protected
FIX: (#6215) ARC6 typo issues
FIX: (#6215) ARC writeXRSL becomes protected
*WorkloadManagement
FIX: (#6241) Fix Platform key error in SD when CheckPlatform=True
*DataManagementSystem
FIX: (#6240) DatasetManager: bug fix in getDatasetsInDirectory() method
FIX: (#6209) Built-in metakeys were incorrectly modified in a MultiVO environment. This fix keeps them intact while modifying user-supplied metadata names by append a VO suffix, as before.
*tests
NEW: (#6239) added tests for the dirac-resource-info command
*Interfaces
CHANGE: (#6228) Make tmpdir for local cache instead of using CWD directly when replicating
*Core
FIX: (#6227) Increase VOMS command timeout
FIX: (#6204) Fixing errors, adding tests for TimeUtilities module
FIX: (#6128) Discovery of HTTPS methods from parent classes
*MonitoringSystem
FIX: (#6214) Fixing errors blocking commission of data operations to Elasticsearch
*ResourceStatusSystem
FIX: (#6201) convert ComputingElement to CE before searching in the configuration
*WorkloadManagementSystem
FIX: (#6196) Fixing errors, adding mapping for ESJobParameters
CHANGE: (#6193) new method to submit pilots from ARC
CHANGE: (#6161) removing the possibility to get the optimizers to run with a vo plugin
[v8.0.0a25]
*CI
NEW: (#6189) max open files for dirac CI container to 8192
*Core
CHANGE: (#6188) Propagate original proxy strength when generating new proxies
*WorkloadManagementSystem
CHANGE: (#6154) Addded timestamp to elasticjobparameters and changed parameter values into strings
[v8.0.0a24]
*Core
FIX: (#6179) better report of error when importing Module
FIX: (#6167) Replaced old vomses/vomsdir code to be able to handle cvmfs vomses. See https://github.com/DIRACGrid/DIRAC/issues/6150
FIX: (#6151) Replace deprecated threading.activeCount with active_count
FIX: (#6149) use AnyThreadEventLoopPolicy asyncio policy
FIX: (#6144) Removing time dependence of TimeUtilities Module
NEW: (#6137) add https to issuer address automatically
FIX: (#6132) fix error reporting in TornadoService
CHANGE: (#6091) changed name and simplified repetitive methods of Utilities.TIme
CHANGE: (#6084) BaseRequestHandler encode/decode static methods
*MonitoringSystem
FIX: (#6175) MonitoringReporter - late binding to MonitoringDB
FIX: (#6076) Removing multiplication in timestamp when committing to monitoring
*WorkloadManagementSystem
FIX: (#6173) restore /LocalSite/InstancePath for the case of JobAgents (see issue #6143)
FIX: (#6162) use the JobMonitoringClient to check for job parameters (that can be in the ES backend)
NEW: (#6134) adding a test to show the modifications made to the JDL before being inserted in the JobDB
*RequestManagementSystem
NEW: (#6172) Add option to automatically cancel Scheduled requests after a defined time period. Default behaviour unchanged. Relates to #6136
CHANGE: (#6114) Replace BLOBs with TEXTs for ReqDB
*docs
NEW: (#6147) add info on installing non-released code from within the pilot
*Resources/Cloud
FIX: (#6146) userData need to be in "ascii" string format to meet the requirement of "create_node" when creating VMs from cloud resources
*FrameworkSystem
FIX: (#6138) dirac_login: avoid misleading error message, fixes issue #6096
FIX: (#6135) dirac_login: Pass proxy as string to writeToProxyFile()
NEW: (#6130) add the possibility to add a prefix before the actual log message for a given subLogger
[v8.0.0a23]
*Tests
FIX: (#6122) restart Tornado after updating the configuration
*Core
FIX: (#6120) don't truncate first character in cli doc strings
FIX: (#6103) Race condition which causes multiple connectioons to be opened when the connection to an executor drops
CHANGE: (#6103) Improve logging split between message/varmessage in execuctors
FIX: (#6083) Grid: BDII make ldapsearch call forward compatible with newer ldapsearch versions
*DataManagementSystem
NEW: (#6115) Introduces an option 'ForceIndexedMetadata' to disable the creation of unindexed metadata. Default: False, i.e. preserves the current default where both indexed and unindexed metadata are allowed. Relates to #6029.
*Resources
FIX: (#6111) Error in the condition to get FlavorName
FIX: (#6110) use identity instead of subject of proxy in CloudCE
FIX: (#6102) remove decode from proxy in CloudCE
FIX: (#6095) use ceType instead of ceName for CE parameters
FIX: (#6088) autodetect cvmfs proxy in default cloudce template
FIX: (#6083) ARCCE make ldapsearch call forward compatible with newer ldapsearch versions
FIX: (#6080) Adapt StompMQConnector to Stomp 8
*tests
FIX: (#6104) typo in testJobDefinitions for new Cloud test
NEW: (#6081) added hackathon test for CloudComputingElement
*WorkloadManagement
FIX: (#6103) Avoid producing massive log output in OptimizationMind
*Elasticsearch
NEW: (#6094) option op_type in index API for Elasticsearch
[v8.0.0a22]
*Web
FIX: (#6046) Fix downloading sandboxes from the Job Manager in the WebApp
*Resources