forked from DIRACGrid/DIRAC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease.notes
More file actions
13286 lines (9220 loc) · 442 KB
/
release.notes
File metadata and controls
13286 lines (9220 loc) · 442 KB
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
[v9.0.0a69]
*WorkloadManagementSystem
CHANGE: (#8297) Remove the master CS aliases from the list of servers when generating the pilot.json
FIX: (#8296) removed MatcherServiceTime JobParameters
[v9.0.0a68]
*ConfigurationSystem
CHANGE: (#8295) Move getDIRACPlatform to DIRACCommon
[v9.0.0a67]
*DataManagementSystem
NEW: (#8293) Add composite indices on (lastUpdate, assignment) for both Jobs and Operations tables in FTS3DB
*Test
CHANGE: (#8292) Speed up CI/pytest runtime
*Core
CHANGE: (#8290) Move TimeUtilities to DIRACCommon
CHANGE: (#8290) Move StateMachine to DIRACCommon
CHANGE: (#8290) Move JDL utilities to DIRACCommon
CHANGE: (#8290) Move List utilities to DIRACCommon
CHANGE: (#8289) Move ClassAdLight to DIRACCommon
*WorkloadManagement
CHANGE: (#8290) Move JobStatus to DIRACCommon
CHANGE: (#8290) Move JobsStateMachine to DIRACCommon
CHANGE: (#8290) Move JobStatusUtility to DIRACCommon
CHANGE: (#8290) Move JobManifest to DIRACCommon
CHANGE: (#8290) Move JobDBUtils to DIRACCommon
FIX: (#8290) Correctly update JDL defaults when CS changes
*Workload Management
CHANGE: (#8289) Move JobDBUtilsto DIRACCommon
CHANGE: (#8289) Move ParametricJob to DIRACCommon
*Configuration/Core
NEW: (#8288) Included a VO (using top level groups as VO) option when getting user subjects from IAM. Behaviour with single VO IAM should be unchanged.
Address GHSA-mm38-q5fj-99j4
*RucioFileCatalogClient
FIX
Remove some potentially Sensitive Information (DN, account)
[v9.0.0a66]
[v9.0.0a65]
*Core
NEW: (#8287) DIRACCommon package containing stateless utilities extracted from DIRAC. This allows external projects like DiracX to use DIRAC's S_OK/S_ERROR return values and error codes without importing DIRAC and triggering global state initialization. The package maintains full backward compatibility - all existing imports continue to work unchanged.
*ConfigurationSystem
CHANGE: (#8284) force successful sync of remote CS for agents
*WorkloadManagementSystem
FIX: (#8283) Do not import DB at the top of the utility module
Please follow the template:
*Integration Tests
NEW: (#8281) Add diracx logs into DIRAC CI
[v9.0.0a64]
*WorkloadManagement
FIX: (#8282) Use of closed file in ZstdCompatibleTarFile when downloading sandboxes
NEW: (#8282) add sandbox download functionality in Dirac runLocal API
[v9.0.0a63]
*WorkloadManagementSystem
NEW: (#8276) Add zstandard compression support for sandbox files with backward compatibility
CHANGE: (#8244) move the logic for jobs deleting and killing in an utility
*Integration Tests
FIX: (#8248) Add in CI and in `integration_test.py` legacy adaptors.
[v9.0.0a62]
*ConfigurationSystem
FIX: (#8259) Stops VOMS2CSSynchronizer crashing on robot DNs that don't follow the CERN pattern.
FEAT: (#8242) Cache getUsernameForDN and getVOForGroup
*WorkloadManagementSystem
CHANGE: (#8254) JobMonitoring: removed several unused RPC calls
CHANGE: (#8252) removed SandboxStore RPC call unassignEntities
CHANGE: (#8252) removed SandboxStore RPC call assignSandboxesToEntities
CHANGE: (#8252) removed SandboxStore RPC calls getFreeDiskSpace and getTotalSpace
CHANGE: (#8240) add site metadata for WMSHistory (Monitoring)
*ResourceStatusSystem
CHANGE: (#8250) Added a token expiry option to dirac-rss-set-status and dirac-admin-allow/ban-site commands.
*Resources
CHANGE: (#8247) add spool option to SSHCE+Condor
FIX: (#8241) missing parenthesis in htcondor submission script
*Core
FIX: (#8245) dirac-apptainer-exec can bind optional paths
*TransformationSystem
NEW: (#8242) Cleanup unused TransformationAgent caches at the beginning of a cycle
FEAT: (#8242) cache isSameSEInList
[v9.0.0a61]
*WorkloadManagementSystem
FIX: (#8237) The JobWrapper correctly resolves the destination SE lists
*Core
FIX: (#8235) do not randomized urls sorted by preferredURLPatterns
*WorkloadManagement
NEW: (#8234) add a warning log when the first pilot retrieval attempt fails
*Resources
NEW: (#8230) StorageBase.getParameters returns all parameters
FIX: (#8225) Condor command line call compatible with v24
*Accounting
CHANGE: (#8216) removed few dangerous RPC calls
*MonitoringSystem
CHANGE: (#8216) removed useless RPC calls
[v9.0.0a60]
*DataManagementSystem
FIX: (#8228) don't remove twice in the RemoveFile operation
*WorkloadManagement
FIX: (#8227) Download input data in the job directory
*FrameworkSystem
FIX: (#8222) do not import MySQLdb unless necessary
[v9.0.0a59]
*Resources
CHANGE: (#8219) SLURM plugin now supports the WholeNode options
CHANGE: (#8211) remove dependency from HTCondorComputingElement to PilotManager
*WorkloadManagementSystem
FIX: (#8217) move DB import in the function
NEW: (#8215) define setJobStatus in the Client to allow keyword arguments
*WorkloadManagement
FIX: (#8212) AREXCE not detecting pilots in an accepted/staged states
*Core
FIX: (#8207) dirac-apptainer-exec : cd in /mnt to find locally-mounted files (e.g. pilot.cfg)
[v9.0.0a58]
*Resources
NEW: (#8206) allow to mount local folder in rw mode in SingularityCE
*PilotManagerHandler
CHANGE: (#8203) Moved killpilot to diracAdmin itself to avoid migrating it to DiracX while migrating PilotManagerHandler
This is useful later because in DiracX we can't use it for now: it needs a proxy to contact the CS + we would need to import `MySQLdb` in DiracX (see error below):
```
from DIRAC.Core.Utilities.MySQL import MySQL
File "/opt/conda/lib/python3.11/site-packages/DIRAC/Core/Utilities/MySQL.py", line 155, in <module>
import MySQLdb
ModuleNotFoundError: No module named 'MySQLdb'
```
This error occurred while importing `killPilotsInQueues` from DiracX via an import.
*ConfigurationSystem
NEW: (#8202) Add PreferredURLPattern for URL sorting
[v9.0.0a57]
*WorkloadManagement
FIX: (#8200) Remove accidental dependnecies in JobStateUtility
[v9.0.0a56]
*Resources
FIX: (#8197) SE: check the protocol only after checking the plugins when checking the occupancy
*Core
FIX: (#8193) consistent use of utcfromtimestamp in the Graph
FIX: (#8187) Platform detection on recent EL9 broken
*WorkloadManagementSystem
FIX: (#8192) getJobParameters for the multi-VO case
FIX: (#8192) stalledJobAgents talks directly to DBs
*MonitoringSystem
NEW: (#8190) WebAppHandler and Client, for WMS and TS related DIRAC WebApp calls
*WorkloadManagement
FIX: (#8189) Don't clean sandboxes which are on S3
FIX: (#8184) PushJobAgent dumps the proxy to get access to DiracX token
NEW: (#8183) Support bulk calls to JobMonitoring.getInputData
*Tests
CHANGE: (#8188) use a jwks instead of a single key
[v9.0.0a55]
[v9.0.0a54]
*WorkloadManagement
FIX: (#8180) disable watchdgo wallclock check for remote executions
FIX: (#8179) Watchdog does not kill payload properly and runs endlessly
FIX: (#8170) JobAgent endlessly looping in checkSubmittedJobs
FIX: (#8163) Typo in SingularityComputingElement
*Subsystem
FIX: (#8177) SiteDirector: the architecture script can be set in the options
*TransformationSystem
FIX: (#8172) adapt getTableSummaryWeb to the new data access layer response format
NEW: (#8165) Cast return of getTransformationFilesCount in the client
FIX: (#8162) Explicitly cast to string when returning dates
*WorklodManagement
FIX: (#8171) Optimize SandboxMetadataDB.unassignEntities
FIX: (#8171) Optimize JobLoggingDB.deleteJob
FIX: (#8171) Optimize JobDB.getJobsAttributes
FIX: (#8171) Optimize PilotAgentsDB.__getPilotID
*Resources
CHANGE: (#8153) remove PilotBundle
*GraphUtilities
FIX: (#8151) prevent any local-UTC offset being introduced in plots
[v9.0.0a53]
*WorkloadManagement
NEW: (#8159) cgroup2 limit support
*FrameworkSystem
CHANGE: (#8157) Improve performance of TheImpersonator
FIX: (#8154) Caching the proxy strength to avoid a DB call
NEW: (#8144) add a randomized connection pooling for diracx
*WorkloadManagementSystem
FIX: (#8156) we can kill a list of pilots instead of going one by one
*Core
NEW: (#8155) Add caches to asn1_utils for better performance
*RequestManagementSystem
FIX: (#8152) Printing DiracX ForwardDISET requests
[v9.0.0a52]
*RequestManagementSystem
FIX: (#8150) RequestValidator sets correct Owner for v8 requests
[v9.0.0a51]
*FrameworkSystem
FIX: (#8149) DiracX tokens should not be included in the proxies used to interact with CEs
FIX: (#8146) TypeError in TheImpersonator
*TransformationSystem
FIX: (#8147) bad escape in the updateTransformationParameter
*WorkloadManagement
FIX: (#8145) Running dirac-admin-update-pilot
[v9.0.0a50]
*Core
FIX: (#8140) Make it possible to debug dirac-jobexec failures
NEW: (#8139) add a source parameter to the impersonator
NEW: (#8138) DiracX token from PEM is always stored in $TMP/dx_.....
[v9.0.0a49]
*Core
FIX: (#8136) Proxy Pilots are sent with a token
*WorkloadManagementSystem
FIX: (#8135) the PoolXMLSlice should be created in the same directory where the job runs
[v9.0.0a48]
*WorkloadManagement
FIX: (#8134) replace DIRACJOBID with JOBID in JobWrapper environment
FIX: (#8126) Write DiracX token in JobAgent
FIX: (#8126) Remove platform validation as extensions can redefine it
FIX: (#8125) add VO information to the pilotDict when killing pilots
FIX: (#8124) report the message of the Exception instead of the Exception itself in JobAgent.submitJob
*Core
CHANGE: (#8131) DIRAC.initialize(): ensure host credentials are not ignored in case passed as a list and not a tuple
*ConfigurationSystem
FIX: (#8127) dirac-admin-update-pilot can work without a specified VO
*Resources
FIX: (#8124) do not try to use a malformed StorageElement instance in SingularityCE
[v9.0.0a47]
*WorkloadManagement
FIX: (#8123) PilotManager not using tokens to kill pilots
NEW: (#8119) JobStateUpdate legacy adapter
*RequestManagementSystem
CHANGE: (#8121) No longer directly use of the JobStateUpdateClient when processing requests
FIX: (#8121) Calling setJobParameter when processing requests
*TransformationSystem
CHANGE: (#8121) No longer directly use of the JobStateUpdateClient from the DataRecoveryAgent
*DBs
FIX: (#8120) Escape password when giving it to sqlalchemy
*WorkloadManagementSystem
FIX: (#8116) avoid repeating optimization when job goes to STAGING
*Resources
FIX: (#8115) Fix AREX CE pilot logs in alwaysIncludeProxy case
[v9.0.0a46]
*Subsystem
NEW: (#8109) added setInputData to JobState
*ConfigurationSystem
FIX: (#8108) VOMS2CSAgent newDiracName might not be defined yet
[v9.0.0a45]
*WorkloadManagemnt
FIX: (#8106) Clear any non-UTF encodable environment variables in pilots
*ConfigurationSystem
NEW: (#8104) backport the export of the Sub in DiracX
*Core
FIX: (#8102) Don't use string processing on X509 name objects
NEW: (#8099) -S option on dirac-configure is now ignored
FIX: (#8088) force M2Crypto to use the proxy instead of the host certificate if provided
*WorkloadManagement
FIX: (#8100) Move JobWrapperUtilities after import Script.parseCommandLine()
*Resources
FIX: (#8086) Catch ConnectionError when calling send on a MQ
[v9.0.0a44]
*Resources
FIX: (#8084) htcondor x509 unsupported version
CHANGE: (#8075) Disable Bearer token for HTTPs unless upload/TPC
CHANGE: (#8074) conditionally reset the rlimit for xroot
NEW: (#8069) findFileByMetadata method for Rucio
*Core
FIX: (#8080) dirac-apptainer-exec should work also in the case of no proxy
*WorkloadManagement
FIX: (#8073) pass args to buildQueueDict() in the right order
*Workload Management
FIX: (#8067) Supress non-UTF8 variables from pilot environment
*ConfigurationSystem
CHANGE: (#8061) TTLCache for getProxyPrrovidersForDN
*Test
NEW: (#8005) use containerized certs creation for integration tests
[v9.0.0a43]
*Documentation
CHANGE: (#8055) extend pilot documentation.
*docs
FIX: (#8054) update and correct the README to build the DIRAC documenation
*Subsystem
CHANGE: (#8044) default MySQL version from 8.0 to 8.4
[v9.0.0a42]
*Core
NEW: (#8041) new command dirac-apptainer-exec for running DIRAC commands inside apptainer
FIX: (#8034) Correct user mapping for DiracX from IAM
*WorkloadManagement
FIX: (#8040) get ElasticJobParametersDB index prefix from the configuration
CHANGE: (#8014) Use apptainer for SingularityComputingElement
CHANGE: (#8014) Drop support for SingularityComputingElement without user namespaces
CHANGE: (#8014) Enchance debugging output if SingularityComputingElement fails
CHANGE: (#8014) Drop support for using apptainer from outside of DIRACOS2
*ConfigurationSystem
FIX: (#8040) evaluate useCRT flag as boolean in Utilities.getElasticDBParameters()
[v9.0.0a41]
*TransformationSystem
FIX: (#8031) make the setting of inputDataBulk extendable
FIX: (#8022) make 2 methods of WorkflowTaskAgent extendable
*Core
FIX: (#8029) read at most 2^14 bytes at the same time
FIX: (#8002) one less flag for EnableSecurityLogging
FIX: (#7988) Add locks to AuthManager caches
CHANGE: (#7971) Optimise ASN1 decoding in X509Certificate
FIX: (#7969) Avoid locking in MessageQueueHandler
*Resources
FIX: (#8027) explicitly disconnect Stomp before reconnecting
FIX: (#8012) adapt AREX to ARC7 delegation output
FIX: (#7995) adapt HTCondorCE to latest htcondor version
*WorkloadManagementSystem
FIX: (#8020) StalledJobAgent: if StartExecTime is not set, use the last recorded heartbeat
FIX: (#7986) PilotBundle: compatibility with py2 and py3
*DataManagementSystem
FIX: (#8003) exit with status 1 in case of error
FIX: (#7989) Apply a workaround for https://github.com/xrootd/xrootd/issues/2396
*CI
FIX: (#7999) Add PilotAgentsDB definition to `tests/CI/docker-compose.yml`
FIX: (#7997) pensearch configuration should consume the ca_certs parameter if it is there
*ResourceStatusSystem
CHANGE: (#7987) dirac-rss-sync: flip the default status to Active
FIX: (#7983) Docs: removed Setup from Operations
NEW: (#7972) Add a timeout for GocDB to avoid blocking the CacheFeederAgent
*MonitoringSystem
CHANGE: (#7978) removed ElasticSearch in favor or OpenSearch
*RequestManagementSystem
NEW: (#7975) Allow to disable DM transfer as an FTS failover
*FrameworkSystem
FIX: (#7970) Support https URLs with dirac-framework-ping-service
*Integration tests
FIX: (#7968) mount diracx in init-db container
[v9.0.0a40]
*Core
CHANGE: (#7961) Introduce caches to AuthManager.getUsername
[v9.0.0a39]
*WorkloadManagement
FIX: (#7954) correctly log the pilot job reference during the matching process
[v9.0.0a38]
*TransformationSystem
FIX: (#7953) use updatemany in TransformationDB
*WorkloadManagement
FIX: (#7949) renew delegation prior to submitting pilots
FIX: (#7941) integrity check failure in RemoteRunner
FIX: (#7935) Run CE cleanup step at correct point
*ConfigurationSystem
FIX: (#7947) Make writing the CS atomic
*RequestManagementSystem
FIX: (#7934) call the correct executeRPCMethod depending on diset/diracx
[v9.0.0a37]
*TransformationSystem
FIX: (#7927) Use parameterised query in addTransformation
FIX: (#7910) Use UTC to calculate older in export_getTasksToSubmit
*WorkloadManagment
CHANGE: (#7922) Better caching performance in the Matching Limiter
*Resources
CHANGE: (#7918) Add option to include proxy on AREX token submission
*Integration tests
CHANGE: (#7915) Upgrade Indigo IAM (1.10.2)
[v9.0.0a36]
*TransformationSystem
CHANGE: (#7906) the TransformationCleaningAgent forces jobs to KILLED
*WorkloadManagementSystem
NEW: (#7905) for parametric jobs, added the possibility to bulk insert records in JobLoggingDB
CHANGE: (#7902) added ulimit -n 1048575 to pilotwrapper content
*FrameworkSystem
CHANGE: (#7901) Rename TokenManager service classes to follow standard convention for tornado and diset handlers
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:
*CI
NEW: (#7899) Add `PilotLogsDB` to `diracx` environment to allow CI testing.
For examples look into release.notes
*Misc
FIX: (#7893) Tidy up whitespace in cvmfs.yml
*WorkloadManagement
CHANGE: (#7892) Use plain proxy for the pilot bundle
[v9.0.0a35]
[v9.0.0a34]
*DataManagementSystem
FIX: (#7879) Fix the condition for return type sanitation
[v9.0.0a33]
*Core
CHANGE: (#7876) Remove lock in Logging._createLogRecord
FIX: (#7864) Prevent `-1` returned from `oSocket.write` being interpreted as number of bytes to avoid an infinite loop in `DISET BaseTransport.sendData`.
FIX: (#7856) ensure processProposal always returns "closeTransport" on error
FIX: (#7843) Returning DISET responses with >100000000 bytes
*ResourceStatusSystem
FIX: (#7871) some protocols or types are not in GOC
*TransformationSystem
FIX: (#7865) getTasksToSubmit consider tasks inserted by 30 seconds or more
NEW: (#7843) Use getTransformationFilesAsJsonString for faster getTransformationFiles
*StompMQConnector
FIX: (#7855) add a timeout for the StompConnector to handle nonresponsive sockets which can cause logging to be blocked
*DataManagementSystem
FIX: (#7850) Fix deadlock when FTS3Agent._treatOperation fails
[v9.0.0a32]
*Resources
FIX: (#7839) hide private keys from the logs
FIX: (#7832) AREX interactions with tokens
FIX: (#7831) Drop CloudCE proxy handling
FIX: (#7829) CloudCE: truncate long messages returned from create_node
*Core
CHANGE: (#7837) minimum version of some packages
*TransformationSystem
NEW: (#7833)
CHANGE: (#7833) Improve getTransformationFiles performance
[v9.0.0a31]
*WorkloadManagement
FIX: (#7827) SandboxStore not able to assign a sandbox to a job
FIX: (#7825) JobWrapper checks existence of executable in jobIDPath
FIX: (#7821) Getting pilot reference from job parameters
*Resources
FIX: (#7819) AREXCE returns an error if a queue is not found in the ARC instance configuration
[v9.0.0a30]
*DataManagementSystem
NEW: (#7817) experimental token support for FTS transfers
FIX: (#7781) dirac_dms_find_lfns: Check if requested path exists and returns error if not. Prevents users hitting #7487
FIX: (#7780) Return correct error for non-existing directory. Partial fix for #7487
NEW: (#7764) added checksum comparison in the fc/se consistency tool
NEW: (#7756) FileCatalogHandler: add function export_getFileDetails to get the (user) metadata for a list of LFNs
FIX: (#7719) Remove `def findDirIDsByMetadata(self, metaDict, dPath, credDict):` method from `MultiVODirectoryMetadata` (derived) class which caused an extra VO suffix added when searching. The method is meant to be used _internally_ only on keys which are already expanded in a MultiVO case. Add a user-level def `findDirectoriesByMetadata(self, queryDict, path, credDict)` to the derived class thus adding a VO suffix for a directory search. Fixes #7687.
CHANGE: (#7694) dirac-dms-replicate-and-register-request: Make request chunk size configurable; default behaviour unchanged.
*FrameworkSystem
NEW: (#7817) allow to bypass cache when retrieving tokens
FIX: (#7813) SSHCE, Try python3 before unversioned python
Fix a typo in the key Addler -> Adler of the return dict of putAndRegister
*TransformationSystem
FIX: (#7806) RequestTaskAgent only considers requests in final states, and consider files in intermediate state as problematic (https://github.com/DIRACGrid/DIRAC/issues/7116)
NEW: (#7806) RequestTaskAgent uses getBulkRequestStatus instead of getRequestStatus
RMS: (#7806)
NEW: (#7806) implement getRequestStatus
NEW: (#7697) InputDataAgent: new Option MultiVO, which makes the FileCatalog Query use the author of the DN, rather than the Host, to resolve MultiVO metadata correctly. Fixes #7681
*Resources
FIX: (#7803) added a 30s gfal2 timeout for downloading the SRR
FIX: (#7790) SSHComputingElement fix: added check of result
FIX: (#7726) Update CloudCE cloudinit.template for EL8+
CHANGE: (#7715) HTCondorCE: UseSSLSubmission: use the generated proxy file for everything, no longer need to have certificate of user present on the server.
FIX: (#7713) AREX submission issue not properly handled
NEW: (#7695) better error message when no matching protocol between 2 SE
CHANGE: (#7689) remove BOINCCE
*ResourceStatusSystem
FIX: (#7801) use always a from address (from Operations ResourceStatus/Config/FromAddress ) when sending email notifications, to avoid "spoofing" domains restrictions
NEW: (#7783) add a DIRAC to GOCDB service type conversion
CHANGE: (#7774) do not consider Endpoint for StorageOccupancy
FIX: (#7765) Do not use tinezone aware datetime
FIX: (#7755) delete the Occupancy cache only for older entries
*WorkloadManagement
FIX: (#7797) Allow jobs to be KILLED from more states
FIX: (#7797) KILLED is a final job state
FIX: (#7716) PilotWrapper - check for the presence of the -l pilot option
*ConfigurationSystem
CHANGE: (#7796) VOMS2CSAgent: if a nickname is set, this nickname will always be used and no new accounts are going to be created if a DN changes or a user is in multiple VOs
NEW: (#7796) VOMS2CSAgent: New option "ForceNickname", if this option is enabled no dirac user is created if no nickname attribute is set for a user
CHANGE: (#7796) IAMService: use logger and return errors for users so that the VOMS2CSAgent can notify admins about issues
NEW: (#7742) Configuration-system-shell: added reload and sort commands
*WorkloadManagementSystem
CHANGE: (#7792) SiteDirector will always bundle the proxy
CHANGE: (#7762) removed JobDB's SiteMask and Logging
FIX: (#7751) Proper killing of jobs when not matched, running or stalled
FIX: (#7707) JobDB: update LastUpdateTime when the job is matched
NEW: (#7699) added possibility to specify UserEnvVariable (pilot option) at CE level
*Workflow
FIX: (#7786) Avoid incorrect error strings in Workflow execute
*Core
NEW: (#7775) Support aggregating by date in MySQL.getCounters
FIX: (#7750) add more safeguard when processing result queue in ProcessPool
CHANGE: (#7720) register the DictCache destructor as an atexit handler
NEW: (#7700) fetch nickname attribute from IAM
CHANGE: (#7696) drop DIRAC_MYSQL_CONNECTION_GRACE_TIME and stalled connections reuse
*Subsystem
CHANGE: (#7733) For PilotWrapper tests, use the artifacts (created in Pilot repo)
*Diracx
NEW: (#7711) populate diracx section from Iam
*Doc
FIX: (#7688) Move the explanation how to enable tokens to a place that is shown in ReadTheDocs in the end.
*Interfaces
FIX: (#7684) Document BadJobParameterError
[v9.0.0a29]
*WorkloadManagementSystem
FIX: (#7649) added log headers to InputDataResolution modules
CHANGE: (#7629) add jobGroup to job parameters
FIX: (#7584) ServerUtils: prevent getPilotAgentsDB from returning None
FIX: (#7576) Fix potential circular import in WorkflowReader. Mostly seen in the creation of the documentation.
FIX: (#7787) added a 30s gfal2 timeout for downloading the SRR
*TransformationSystem
FIX: (#7741) RequestTaskAgent only considers requests in final states, and consider files in intermediate state as problematic (https://github.com/DIRACGrid/DIRAC/issues/7116)
NEW: (#7741) RequestTaskAgent uses getBulkRequestStatus instead of getRequestStatus
RMS: (#7741)
NEW: (#7741) implement getRequestStatus
[v8.0.52]
*ResourceStatusSystem
FIX: (#7800) use always a from address (from Operations ResourceStatus/Config/FromAddress ) when sending email notifications, to avoid "spoofing" domains restrictions
*WorkloadManagement
NEW: (#7643) Support Pydantic 2
FIX: (#7621) remove random shuffle in PilotWrapper
CHANGE: (#7609) Perform bulk lookup of job parameters from elasticsearch
CHANGE: (#7608) Make RemoteRunner more resilient to CE issues
FIX: (#7594) JobMonitoring.getJobParameters should pass jobID as an int to ElasticJobParametersDB
FIX: (#7590) AREX "out" and "err" need to exist before file integrity check
*Accounting
FIX: (#7640) AccountingDB only generate condition if needed
*Resources
NEW: (#7638) HTCondorCE: Added UseSSLSubmission option. Allows one to use a configured DN at given Sites for job submission, instead of proxies or tokens. Only at participating CEs and conditions apply.
*Core
FIX: (#7634) Avoid printing out clear text password in SQLAlchemy
FIX: (#7591) File.secureOpenForWrite: fix exception when opening in binary mode, fixes #7581
*DataManagementSystem
NEW: (#7633) Add a protocol parameter to the getReplicas method family
NEW: (#7619) prepare for FTS 3.13 release with breaking API
NEW: (#7617) DataManager.putAndRegister rejects too long filename
*Deployment
FIX: (#7628) fix the path of the CVMFS sync_packages.sh script
*All
FIX: (#7616) fix pylint 3.2.0 warnings
*MonitoringSystem
FIX: (#7584) ServerUtils: prevent getMonitoringDB from returning None
[v9.0.0a28]
*WorkloadManagementSystem
FIX: (#7574) serverUtils: jit imports
FIX: (#7534) Pilots submitted by SiteDirector won't add the pythonVersion flag
FIX: (#7521) Fix memory reporting
FIX: (#7510) SandboxStore: add VO if needed
*WorkloadManagement
FIX: (#7571) support file:/... as a location for the pilot files
FIX: (#7564) make sure CVMFS_locations is a list
CHANGE: (#7553) Remove files from the RemoteRunner execution
FIX: (#7552) JobCleaningAgent: fix exception in deleteJobsByStatus caused by mismatching job ID types
NEW: (#7529) introduce JobWrapperOfflineTemplate for uses in systems without external connectivity
CHANGE: (#7460) introduce JobWrapper.preprocess, process and postprocess
*test
NEW: (#7570) added pilot workflow tests to integration_tests
*Core
FIX: (#7569) Support M2Crypto 0.40.0+
CHANGE: (#7566) Replace the default PFN type ROOT_All with ROOT
FIX: (#7524) Depend on packaging
*environment.yml
NEW: (#7555) add cwltool
*Resources
FIX: (#7545) TimeLeft utility was unable to get values from the cfg
FIX: (#7532) support the case where HTCondor kills the jobs
*Test
FIX: (#7540) Redirect the output of popen in a file to fix #7473
FIX: (#7539) extra_module default to empty list
*FrameworkSystem
CHANGE: (#7511) ProxyDB: removed tables ProxyDB_Proxies and ProxyDB_Tokens
[v9.0.0a27]
*Core
FIX: (#7505) plotting TypeLoader works with editable installation
NEW: (#7453) Introduce an RPC stub equivalent for DiracX
*Test
CHANGE: (#7502) use pytest-rerun instead of flaky
*WorkloadManagementSystem
CHANGE: (#7498) removed GridEnv
FIX: (#7497) If the SoftwareDistModule is set in the Operations Section, add it to the Job JDL to restore previous behaviour
NEW: (#7453) FutureJobStateUpdate.setJobStatusBulk return a DiracX RPC stub
*WorkloadManagement
FIX: (#7493) check the VO from the task queues before submitting pilots
FIX: (#7488) JobAgent.setupProxy takes owner instead of ownerDN
*RequestManagementSystem
CHANGE: (#7453) adapt ForwardDISET to DiracX stub
*FrameworkSystem
CHANGE: (#7442) removed NotificationDN
[v9.0.0a26]
*FrameworkSystem
FIX: (#7491) dirac-proxy-info without the dirac group
*WorkloadManagement
FIX: (#7490) missing result in return statement
*tests
NEW: (#7484) add the state key in the test environment to fix diracx execution
[v9.0.0a25]
*Accounting
FIX: (#7486) Fix errors during insert into ac_in_* tables.
*Core
FIX: (#7483) Fix DISET calls with proxy to be used passed as an argument
*RequestManagementSystem
FIX: (#7482) RequestTask - download no-VOMS proxy if the owner group does not define VOMSRole
[v9.0.0a24]
*WorkloadManagement
FIX: (#7480) JobCleaningAgent - select random jobs for deletion rather than head and tail jobs.
FIX: (#7475) JobID type in PushJobAgent
*Interfaces
CHANGE: (#7472) dfind - more explicit failure report
*DataManagementSystem
NEW: (#7471) add tools for consistency checks
*tests
FIX: (#7470) check running containers in integration tests script
*WorkloadManagementSystem
CHANGE: (#7464) PilotAgentsDB: removed OutputReady and Broker fields
[v9.0.0a23]
*WorkloadManagement
FIX: (#7458) jobID type issue in JobAgent
*ConfigurationSystem
FIX: (#7454) getQueue() overriding the CE tags
*FrameworkSystem
FIX: (#7451) dirac-proxy-init printInfo without the dirac group
[v9.0.0a22]
*WorkloadManagement