-
Notifications
You must be signed in to change notification settings - Fork 3
/
release-notes-5.0
3141 lines (1997 loc) · 135 KB
/
release-notes-5.0
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
HTML header: <title>dCache 5.0 Release Notes</title>
<!--#include virtual="/template/default-head.shtml" -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css"
integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous"/>
<!--link type="text/css" rel="stylesheet" href="jquery.tocify.css" /-->
<style type="text/css">
h5 {
font-size: 15px;
font-style: italic;
margin-top: 20px;
}
body {
padding-top: 20px;
}
@media (max-width: 767px) {
#toc {
position: relative;
width: 100%;
margin: 0px 0px 20px 0px;
}
}
@media print {
#toc {
display: none;
}
}
</style>
<div class="container">
<div id="banner">
<div id="bird_large">
<img src="/images/dcache-banner.png" class="bird"></img>
</div>
<div id="sidebar-b">
<span class="dcache-nav-bar">
<a href="/index.shtml">home</a>
|
<a href="/news.shtml">news</a>
|
<a href="/manuals/index.shtml">documentation</a>
|
<a href="/downloads/IAgree.shtml">downloads</a>
|
<a href="/feedback.shtml">feedback</a>
|
<a href="/manuals/googlesearch.shtml">search</a>
|
<a href="/imprint.shtml">imprint </a>
</span>
</div>
</div>
<div id="content">
<div class="row">
<div class="page-header">
<h1>What's new in dCache 5.0<br/>
<small>Release notes</small></h1>
</div>
## Highlights
- dCache now supports Java 11 as its platform
- Documentation, especially the dCache Book, received a major revision and will remain in focus
- HTTP 3rd-party-copying has matured to a feature-rich, well tested state
- Pinboard includes timestamps
- updated external dependencies
## Incompatibilities
This release breaks compatibility with pools running dcache version 3.2 or earlier.
## Acknowledgments
We thank HTW Berlin students Marcel Munce, Ferdinand Wolff and MaKrHTW (???) as well
as Onno Zweers from surfSARA for their contributions.
## Release 5.0.37
### dcache-xrootd
The version is upgrated to xrootd4j 3.5.7 with lossen username validation, so that
usernames like `foo.1234:56` are no longer rejected.
The current release fixed java.lang.IllegalStateException: ChecksumChannel must not be written to after getChecksums.
TPC client first will be shut down when
the pool netty channel goes inactive.
### Changelog 5.0.36..5.0.37
<!-- git log 5.0.36..5.0.37 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[c57beae](https://github.com/dcache/dcache/commit/c57beae579c3252159b15ad834e759b926864278)
: [maven-release-plugin] prepare release 5.0.37
[43b7357](https://github.com/dcache/dcache/commit/43b7357982cc6eba7836df6b06ab197ece4ab0bc)
: dcache-xrootd: bump to xrootd4j 3.4.7
[79c7b05](https://github.com/dcache/dcache/commit/79c7b05a607d51732df979dfb092a01d4d8cd571)
: dcache-xrootd: cancel TPC transfer when client disconnects unexpectedly from pool
[ba3e17c](https://github.com/dcache/dcache/commit/ba3e17c1f6491538d3c141e296f23134b6dae225)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.36
### pool
The unix xrootd tpc security plugin was included in order to
enable the dCache TPC client to use a dCache pool as source
when signed hash verification is on. However, this is now fixed and
no special configuration necessary for organizations (like Tier 1)
needing to communicate with EOS.
### Changelog 5.0.35..5.0.36
<!-- git log 5.0.35..5.0.36 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[ebd370f](https://github.com/dcache/dcache/commit/ebd370f65de9f9bd5fafd0de0e80ca2abb4119a9)
: [maven-release-plugin] prepare release 5.0.36
[2df3093](https://github.com/dcache/dcache/commit/2df3093461a2c8d3d7b4728c6b768ebdac02c161)
: pool (xrootd): make tpc security plugin default unix
[71828df](https://github.com/dcache/dcache/commit/71828df22abbea6aeb9483b5a8ece47923cf2fa7)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.35
### frontend
When frontend is run in a core domain and there is
no history service reachable, the retry on no route
to cell ends up spamming the message queues. This is now fixed.
### xrootd
The current release fixed compatible level security for sigver.
The xrootd client has a command-line option, `--path`, which
tells the server to create missing directories. This option
is included in two-party copy, but setting it for TPC has
no effect. TPCs which wish to write to dCache (as destination)
to a non-existent subdirectory fail. This is now fixed and dCache no longer fails in these cases.
### Changelog 5.0.34..5.0.35
<!-- git log 5.0.34..5.0.35 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[ff35a45](https://github.com/dcache/dcache/commit/ff35a45a9261f8d1165030f2210ff5a0c4470206)
: [maven-release-plugin] prepare release 5.0.35
[b2221af](https://github.com/dcache/dcache/commit/b2221af01f208746be798016ee9a99f36e8600d9)
: dcache-xrootd: always create missing directories on write
[ae0c458](https://github.com/dcache/dcache/commit/ae0c4581b7c022af40b203f6081ac50db4f2bdef)
: dcache-xrootd: fix compatible level security for sigver
[58754d4](https://github.com/dcache/dcache/commit/58754d4f6dd2c5b949bbfddcb2948ccaaf691d79)
: dcache-frontend: remove retry flag on sendAndWait to history service
[43ce3d1](https://github.com/dcache/dcache/commit/43ce3d10eab6ff318acb781be31cbfecefde6823)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.34
### dcache
QOS migration policy engine was raising JVM error when no tape pool found.
This is now fixed and the normal behavior is that HTTP error code reported back with `No HSM pool found`.
### frontend
The current release improved error responses and they are more specific now.
The current release fixed the NPE stack trace arised because the pool
data could be sent with a default sweeper data
object.
### Changelog 5.0.33..5.0.34
<!-- git log 5.0.33..5.0.34 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[6b9bd86](https://github.com/dcache/dcache/commit/6b9bd86b52cbb3c9bdd3137e35c0023cd1f77494)
: [maven-release-plugin] prepare release 5.0.34
[d978392](https://github.com/dcache/dcache/commit/d978392f8e687e4767745e747178e4be1a171df1)
: dcache-frontend: make ErrorResponseProvider return the more specific error message
[f60c4f6](https://github.com/dcache/dcache/commit/f60c4f6e90ab7ba9268d78e14cd67f62fd36a118)
: dcache: qos migration policy engine should not raise JVM error when no tape pool foundMotivation:
[10bdda8](https://github.com/dcache/dcache/commit/10bdda884b130759eb40e1e3be91f3c1decffc6e)
: dcache-history,dcache-frontend: guard against unconfigured sweeper histogram
[462af62](https://github.com/dcache/dcache/commit/462af62def0220ea44cffc2c2bd5ea582919ab68)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.33
### frontend
From RESTful admin API, the POST to
`pools/{name}/usage/mode -d {"rdonly":true}` failed but `{"rdonly": "true"}` succeeded.
This is fixed now and both boolean and string work.
The current release fixed stack trace in logs.
### Changelog 5.0.32..5.0.33
<!-- git log 5.0.32..5.0.33 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[7c5f528](https://github.com/dcache/dcache/commit/7c5f5289987ad0468c96465930c89396d97b0b85)
: [maven-release-plugin] prepare release 5.0.33
[7d16cda](https://github.com/dcache/dcache/commit/7d16cda225b63c26d5fafd311f8b319e75004804)
: dcache-frontend: allow pool enable/disable to use boolean JSON value
[7e5fc48](https://github.com/dcache/dcache/commit/7e5fc483932abc7fc71a3c89194ca9f1f9dc4745)
: dcache-frontend,history: protect against missing highest bin in histogram data
[6cb80d6](https://github.com/dcache/dcache/commit/6cb80d64b002c0d8bf456adadcb88c53264e606c)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.32
### dcacheview
dcache-view version 1.5.7 is released
## Release 5.0.32
### dcacheview
dcache-view version 1.5.7 is released
### Changelog 5.0.31..5.0.32
<!-- git log 5.0.31..5.0.32 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[bd15b47](https://github.com/dcache/dcache/commit/bd15b47a0fd3c8c0f2d75af106e5279f7398e930)
: [maven-release-plugin] prepare release 5.0.32
[3a61be3](https://github.com/dcache/dcache/commit/3a61be3c3fbe01098ebbada8dc08eac3a838ed8d)
: dcache, frontend: release dcache-view version 1.5.7
[07762f7](https://github.com/dcache/dcache/commit/07762f72d303fa590176559813ce5a567a53958d)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.32
### frontend
The current release added support for OIDC names and Client-IDs with spaces.
### Changelog 5.0.31..5.0.32
<!-- git log 5.0.31..5.0.32 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[bd15b47](https://github.com/dcache/dcache/commit/bd15b47a0fd3c8c0f2d75af106e5279f7398e930)
: [maven-release-plugin] prepare release 5.0.32
[3a61be3](https://github.com/dcache/dcache/commit/3a61be3c3fbe01098ebbada8dc08eac3a838ed8d)
: dcache, frontend: release dcache-view version 1.5.7
[07762f7](https://github.com/dcache/dcache/commit/07762f72d303fa590176559813ce5a567a53958d)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.31
### frontend
The current release removed unnecessary login requirement on restores and transfers.
The current release fixed a bug in the frontend if the inotify events are used.
### skel
The current release repaired erroneous batch directives before cell creation.
Now it is fixed and domain is not left in zombie state
after a fatal error, but restarts,
as it should.
### srm
Now host IP is used for comparison when determining if SURL is local.
### Changelog 5.0.30..5.0.31
<!-- git log 5.0.30..5.0.31 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[9273c5f](https://github.com/dcache/dcache/commit/9273c5f637640a916078dd97551b5c8578bc37f6)
: [maven-release-plugin] prepare release 5.0.31
[cfecbda](https://github.com/dcache/dcache/commit/cfecbdaa6b1332bc87a3a04fb57b71f776fff608)
: skel: repair erroneous batch directives before cell creation
[90f5227](https://github.com/dcache/dcache/commit/90f5227d83b263ffde6a203820e35488f9dcd9f9)
: dcache-frontend: remove unnecessary login requirement on restores and transfers
[a805d4b](https://github.com/dcache/dcache/commit/a805d4b83cb798f0b6739713197f5dd33c52fe47)
: srm: use host IP for comparison when determining if SURL is local
[64b4f40](https://github.com/dcache/dcache/commit/64b4f409bc8ebc3fd58fefdb955866e86db97e68)
: frontend: events inotify fix deadlock
[683e8e9](https://github.com/dcache/dcache/commit/683e8e961150dde51ebb5d476b734d52f082c51d)
: dcache,frontend: release dcache-view version 1.5.6
[4dc3213](https://github.com/dcache/dcache/commit/4dc32135565e6649a2c38d90d9414f96cb36226f)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.30
### cell
Curator client was not able to restore the connection to ZK server after
network partitioning. The is now fixed.
### skel
The current relase fixed tape-reserved size calculation.
### webdav
The current release fixed, where the WebDAV door failed to follow RFC 4918.
This make some clients reject dCache WebDAV door as a valid WebDAV
endpoint.
### Changelog 5.0.29..5.0.30
<!-- git log 5.0.29..5.0.30 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[7ec7ca4](https://github.com/dcache/dcache/commit/7ec7ca4108104b520fa3b5f976edc1001cf473ae)
: [maven-release-plugin] prepare release 5.0.30
[b353b4b](https://github.com/dcache/dcache/commit/b353b4b0877f1c7bdf1f5d9bd48e392c7decbc07)
: Fix tape-reserved size calculation
[aa43c70](https://github.com/dcache/dcache/commit/aa43c703442e7b35b9b9f19a808d325adbe5a172)
: webdav: include DAV header in OPTIONS requests.
[815f749](https://github.com/dcache/dcache/commit/815f749d9032db4326e899b2494a929494dfe921)
: cells: do not re-define zookeeper watcher
[0905ddc](https://github.com/dcache/dcache/commit/0905ddc24cc94751865b28d2a85151944bd2521c)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.29
### canl
The current release updated lib version to 2.5.1.
### Changelog 5.0.28..5.0.29
<!-- git log 5.0.28..5.0.29 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[035e1c5](https://github.com/dcache/dcache/commit/035e1c50e05de5d54b9b83c616cdde122d47f1e2)
: [maven-release-plugin] prepare release 5.0.29
[f980837](https://github.com/dcache/dcache/commit/f980837b3ac981f6f42458706f0dfd1272d2aec4)
: canl: update to version 2.5.1
[51fb90a](https://github.com/dcache/dcache/commit/51fb90ae690dfd36501ab9c6d54fddae205a2917)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.28
### config
A typo in the dcap config file was fixed correcting
`dcacp.enable.kafka` to `dcap.enable.kafka`.
### dcache
Pool compatibility with Xrootd-2 and Xrootd-4 versions is now allowed.
### webdav
The current release fixed an issue of transfers through dCacheView when the webdav door is configured with
empty `webdav.allowed.client.origins` value, which is the default value.
### Changelog 5.0.27..5.0.28
<!-- git log 5.0.27..5.0.28 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[a74929d](https://github.com/dcache/dcache/commit/a74929da44815e3758bb6653f31f0249d9f0f571)
: [maven-release-plugin] prepare release 5.0.28
[f96d231](https://github.com/dcache/dcache/commit/f96d231f9c3eed9b90050d062ce615c672e60427)
: dcache: add null check to pool info collector util
[7d98792](https://github.com/dcache/dcache/commit/7d98792a726ab1762e3bd0645030b5ec242f923f)
: config: fix typo in property name
[f94e80e](https://github.com/dcache/dcache/commit/f94e80e0d146395fae89f1273957b6b726bd9802)
: webdav: fix CORS when all clients are allowed to connect
[22a2d63](https://github.com/dcache/dcache/commit/22a2d638938601eb25c71075596a0a8147e21723)
: dcache: allow pool compatibility with Xrootd-2 and Xrootd-4 versions
[2cd1b02](https://github.com/dcache/dcache/commit/2cd1b02313677520afdd57a42007c2eaecf0f8fd)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.27
### srm
The current release fixed a problem resulting in high CPU use in SrmManager if clients are
attempting to pin a file and PinManager is unavailable.
A regression fixed where SrmManager will reject all QUEUED jobs and
INPROGRESS BringOnline requests on restart, if there are no SRM doors
running when SrmManager starts.
### Changelog 5.0.26..5.0.27
<!-- git log 5.0.26..5.0.27 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[d9098bf](https://github.com/dcache/dcache/commit/d9098bf939dab36d74629f2a9120bb536c8d7898)
: [maven-release-plugin] prepare release 5.0.27
[a5f60cc](https://github.com/dcache/dcache/commit/a5f60cc1219a1ac077273f2d2442cdf17da7081c)
: SrmManager: fix handling of saved requests on start-up
[158795b](https://github.com/dcache/dcache/commit/158795bc52a0b9b5a21272d2c73feedb29fdc976)
: SrmManager: avoid spamming if PinManager is down
[e58343a](https://github.com/dcache/dcache/commit/e58343a8812b6759c2e1879700363a400c299ef3)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.26
### doors
The current release fixed a bug where running the `lb set tags` admin command without any
arguments triggers a NullPointerException.
### pool
The current release improved error messages about jobs cancellation.
### scripts
The dcache-storage-descriptor command no longer requires a URL argument.
### Changelog 5.0.25..5.0.26
<!-- git log 5.0.25..5.0.26 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[e16683b](https://github.com/dcache/dcache/commit/e16683bd22ce997e7a966d8aaf2e0923086ebb18)
: [maven-release-plugin] prepare release 5.0.26
[432aa60](https://github.com/dcache/dcache/commit/432aa60f43cfb60cdeac7ed3722100ff3400eda3)
: doors: fix "lb set tags" command with no arguments
[2633541](https://github.com/dcache/dcache/commit/26335413dd3add3d49281e1e0ebebe41f167cb94)
: pool: improve messages when migration job is cancelled.
[88cce36](https://github.com/dcache/dcache/commit/88cce36f273647b1b917288d35b85e74ddd583ad)
: scripts: fix variable ordering in dcache-storage-descriptor
[d164159](https://github.com/dcache/dcache/commit/d16415985e02ce850014cc3ff97556799d7bf3e3)
: docs: TheBook add chapter on SRR
[f52ee67](https://github.com/dcache/dcache/commit/f52ee67c44c56c0e071aa2be179592316d4daeb5)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.25
### pool
Pool health-check log messages now include the pool's name.
### webdav
On an unsuccessful HTTP-TPC pull request, dCache will delete the file.
If this deletion did not work then an error was logged. This is fixed now and
failures to delete the incomplete file from a failed HTTP-TPC pull
request, where the incomplete file has been deleted by some other means
are now logged at DEBUG level, rather than WARN level.
### xrootd
The current release refited checksum handling after xrootd4j bug fix.
### Changelog 5.0.24..5.0.25
<!-- git log 5.0.24..5.0.25 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[bc977bd](https://github.com/dcache/dcache/commit/bc977bda3994d3a99fe080c5cbfaff23b2358480)
: [maven-release-plugin] prepare release 5.0.25
[0ab2c68](https://github.com/dcache/dcache/commit/0ab2c68417e6960b4968334e1caa4564941f631e)
: dcache-xrootd: refit checksum handling after xrootd4j bug fix
[3cedbaa](https://github.com/dcache/dcache/commit/3cedbaa7e8499b72e4e88d0aa67ccfcd829cf7a9)
: webdav: avoid logging non-error as an error
[659b63f](https://github.com/dcache/dcache/commit/659b63f1eb6c094c24b8478f29ae60f79d68782e)
: pool: include pool name in health-check reports
[3cf1302](https://github.com/dcache/dcache/commit/3cf1302eee61d1253f6b802f2883ee07b480f4b0)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.24
### frontend
The current release fixed QoS pin semantics.
A bug is fixed in frontend that results in a NullPointerException for
billing queries where no limit is specified.
### Changelog 5.0.23..5.0.24
<!-- git log 5.0.23..5.0.24 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[fcc7919](https://github.com/dcache/dcache/commit/fcc791938d3351e8f169b3f5193851a423b49b9f)
: [maven-release-plugin] prepare release 5.0.24
[ba65ccd](https://github.com/dcache/dcache/commit/ba65ccd0139790306624d40ebba1457db8b6d91a)
: frontend: fix NPE if limit is not specified
[2a20915](https://github.com/dcache/dcache/commit/2a209156bea87c2d00f5666797b7c3c42306895d)
: dcache-frontend: fix QoS pin semantics
[44d9b74](https://github.com/dcache/dcache/commit/44d9b74853c80759c13c02f4884294bd43a3611c)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.23
### Changes affecting multiple services
The Apache Commons Compress library used in dCache was updated to version 1.19.
A rare deadlock situation in the Chimera database was eliminated. In cases
where, within the same directory, concurrent mkdir and rmdir events happened,
transactions within the database could deadlock. This would be indicated by the message
ERROR: deadlock detected
in the logs.
### pool
There were reports of extraordinarily high CPU usage on pool nodes with a large
number of cached files. Through an optimization of the `sweeper`, CPU usage
was reduced significantly.
### xrootd
This release fixes a vulnerability in dCache's XRootD protocol implementation.
We recommend that all sites update their XRootD doors.
Details will be made available through EGI Security and, in a week's time, through an
update to these release notes.
### Changelog 5.0.22..5.0.23
<!-- git log 5.0.22..5.0.23 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[f16f4828dd](https://github.com/dcache/dcache/commit/f16f4828ddf142f568f55de60040170d78fa4d07)
: [maven-release-plugin] prepare release 5.0.23
[efaa3c6089](https://github.com/dcache/dcache/commit/efaa3c60899502f86cd4a4bde0243bf6b4d6280f)
: dcache-xrootd: honor read paths when listing directories
[d32187f7c3](https://github.com/dcache/dcache/commit/d32187f7c32ea81ea36e8e641e34ee30ce434fd3)
: resilience: don't compare Integer objects by refference
[c3775c8d57](https://github.com/dcache/dcache/commit/c3775c8d5707a06bb176780bd0c7cb95a44f28a8)
: sweeper: use in-memory map instead of repository for histogram data
[de14b4877f](https://github.com/dcache/dcache/commit/de14b4877f1be548cf826172a1dcd22a2236da4b)
: dcache-xrootd: replace constants for version number
[20db76731a](https://github.com/dcache/dcache/commit/20db76731a248b29578fb41cfa45ed8c6cc78ad3)
: dcache-xrootd: update protocol version numbers
[9af1f67ed9](https://github.com/dcache/dcache/commit/9af1f67ed93efa7b00af5c62be8566fa2dd5fd34)
: libs: update apache.commons:commons-compress to 1.19
[e9ff3b259f](https://github.com/dcache/dcache/commit/e9ff3b259f9b63f7dcede3406b290fed11a2992c)
: chimera: fix ABBA db deadlock when mkdir and rmdir run concurrently
[fe723c8563](https://github.com/dcache/dcache/commit/fe723c85632e24dae7f6a7ca483921274451a9cd)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.22
### dcap
dcap door could not handle out-of-date errors. This is now fixed.
### httpd
The current release fixed escape status field in HttpPoolMgrEngineV3.
### Changelog 5.0.21..5.0.22
<!-- git log 5.0.21..5.0.22 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[d15ec87](https://github.com/dcache/dcache/commit/d15ec87d83bf1d1d59aa5cfeb943349c80c1f4f5)
: [maven-release-plugin] prepare release 5.0.22
[3b69ad0](https://github.com/dcache/dcache/commit/3b69ad08aedc8adb5b88532c7132999d0844818f)
: dcap: restart pool selection on OUT-OF-DATE error
[0cdb5fa](https://github.com/dcache/dcache/commit/0cdb5fad836d976b97f16f0e5cfd813266d1e19e)
: httpd: escape status field in HttpPoolMgrEngineV3
[336f472](https://github.com/dcache/dcache/commit/336f472eb103c38b5a0860a2c730064aa8686902)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.21
### srm
A new user community requires the srm tools to be able to handle
very large file listings. During preliminary tests, OutOfMemory
errors from the srmls tool were observed. This is now fixed and
srm can now support operations on very large file lists
without running out of memory.
### webdav
The current release added allow header to list of response headers for OPTION method
request.
### Changelog 5.0.20..5.0.21
<!-- git log 5.0.20..5.0.21 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[783dd61](https://github.com/dcache/dcache/commit/783dd61aa4d393b018fb204ea61a8b46bfcd595e)
: [maven-release-plugin] prepare release 5.0.21
[79baec2](https://github.com/dcache/dcache/commit/79baec2d93547d939476a886d3cfb22657b72e6b)
: webdav: add allow header to OPTION method request
[0a97928](https://github.com/dcache/dcache/commit/0a979284b918468ed0e7fff6bb2456d263d2b91c)
: srm: Remove JVM memory limits
[1c8c08c](https://github.com/dcache/dcache/commit/1c8c08cfd08b8aedaad1654bcc82a8f98bf3a733)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.20
### common
The current release fixed formatting of error message in Checksum.
### frontend
Admins may now configure frontend to specify in which country (or
countries) data may be stored. This information is visible through
dCacheView.
### Changelog 5.0.19..5.0.20
<!-- git log 5.0.19..5.0.20 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[7d77a9c](https://github.com/dcache/dcache/commit/7d77a9ca688bf25c030c54fb4b67116756ad9b45)
: [maven-release-plugin] prepare release 5.0.20
[1687106](https://github.com/dcache/dcache/commit/16871068996e4646e9b7a38efd939a5d28497dce)
: frontend: make geographic placement configurable
[93a253e](https://github.com/dcache/dcache/commit/93a253eda97e65db8b82a43dfe25d65afc36efba)
: common: fix formatting of error message in Checksum
[7883369](https://github.com/dcache/dcache/commit/788336959e5008a108457b615cddfb9bd3a5bb20)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.19
### nfs
NPE on "show transfers" command is now fixed.
### webdav
The current release fixed CORS for WebDAV doors that do not allow anonymous
access; in particular, to support dCacheView uploading
and downloading files with such authentication-required
WebDAV doors.
### Changelog 5.0.18..5.0.19
<!-- git log 5.0.18..5.0.19 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[3d5c25b](https://github.com/dcache/dcache/commit/3d5c25b2bea30641a209b929d84cb602d54ea5f8)
: [maven-release-plugin] prepare release 5.0.19
[63a2357](https://github.com/dcache/dcache/commit/63a23570fd6cfa2b45d4b0b896f9bc1a1daacb79)
: nfs: fix NPE on "show transfers" command
[5b3067f](https://github.com/dcache/dcache/commit/5b3067f1e5e663a7d2c9a4f1966019b2e3da2b15)
: webdav: fix cross origin resources sharing issue
[49df7bb](https://github.com/dcache/dcache/commit/49df7bb52526f7992d0c70814931b8c57876fcb3)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.18
### chimera
The shell infrastructure supports commands being given interactively, on
the commandline (e.g., 'chimera mkdir /path/to/dir') and from stdin
(e.g., 'echo "mkdir /path/to/dir" | chimera'). `chimera` now supports the latter
case and properly shows command output when invoked in that fashion.
### frontend
This release updates dCache View to 1.5.5.
### webdav
A client may issue a PUT request that targets an existing collection
resource; i.e., attempt to write a file as a path that is a directory.
dCache, until now, responded with an incorrect status code of 500. This release
changes the status code for this operation to 405 (Method not allowed),
thus keeping closer to RFC 4918.
### xrootd
This release improves compatibility with the xrdcp client in versions \>4.9
by responding correctly to query strings requesting a specific checksum type.
### Changelog 5.0.17..5.0.18
<!-- git log 5.0.17..5.0.18 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[d1b275f790](https://github.com/dcache/dcache/commit/d1b275f790928b258a4aded6dbe6f415d6ebd959)
: [maven-release-plugin] prepare release 5.0.18
[8b8f32315c](https://github.com/dcache/dcache/commit/8b8f32315cc5e801fcb79c3a69fe16c7da4547ec)
: dcache, frontend: release dcache-view version 1.5.5
[9171aee1a4](https://github.com/dcache/dcache/commit/9171aee1a4f8eadec3c0a5eca2867f4667004bc0)
: chimera: chimera shell should show output when commands come from stdin.
[0859aa2792](https://github.com/dcache/dcache/commit/0859aa279215fb5d64c675bdf8a94a572d788d1e)
: webdav: return 405 status code for PUT requests targeting collections
[c7dca2d4de](https://github.com/dcache/dcache/commit/c7dca2d4de9aa85c979453377c9e02038ebad583)
: dcache-xrootd: add checksum cgi handling to door query
[cd0a6f0f66](https://github.com/dcache/dcache/commit/cd0a6f0f6697d9e67da1c068924ffb42a5f4d587)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.17
### many
The `dcache pool ls` command now provides correct output even if the pool is
defined with a single-digit number of bytes.
### Changelog 5.0.16..5.0.17
<!-- git log 5.0.16..5.0.17 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[719fb8a506](https://github.com/dcache/dcache/commit/719fb8a50695da135489fb2ff0743ef2b4ee5942)
: [maven-release-plugin] prepare release 5.0.17
[639c8e204c](https://github.com/dcache/dcache/commit/639c8e204c804e26e7aa474d30b38081592396a5)
: scripts: avoid copy-n-paste error when calculating pool size
[40b7849ade](https://github.com/dcache/dcache/commit/40b7849ade1db7cac48ccec88c9dd6017a26305a)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.16
### frontend
This release updates the dCache View web GUI to version 1.5.4.
### ftp
HAProxy can probe endpoints to discover if
they are still alive.
The FTP door has an optimisation that detects such probes and does not
create the FTP command interpreter, since the FTP client (the HA-Proxy
instance) is calling on behalf of itself, and will not issue any FTP
requests.
This release fixes a regression that would cause erroneous
NullPointerExceptions when FTP doors were probed by HAProxy.
### pool
The default value for the xrootd Third-Party Copying server response timeout,
`pool.mover.xrootd.tpc-server-response-timeout`, was increased from 2 to 30 seconds
to provide more robust behaviour in the face of high loads and network congestion.
### transfermanager
Error messages like the WebDAV door's
`Failed to fetch information for progress marker: failed to query pool: (0) Job not found : Job-1`
where the TransferManager is unable to discover the
current status of the pool mover now include the pool's name,
which should make debugging easier.
### Changelog 5.0.15..5.0.16
<!-- git log 5.0.15..5.0.16 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[437a8768b0](https://github.com/dcache/dcache/commit/437a8768b0cecfbb9dcc9847dfa965df40825434)
: [maven-release-plugin] prepare release 5.0.16
[010d456aad](https://github.com/dcache/dcache/commit/010d456aad866512d2e96cee76aee96304587565)
: dcache, frontend: release dcache-view version 1.5.4
[214cb68c6f](https://github.com/dcache/dcache/commit/214cb68c6ff6fac40bc5375367b834dcf8fd044b)
: pools: make the xrootd tpc response timeout less aggressive
[c0a95a2f71](https://github.com/dcache/dcache/commit/c0a95a2f71b50bf744874673ed8a34d0c7029ffa)
: transfermanager: include pool name in error for 'mover ls' failures
[2db61d1da5](https://github.com/dcache/dcache/commit/2db61d1da5d4666f09eb959de9b99286c22814e5)
: ftp: avoid NPE on HA-Proxy probes
[843a15b9a5](https://github.com/dcache/dcache/commit/843a15b9a5666f38a830800561d8b5eab84e44bd)
: core: fix pool selection in killAll command of TransferManager
[1c96bb4b77](https://github.com/dcache/dcache/commit/1c96bb4b77e2533a7f11ff23ef28c62bc6c8d9b4)
: [maven-release-plugin] prepare for next development iteration
## Release 5.0.15
### Changes affecting multiple services
This release includes an updated Jetty library, with the update adressing
CVE-2019-10247.
This release includes an updated Jetty library, with the update adressing
CVE-2019-10247.
### dcap
The Kafka messaging implementation in the dcap service has been made more robust,
fixing issue [#4831](https://github.com/dCache/dcache/issues/4831).
### frontend
Periodic activity associated with the frontend door is now logged with the
door's cell name. Such messages will also appear in the door's
pinboard.
### nfs
Periodic activity associated with the NFS door is now logged with the
door's cell name. Such messages will also appear in the door's
pinboard.
### pool
Attempting to start a full checksum scan (with `csm check *`) while an
existing scan is still running is no longer reported as a bug.
Pool start-up logging now includes the corresponding pool cell name.
An internal timing check was updated, which should result in more robust pool
behaviour. There should be no user-visible impact.
### webdav
Periodic activity associated with the WebDAV door is now logged with the
door's cell name. Such messages will also appear in the door's
pinboard.
### xrootd
A new configuration property, `pool.mover.xrootd.tpc-server-response-timeout`, allows
setting a timeout for xrootd 3rd party copy operations. This can also be changed through
the new admin command `xrootd set server response timeout`.
### Changelog 5.0.14..5.0.15
<!-- git log 5.0.14..5.0.15 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[61228154c6](https://github.com/dcache/dcache/commit/61228154c66451d6b269a86c566b31275548705c)
: [maven-release-plugin] prepare release 5.0.15
[df878d862d](https://github.com/dcache/dcache/commit/df878d862da804f0aa9a5fd171618e681a6a69fb)
: pool: avoid IllegalStateException in 'csm check *' command
[76575b0771](https://github.com/dcache/dcache/commit/76575b077102a42e4385b2cdf0bc2486869a353a)
: Update config-SRM.md
[9ab6197b73](https://github.com/dcache/dcache/commit/9ab6197b73d456081cea4b86d1dfc299e633cdfb)
: Update config-SRM.md
[462cf31a93](https://github.com/dcache/dcache/commit/462cf31a93b5543d49cf8882c622a5bed87e32aa)
: dcap: fix premature close of kafka sender
[df99ce0710](https://github.com/dcache/dcache/commit/df99ce0710ac6385ee24b9f9daae42b745f82138)
: sweeper: compute now after the values have been fetched
[fa071d90cc](https://github.com/dcache/dcache/commit/fa071d90cc5f9ac80df36b38e6d28fb7e453aad7)
: libs: use jetty 9.4.18.v20190429
[cda8868232](https://github.com/dcache/dcache/commit/cda8868232d7e9529d98d2ef6f61d89a8eda83c9)
: dcache-xrootd: add ability to override default timeout for server response (TPC)
[3b9c7f7674](https://github.com/dcache/dcache/commit/3b9c7f7674785f0bc4050570fc0ffd839cf7724f)
: [maven-release-plugin] prepare for next development iteration
[6ec0c14175](https://github.com/dcache/dcache/commit/6ec0c1417599e6f31235311f1ea4ab680500f1d4)
: frontend: include CDC in scheduled activity
[99c377c2f6](https://github.com/dcache/dcache/commit/99c377c2f663b641c3fe215233f4bb7dfc2a5a4d)
: nfs: include CDC in scheduled activity
[6b2298ec51](https://github.com/dcache/dcache/commit/6b2298ec51a3b74d097de66eee4e3c9843a84fae)
: webdav: include CDC in scheduled activity
[4e146e7e02](https://github.com/dcache/dcache/commit/4e146e7e028db33c80ab410334103e768e1ce1d3)
: pool: ensure initialisation thread has correct CDC information
[ec475d6d07](https://github.com/dcache/dcache/commit/ec475d6d071983f2d0ab9a98c1ecb7d05228f7f7)
: jetty: make CanlContextFactory subclass of jetty.ssl.SslContextFactory.Server
[1acd5f4f3d](https://github.com/dcache/dcache/commit/1acd5f4f3d35d16bd62ad91d0be3c00e995de2fa)
: pom: use jetty 9.4.17.v20190418
## Release 5.0.13
### alarms
To ease troubleshooting, the POOL_DEAD alarm message now includes the pool name.
### pinmanager
A bug was fixed where PinManager's `bulk ls` admin command yielded a
NullPointerException if the optional argument was omitted.
A typo prevented the error message "Remote connection failure while unpinning..." from
appearing completely and correctly in the logs. The error message string now contains
the message string of the underlying Exception, hopefully providing helpful details for
troubleshooting.
### pool
A regression that prevented a replica's last access time from being updated was fixed.
A regression that prevented a replica's position in the LRU queue for garbage collection from being updated was fixed.
### webdav
Users asserting the "admin" role would occasionally receive
NullPointerExceptions when trying to transfer files through
WebDAV. This release fixes that issue.