-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathrelease.notes
More file actions
13627 lines (9406 loc) · 451 KB
/
release.notes
File metadata and controls
13627 lines (9406 loc) · 451 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.1.0]
*FileCatalog
FIX: (#8467) RucioFileCatalogClient.setMetadata returns empty result on success #8330
*DataManagementSystem
CHANGE: (#8466) FTS3 jobs don't call delete when TPC fails
*WorkloadManagement
NEW: (#8464) add `UseDiracXBackendOnly` CS option to SandboxStore to make DiracX the exclusive sandbox backend and disable local purging
FIX: (#8463) Add composite (DestinationSite, Queue, Status) index to PilotAgents table for SiteDirector.countPilots()
FIX: (#8463) Add JobName index to Jobs table for TransformationSystem and monitoring lookups
FIX: (#8462) Optimize TaskQueueDB matching queries by adding composite (TQId, Value) indices and replacing COUNT subqueries with EXISTS/NOT EXISTS
*Deployment
CHANGE: (#8463) USE JobDB; ALTER TABLE `Jobs` ADD INDEX `JobName` (`JobName`), ALGORITHM=INPLACE, LOCK=NONE;
CHANGE: (#8463) USE PilotAgentsDB; ALTER Table `PilotAgents` ADD INDEX `idx_dest_queue_status` (`DestinationSite`,`Queue`,`Status`), ALGORITHM=INPLACE, LOCK=NONE;
CHANGE: (#8462) ALTER TABLE tq_TQToBannedSites ADD PRIMARY KEY (TQId, Value), DROP INDEX TaskIndex;
CHANGE: (#8462) ALTER TABLE tq_TQToGridCEs ADD PRIMARY KEY (TQId, Value), DROP INDEX TaskIndex;
CHANGE: (#8462) ALTER TABLE tq_TQToGridMiddlewares ADD PRIMARY KEY (TQId, Value), DROP INDEX TaskIndex;
CHANGE: (#8462) ALTER TABLE tq_TQToJobTypes ADD PRIMARY KEY (TQId, Value), DROP INDEX TaskIndex;
CHANGE: (#8462) ALTER TABLE tq_TQToPlatforms ADD PRIMARY KEY (TQId, Value), DROP INDEX TaskIndex;
CHANGE: (#8462) ALTER TABLE tq_TQToSites ADD PRIMARY KEY (TQId, Value), DROP INDEX TaskIndex;
CHANGE: (#8462) ALTER TABLE tq_TQToTags ADD PRIMARY KEY (TQId, Value), DROP INDEX TaskIndex;
CHANGE: (#8446) USE ResourceStatusDB; DROP TABLE `NodeHistory`; DROP TABLE `NodeLog`; DROP TABLE `NodeStatus`;
*docs
NEW: (#8446) added RSS technical documentation
*ResourceStatusSystem
CHANGE: (#8446) Removed nodes (queues) tables
[v9.0.20]
*WorkloadManagement
FIX: (#8457) cache SandboxMetadataDB instance in JobSanity and JobCleaningAgent to avoid unnecessary DB overhead per job
[v9.0.19]
*TransformationSystem
FIX: (#8452) Bulk TransformationDB.getFileIDsForLFN to avoid full in memory table
*Tests
NEW: (#8420) script to debug and test CEs and the DIRAC interfaces to interact with them
*RucioFileCatalog
fix: add missing option in RucioFileCatalog.getUserMetadataBulk
[v9.0.18]
*Core
CHANGE: (#8433) Follow refactoring in DIRACGrid/diracx#741
[v9.0.17]
*WorkloadManagement
FIX: (#8441) JobAgent - do not fail already rescheduled job
*DataManagementSystem
FIX: (#8440) revert gfal2 error propagation until better solution
*Core
CHANGE: (#8435) Support Python 3.14
*Tests
FIX: (#8434) diracx-cli not being installed from wheel built from PR branch in integration test
*WorkloadManagementSystem
NEW: (#8425) Experimental job wrapper for cwl workflows
[v9.0.16]
*Tornado
FIX: (#8426) return when retrying another Tornado service
*Resources
FIX: (#8424) SingularityComputingElement: convert MemoryLimitMB to int before comparison with maxRAM
*WorkloadManagementSystem
CHANGE: (#8423) rescheduleJobs: allow reusing existing JobDB, TaskQueueDB, jobLoggingDB instances
*WorkloadManagement
NEW: (#8422) Support overriding configuration servers ins pilot JSON
[v9.0.15]
*DIRAC
FIX: (#8421) Fix default InputDataModule path in dirac.cfg
*Core
CHANGE: (#8419) the weekly index for OpenSearch uses also the year as a prefix
FIX: (#8405) rootPath for server installation can be a random string, followed by a timestamp
*RequestManagementSystem
CHANGE: (#8418) just ignore a shifter if we cannot get a matching proxy
*Resources
FIX: (#8417) SLURM getCEStatus last empty line
FIX: (#8412) add further details when time left cannot be obtained
FIX: (#8408) PoolComputingElement: fix: do not set a fictional ram limit, use 0 for no-limit
FIX: (#8406) adding basic RAM capabilities to InProcessCE
CHANGE: (#8404) improve getReplicas performances by sorting LFNs
CHANGE: (#8332) set default time for gfal operations
*WorkloadManagementSystem
NEW: (#8414) added a new table to TaskQueueDB for RAM requirements and matching
NEW: (#8366) InProcessComputingElement takes RAM requirements into consideration for jobs' matching
NEW: (#8366) PoolComputingElement takes RAM requirements into consideration when subdividing the pool
NEW: (#8366) SingularityComputingElement can enforce CG2 RAM limits
*DataManagementSystem
FIX: (#8413) check properly if an FTS error is recoverable
FIX: (#8410) Only submit FTS job with tokens if all hop support tokens
CHANGE: (#8402) batch getReplicas at the FileCatalogClient level instead of at the DM level for speedup
*Interfaces
FIX: (#8409) inputDataPolicy should not change the inputDataModule but set a parameter inside the arguments.
CHANGE: (#8407) Dirac().getInputDataCatalog - allow changing the inputDataPolicy
*TransformationSystem
CHANGE: (#8404) TransformationAgent does not bulk calls to dm.getReplicas
*FrameworkSystem
CHANGE: (#8403) (SystemAdministrator): add the possibility to install non-released software versions
*WorkloadManagement
NEW: (#8399) ability to adjust job wrapper log level
*CSAPI
FIX: (#8398) Have CSAPI return AffiliationEnds if existing
[v9.0.14]
[v9.0.0a70]
[v9.0.13]
*DataManagementSystem
FIX: (#8396) submit unmanaged token for FTS3 replication
*Resources
NEW: (#8382) Attempt to set the xrd checksum attribute when copying files localy
[v9.0.12]
*Resources
FIX: (#8393) make client_id and secret optional to avoid KeyError exceptions.
*ConfigurationSystem
NEW: (#8392) handle adding user AffiliationEnds section in the CS when modifying the user from CSAPI
*MonitoringSystem
FIX: (#8391) Addapt webApp to new getTransformations API
[v9.0.11]
*WorkloadManagement
FIX: (#8389) Use ObjectLoader for DB instantiation in WMS components
FIX: (#8389) Reuse DB objects when killing/deleting jobs
*Resources
CHANGE: (#8362) SSHCE export inputs/import outputs as a JSON file instead of using the stdout/stderr
[v9.0.10]
*DataManagementSystem
FIX: (#8381) make sure the DataManager knows the VO
*Interfaces
FIX: (#8380) DConfigCache - reset Registry caches after loading the configuration from the local disk cache
*TransformationSystem
CHANGE: (#8373) This contains various speed of for the TS, mostly by using temporary tables for the queries, only requesting what's needed in the DB, and bulking things more efficiently
[v9.0.9]
CHANGE: (#8359) Subprocess: use psutil for killing processes
[v9.0.8]
*DataManagementSystem
NEW: (#8263) add scitag to FTS transfers
[v9.0.7]
*DataManagementSystem
FIX: (#8367) FTS reports correct accounting for failed transfers
*WorkloadManagementSystem
FIX: (#8365) SiteDirector: siteNames, ceTypes, ces and tags are None by default
*FrameworkSystem
FIX: (#8361) use cachedmethod instead of cached in ProxyDB
*TransformationSystem
FIX: (#8361) use cachedmethod instead of cached in Utilities
*WorkloadManagement
CHANGE: (#8360) use PilotManager to get the pilot output(s) from a job ID in WMSAdministrator service
*ResourceStatusSystem
FIX: (#8357) Avoid negative values in the Space Accounting
*Resources
FIX: (#8355) AREX CE: fix for understanding slightly different formats
*Core
NEW: (#8352) Report errors for every failed attempt in M2SSLTransport initAsClient
FIX: (#8352) Use resolved socket address for SSL connections in M2SSLTransport
[v9.0.6]
*FrameworkSystem
NEW: (#8328) allow for multiple client per provider
*DataManagementSystem
NEW: (#8328) FTS3 gets tokens directly
[v9.0.5]
*Subsystem
CHANGE: (#8353) add PreferredURLPatterns to pilot.json
[v9.0.4]
[v9.0.3]
*DiracX
NEW: (#8347) Depend on released versions of DiracX
NEW: (#8347) Depend on diracx-cli to ease management of DiracX CS conversion
*FrameworkSystem
CHANGE: (#8324) Remove Registry/group option VOMSVO (simply use "VO")
[v9.0.2]
*MonitoringSystem
FIX: (#8343) remove Setup remnants
*CERNLDAPSyncPlugin
FIX: (#8341) cernAccountType is a list -- ensure CERNPersonId filled correctly
NEW: (#8334) sync CCID / CERN Person ID to CS
*WorkloadManagement
FIX: (#8340) Site Director stops trying to leverage banned CEs
FIX: (#8338) TokenManager - pass audience parameter as resource to fetchToken() to satisfy Check-In
*General
Remove setuptools from runtime dependencies, no longer required.
*Core
CHANGE: (#8323) Agressively close connections when serivces are overloaded
For examples look into release.notes
CHANGE: (#8312) allow one and only one diracx token in the proxy file
[v9.0.1]
*WorkloadManagementSystem
FIX: (#8321) Restore uploading local outputfiles from the job's directory to a specific LFN.
FIX: (#8317) use correct interface to _filterJobStateTransition from DIRAC APIs
*WorkloadManagement
FIX: (#8318) Killing jobs
*FileCatalog
FIX: (#8316) Fix non-existent charset in mysql schema definition
*RequestManagementSystem
CHANGE: (#8303) REA defaults changed for higher perfs
[v9.0.0]
*ConfigurationSystem
CHANGE: (#8298) Apply PreferredURLPatterns to Configuration refresh server list
[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