-
Notifications
You must be signed in to change notification settings - Fork 3
/
release-notes-6.1
2225 lines (1398 loc) · 90.9 KB
/
release-notes-6.1
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 6.1 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 6.1<br/>
<small>Release notes</small></h1>
</div>
## Highlights
- Optional TLS for p2p transfers
- Zone-aware cell messaging
- New serialization format
## Incompatibilities
Starting release 6.1 the `BerkeleyDBMetaDataRepository` is the default metadata repository for the pools.
Sites that was not explicitly specifying `pool.plugins.meta` property have to set the old default value:
```
pool.plugins.meta=org.dcache.pool.repository.meta.file.FileMetaDataRepository
```
Pool in 6.1.x are not compatible with older dcap doors. However, new dcap doors can operate with existing
pools.
## Acknowledgments
(tbd, this section uses markdown formatting)
## Release 6.1.36
### acl
The group ACEs now apply to desired group instead of to a users with the
same numeric id.
### Changelog 6.1.35..6.1.36
<!-- git log 6.1.35..6.1.36 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[e320f183a5](https://github.com/dcache/dcache/commit/e320f183a5aa3b6ebb5de996951b8e070126abe1)
: [maven-release-plugin] prepare release 6.1.36
[0ce852a52d](https://github.com/dcache/dcache/commit/0ce852a52d1846c352413db2cebecf44ec9540b9)
: acl: set IDENTIFIER_GROUP flag if WHO is GROUP or OWNER_GROUP
[2f9ceb031c](https://github.com/dcache/dcache/commit/2f9ceb031c81dcd052b18241e740aceb634a35d3)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.35
### frontend
SRR returns data now with official json schema
### webdav
Fix how sym-links are shown in the static HTML (web-browser) view from
the WebDAV door.
### Changelog 6.1.34..6.1.35
<!-- git log 6.1.34..6.1.35 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[ac22afcd25](https://github.com/dcache/dcache/commit/ac22afcd254b7a8a278602292c959ec4cf277138)
: [maven-release-plugin] prepare release 6.1.35
[6fa435b89e](https://github.com/dcache/dcache/commit/6fa435b89e09b533651953f68d07f1a6298850be)
: frontend: add service to provide Storage resource reporting
[df65e59b1b](https://github.com/dcache/dcache/commit/df65e59b1b7e73199fb9adaf4a2d4ce1d796c5d7)
: webdav: update representation of symbolic links in HTML page
[be4983de53](https://github.com/dcache/dcache/commit/be4983de5349c556def454e4cd402146454c60d5)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.34
### dcache-xroot
The next release of xrootd4j is used now, which improves handling TPC
read requests.
### Changelog 6.1.33..6.1.34
<!-- git log 6.1.33..6.1.34 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[60f18a8374](https://github.com/dcache/dcache/commit/60f18a837433080234b58fe9ef27224c634dbba0)
: [maven-release-plugin] prepare release 6.1.34
[22502ed813](https://github.com/dcache/dcache/commit/22502ed81363622b859ea62459c69d25d0375198)
: dcache-xroot: bump dependency to next xrootd4j release
[fb559b44ed](https://github.com/dcache/dcache/commit/fb559b44ed375dcf29feb8a222121d5249e1af32)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.33
### srmmanager
A race condition is fixed that, if triggered, results in a memory leak.
This leak can also affect the TURLs returned by SrmManager, where
out-of-date information about doors is used.
### Changelog 6.1.32..6.1.33
<!-- git log 6.1.32..6.1.33 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[284f32fbd6](https://github.com/dcache/dcache/commit/284f32fbd667d539383fdc8e7053d5c39178acda)
: [maven-release-plugin] prepare release 6.1.33
[8412e3563f](https://github.com/dcache/dcache/commit/8412e3563fa5c3974cfc51c1870f272b72a91db4)
: srmmanager: fix race condition in LoginBrokerSubscriber
[1b33c2f3e4](https://github.com/dcache/dcache/commit/1b33c2f3e434ae0adb5e2e368790f115402c633a)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.32
### alarms
Clearer documentation for billing/alarms services regarding HA requirements.
### skel
Whether a cell/service supports HA or not can
now be derived from the properties file (except
for doors).
Please see `<name>.cell.replicable`.
### srm
The access log file for SRM requests now includes the client-supplied
list of protocols, if any were provided.
### Changelog 6.1.31..6.1.32
<!-- git log 6.1.31..6.1.32 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[0ed78900af](https://github.com/dcache/dcache/commit/0ed78900af80860d3ecfd7e4dd8d52fa8d2d8bca)
: [maven-release-plugin] prepare release 6.1.32
[544331a36f](https://github.com/dcache/dcache/commit/544331a36f6a9c7116221555ecb0e509febb44a7)
: alarms, billing: specify shared rdbms in the case of replicated service
[c106c3ea65](https://github.com/dcache/dcache/commit/c106c3ea65373ed5c008d6aa2ac83860cec80a74)
: skel: add explicit replicable property even when value is false
[bdbcfe7e4f](https://github.com/dcache/dcache/commit/bdbcfe7e4ffcec786cb5c6a648c7ad4105d11461)
: srm: log transfer protocols in access log
[7fe8ab1d71](https://github.com/dcache/dcache/commit/7fe8ab1d71de81edf607dd8c3a88092815399cdc)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.31
### dcache-core
The old web pages claim the transfer size and speed are reported in KB and KB/s, although the actually used units are KiB and KiB/s.
Reporting the correct unit is important for monitoring. This is now fixed.
### gplazma
dCache may now be configured so that the multimap `oidc` predicates
match the `sub` claim value from a specific OAuth2 Provider using the
format SUBVALUE@OP, where `OP` is the dCache-internal alias for the OP.
Existing multimap configuration continues to work, but admin is warned
to update the multimap configuration.
### Changelog 6.1.30..6.1.31
<!-- git log 6.1.30..6.1.31 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[22f5f8931c](https://github.com/dcache/dcache/commit/22f5f8931c8b79939abfdd63ff4060f18523f995)
: [maven-release-plugin] prepare release 6.1.31
[2d307b91cd](https://github.com/dcache/dcache/commit/2d307b91cdbf1e8020059b4cbc0d6f0e7482b472)
: gplazma: multimap now supports OP in 'oidc' predicate
[9295e69c52](https://github.com/dcache/dcache/commit/9295e69c524d65873c3474d9d8aaa602766b0bcb)
: dcache-core: correct reported units of transfer size and speed
[64cbad4033](https://github.com/dcache/dcache/commit/64cbad40335bb67b88b69403fa50dccdf936dff7)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.30
### xroot
The current release fixed the parsing to account for host/error pairs.
Upload transfer checksum failure is fixed and the gfal scenario now works.
### Changelog 6.1.29..6.1.30
<!-- git log 6.1.29..6.1.30 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[06c51b2822](https://github.com/dcache/dcache/commit/06c51b28220a98fdf94c258d6d48ac5cc88c5e70)
: [maven-release-plugin] prepare release 6.1.30
[d981ec1a0b](https://github.com/dcache/dcache/commit/d981ec1a0b2e5c34078e220a7fbabdd9bdd54d11)
: dcache-xroot: parsing of 'triedrc' CGI lacks separation by optional comma
[6b2efa35f1](https://github.com/dcache/dcache/commit/6b2efa35f1f4a668ce021339b5314dc67fd909d1)
: dcache-xroot: fix upload transfer checksum failure (stable branches)
[13d94929b0](https://github.com/dcache/dcache/commit/13d94929b0769148648cb141d5af6e359dacd8d8)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.29
### ftp
Globus transfer agent is now able to create symbolic links.
### pool
dCacheView now works for redirected transfers for non-anonymous data
access, provided the WebDAV door is using TLS encryption and is
configured with 'webdav.redirect.allow-https' set to 'true'.
### poolmanager
A very rare race-condition is fixed that could be triggered if a pool
completes a stage or pool-to-pool request (to satisfy a client's read
request) immediately before dying.
### webdav
dCacheView is able to view and download files when authenticated and
when the WebDAV door proxies the transfer.
### Changelog 6.1.28..6.1.29
<!-- git log 6.1.28..6.1.29 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[a1d13d4c26](https://github.com/dcache/dcache/commit/a1d13d4c2667be6dee63e8f60c8eb5f74f528daf)
: [maven-release-plugin] prepare release 6.1.29
[0fe2340945](https://github.com/dcache/dcache/commit/0fe2340945bfb005d9c02073afb1baae0ca16e0d)
: webdav: use Jetty's built-in support for CORS
[9eff7ea1ed](https://github.com/dcache/dcache/commit/9eff7ea1eda38fe43832948679dbda3fbd14e11b)
: poolmanager: fix _waitingFor access outside of synchronized block
[a724dcd897](https://github.com/dcache/dcache/commit/a724dcd897651d06558b04894b140d0d7fbec1b1)
: ftp: add support for the SITE SYMLINK command
[44ba3ac891](https://github.com/dcache/dcache/commit/44ba3ac891b2a6969825dcdd6f22bd6d3e96ac5b)
: pool: http allow client to send credentials when TLS is used
[29ecae497c](https://github.com/dcache/dcache/commit/29ecae497cbf590d4a5824bbdbc6243446b6b71a)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.28
### frontend
frontend/api readers and writers always zero issue is fixed now
### gplazma
The LDAP plugin behaviuor now more closely follows that of other mapping
plugins. This allows deployments where LDAP is tried first and, if that
fails to identify the user, fall-back strategies are used.
### Changelog 6.1.27..6.1.28
<!-- git log 6.1.27..6.1.28 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[111a1acf66](https://github.com/dcache/dcache/commit/111a1acf664f7f9cfb1a812e993555b502f18cda)
: [maven-release-plugin] prepare release 6.1.28
[ba7873346e](https://github.com/dcache/dcache/commit/ba7873346ef5739c26a6488baa11458b41ac6d65)
: gplazma: ldap throw exception if no principal is added
[19d4f66382](https://github.com/dcache/dcache/commit/19d4f66382a69d5c053c49390e320beb96285e07)
: poolV4: fix reader/writer counts
[ecdf313739](https://github.com/dcache/dcache/commit/ecdf31373912dcf645d51ba31943e8321b8c2469)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.27
### dcache-xroot
The cirrent release fixed memory leak, race and other small issues with reconnect to pool.
### frontend
The `dcache-view.endpoints.webdav` property now overrides any
auto-discovered WebDAV endpoint, making explicit configuration easier.
### pnfsmanager
A regression is fixed the prevents creating a symbolic link.
### Changelog 6.1.26..6.1.27
<!-- git log 6.1.26..6.1.27 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[3082ef649a](https://github.com/dcache/dcache/commit/3082ef649a9c8ead13d60733209d42cda48a0af1)
: [maven-release-plugin] prepare release 6.1.27
[0ee97b506b](https://github.com/dcache/dcache/commit/0ee97b506bcc8c3e676874e120ef10f81e50f561)
: frontend: bump version of dCacheView
[6559fcd58b](https://github.com/dcache/dcache/commit/6559fcd58bafff3602aeded99c3875ae78714c42)
: pnfsmanager: fix NPE regression from 3dfed7e8b0
[09f09d99bc](https://github.com/dcache/dcache/commit/09f09d99bc7a530aaef788217b5de59d4a19c416)
: dcache-xroot: fix memory leak, race and other small issues with reconnect to pool
[cdd91e3a52](https://github.com/dcache/dcache/commit/cdd91e3a5228ff6af2213f664c65461b7c7bb9d3)
: frontend: bump dCacheView to v1.6.2
[cc1948c443](https://github.com/dcache/dcache/commit/cc1948c443c9358fafde1556d3ece00252f3e161)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.26
### poolmanager
When poolmanager requests that a pool stage a file, the pool may return
the special error code HSM_DELAY_ERROR (10013). On receiving this
error, poolmanager suspends the request.
This is now fixed.
### xrootd
xrootd4j is updated to 3.5.10.
### Changelog 6.1.25..6.1.26
<!-- git log 6.1.25..6.1.26 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[8d04f449c1](https://github.com/dcache/dcache/commit/8d04f449c1febf44ac0b2bc3bdfa89ec52b21b83)
: [maven-release-plugin] prepare release 6.1.26
[41dcbb8ea3](https://github.com/dcache/dcache/commit/41dcbb8ea36104b200d32fda8fcfb81a728c93c3)
: dcache-xrootd: update xrootd4j to 3.5.10
[cf3ecd8722](https://github.com/dcache/dcache/commit/cf3ecd8722c049e51adc5f482336987efb5e02e7)
: poolmanager: fix NPE if pool delays stage without giving a reason
[04efa36e50](https://github.com/dcache/dcache/commit/04efa36e50e1a7460ecc44185661c5b7fbb8bfec)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.25
### xrootd
Now the door will ignore `xrootd.enable.tried-hosts` property if property false instead of returning errror.
### Changelog 6.1.24..6.1.25
<!-- git log 6.1.24..6.1.25 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[653a926a08](https://github.com/dcache/dcache/commit/653a926a08b0ca3712cdcd27c0e26215c55283d5)
: [maven-release-plugin] prepare release 6.1.25
[f17e25d5ff](https://github.com/dcache/dcache/commit/f17e25d5ff329d03bba1483be8ef64ddbec066a5)
: dcache-xroot: (door) ignore tried if property false instead of returning error
[0a4749af1c](https://github.com/dcache/dcache/commit/0a4749af1cf0b7f0ff2fe6fd19574bb7079fc5cd)
: Update install.md
[43c3fe2cab](https://github.com/dcache/dcache/commit/43c3fe2cabaa59776deb0a1e052be4c53fdd99f6)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.25
### xrootd
Now the door will ignore `xrootd.enable.tried-hosts` property if property false instead of returning errror.
### Changelog 6.1.24..6.1.25
<!-- git log 6.1.24..6.1.25 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[653a926a08](https://github.com/dcache/dcache/commit/653a926a08b0ca3712cdcd27c0e26215c55283d5)
: [maven-release-plugin] prepare release 6.1.25
[f17e25d5ff](https://github.com/dcache/dcache/commit/f17e25d5ff329d03bba1483be8ef64ddbec066a5)
: dcache-xroot: (door) ignore tried if property false instead of returning error
[0a4749af1c](https://github.com/dcache/dcache/commit/0a4749af1cf0b7f0ff2fe6fd19574bb7079fc5cd)
: Update install.md
[43c3fe2cab](https://github.com/dcache/dcache/commit/43c3fe2cabaa59776deb0a1e052be4c53fdd99f6)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.24
### Changes affecting multiple services
Sometimes file checksums are missing in namespace. Transfer requiring checksum verification fails then with an error saying that "No checksums found", but doesn't log a stack trace server side anymore.
### dcache-xroot
During periods of heavy usage on a pool node, if I/O stalls during read, the xroot client may try to reconnect and continue reading. This release fixes a bug which fails the transfer on the attempted reconnect with a "uuid no longer valid" error (because the file mover has already been closed and removed). Clients should now be able to resume reading the file on retry.
### Changelog 6.1.23..6.1.24
<!-- git log 6.1.23..6.1.24 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[a39c0de3f7](https://github.com/dcache/dcache/commit/a39c0de3f7f47bc1cb069af0bcbdd286faeadcde)
: [maven-release-plugin] prepare release 6.1.24
[da13dda0bc](https://github.com/dcache/dcache/commit/da13dda0bc58a0807f834d793f6ed0948ee69b05)
: dcache-xroot: Allow client to reattempt open on pool when I/O stalls
[5f6015d700](https://github.com/dcache/dcache/commit/5f6015d70020ec8b8d388289ec0da55e264c151b)
: check if checksums are present and throw CacheException if they are not
[bd03a8a23e](https://github.com/dcache/dcache/commit/bd03a8a23e23223b94c5688348130e65c97bcbd9)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.23
### admin
The current release fixed doors `login dump cache` admin command to show the
information sent by the door along with the login result.
### common
Printing of bearer tokens is improved to provide better assurance that
bearer tokens are not leaked.
### gplazma
All login failures are now recoreded in pinboard as a single-line
summary, explaining why the login attempt failed.
### webdav
The current release fixed a regression where dCache would complain about badly formatted IPv6
addresses, preventing those addresses from being included in the access
log files.
The current release fixed a regression where dCache would complain about badly formatted IPv6
addresses, preventing those addresses from being included in the access
log files.
### xroot
The current relase updated xrootd4j to 4.0.5 which fixes improper use of destination token when
contacting source server during third-pary transfer.
### Changelog 6.1.22..6.1.23
<!-- git log 6.1.22..6.1.23 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[687de75ea5](https://github.com/dcache/dcache/commit/687de75ea52a230804ac52d17ed7edfe70e1e9c9)
: [maven-release-plugin] prepare release 6.1.23
[93d5d18b74](https://github.com/dcache/dcache/commit/93d5d18b74d545d70a14200de17b0c2fb7cce7c0)
: dcache-xroot: update to xrootd4j-4.0.5
[e32de4e2c0](https://github.com/dcache/dcache/commit/e32de4e2c0533dcf2e336271c79e728e3740ced5)
: webdav/frontend: fix IPv6 address logging
[5ff2e7c750](https://github.com/dcache/dcache/commit/5ff2e7c750bcdf24786bee30687377ea7a1bd341)
: common: update how BearerToken is shown in Subjects#toString
[8067df53f4](https://github.com/dcache/dcache/commit/8067df53f49c24569b1891b1a447915acf58d4b5)
: authn: add missing hashCode and equals methods for PasswordCredential
[5e73199991](https://github.com/dcache/dcache/commit/5e73199991aa535e90f34b20c77b3c052bfd2bff)
: authn: fix "login dump cache" admin command output
[911ab10158](https://github.com/dcache/dcache/commit/911ab10158eee30f6c4bdd2e3a8755d8d730ec4b)
: gplazma: provide single-line summary in pinboard for each login failure
[250748b310](https://github.com/dcache/dcache/commit/250748b310cc1d8ec7ce7337bba7b37e2d0476c8)
: authn: log failures in UnionLoginStrategy
[04f3749dd0](https://github.com/dcache/dcache/commit/04f3749dd0795aa38e178d7d50e0f38db768ed53)
: authn: add missing hashCode and equals methods for BearerTokenCredential
[29f094c523](https://github.com/dcache/dcache/commit/29f094c52397772d7a5aae3fba3fedb9dac9459b)
: common: Update BearerToken representation to include some information
[53f362cf17](https://github.com/dcache/dcache/commit/53f362cf1706697de38b8a46604797080bac4896)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.22
### webdav
Restarting transfermanager while there are ongoing HTTP-TPC transfers no
longer results in an endless loop, with transfermanager logging a
message every ~5 seconds per ongoing HTTP-TPC transfer.
### Changelog 6.1.21..6.1.22
<!-- git log 6.1.21..6.1.22 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[b44f6b5668](https://github.com/dcache/dcache/commit/b44f6b5668acd798a52c0583effa5c0e6676a37d)
: [maven-release-plugin] prepare release 6.1.22
[5c5a996be9](https://github.com/dcache/dcache/commit/5c5a996be9cd3802c9342cd84e5b87359faf5a4c)
: webdav-transfermanager: fail gracefully if transfermanager restarted
[704d9b5ccd](https://github.com/dcache/dcache/commit/704d9b5ccdd502a4466ceff8daa9cdf7bea290d4)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.21
### biiling
The current relase fixed unit info for bandwidth measurements in billing.properties (bytes/sec, not MiB/sec).
### frontend
Frontend now logs any time it returns 500 Internal Server Error to the
client.
dcache-view Previously displayed MB/sec for transfer rate, but the
value is the old KB/sec. This is now improved and pages display the values advertised.
### pool
The current release assures now that checksum scanner wiill mark files broken and sends alarm.
### webdav
An HTTP-TPC transfer will abort automatically if transfer-manager is
restarted, without waiting for the client (FTS) to time-out.
### Changelog 6.1.20..6.1.21
<!-- git log 6.1.20..6.1.21 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[963dc9a352](https://github.com/dcache/dcache/commit/963dc9a35278bde605aeec0fb7136d5d50a50165)
: [maven-release-plugin] prepare release 6.1.21
[ccf4760d4b](https://github.com/dcache/dcache/commit/ccf4760d4b048a07790cb93c44de9cc164228901)
: dcache-pool: Assure checksum scanner marks files broken and sends alarm
[57f9e32948](https://github.com/dcache/dcache/commit/57f9e3294819041ce92141bc579870163215dc0b)
: webdav/transfermanager: fail gracefully on restart, for perf marker
[99654d07e1](https://github.com/dcache/dcache/commit/99654d07e194ac490e79ed01292ae74d8f7a8c7d)
: default: fix unit info for bandwidth measurements in billing.properties
[cb742ca1a9](https://github.com/dcache/dcache/commit/cb742ca1a9ad0980102bcaa46c9a1474402c12cb)
: frontend: create a log entry when we return 500 Internal Server Error
[b95b867193](https://github.com/dcache/dcache/commit/b95b867193f27fe5a2614b55dd2c391882d4b8d5)
: dcache-frontend: change transfer rate to compute what it advertised
[c8a36e7b27](https://github.com/dcache/dcache/commit/c8a36e7b27ddec60b9abfb4db7f5539183267ba8)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.20
### book
A new section is added to the xrootd chapter explaining the need for
SAN extensions on the hostcert in the case of hostname aliasing.
### ftp
Globus transfer service can now list directories that contain incomplete
files, those that are still being uploaded.
The FTP no longer leaking sockets when dynamically calculating file
checksums (e.g., MD5). In practise, this issue only affects transfers
via the Globus transfer service.
The current release fixed Globus transfer service directory listing for `medium` size
directories.
The current release fixed Globus transfers hanging when `verify file integrity after transfer`
is enabled and the pool is not configured to calculate an MD5 checksum.
Honour the `ftp.net.internal` configuration property for dynamic
checksum calculation.
### Changelog 6.1.19..6.1.20
<!-- git log 6.1.19..6.1.20 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[fbd737286b](https://github.com/dcache/dcache/commit/fbd737286b1e6e5a0bdd88d725cd99e9cdd4d225)
: [maven-release-plugin] prepare release 6.1.20
[656a324c27](https://github.com/dcache/dcache/commit/656a324c278732b3f02f0aef6bac1315728b33bf)
: ftp: do not leak sockets when calculating checksums dynamically
[095b02d305](https://github.com/dcache/dcache/commit/095b02d3056d3f760e509bbda3aa57ebed2decb4)
: ftp: add work-around to calculate MD5 for Globus
[98468678f7](https://github.com/dcache/dcache/commit/98468678f70facfa85616185c5e0d91ba2f3ee9b)
: ftp: add place-holder file size work-around for Globus directory listing
[2783011bd3](https://github.com/dcache/dcache/commit/2783011bd333695d4c43e9b22a6265ecc46eb221)
: rpm take build directory path into quotes
[bfb3454e7b](https://github.com/dcache/dcache/commit/bfb3454e7b578a30967f305555374581234370c7)
: ftp: fix MLSC support for medium-length directories
[fc7564fb5a](https://github.com/dcache/dcache/commit/fc7564fb5aaa5efe1bd167a17cfbbbbb8ec5c1b1)
: ftp: fix on-the-fly checksum calculation
[79f4c75126](https://github.com/dcache/dcache/commit/79f4c7512632d34a63533f4389cc017e12803db5)
: book: document host alias issue with xroot TPC
[ad4f26096e](https://github.com/dcache/dcache/commit/ad4f26096ed695866dfea0370c9bdd03ae2e8934)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.19
### pool
The current release fix a problem where, under heavy load, redirected https transfers result
in garbled SSL information, preventing the HTTP client from working.
### services
Recovery processe in the case where a pool's message queue is overloaded,
as old (and now useless) requests may be simply discarded is improved.
### webdav
There were reports of the access log file missing entries. This problem
seems to be triggered if the client disconnects before dCache has
finished processing the request, which is certainly true for cancelled
HTTP-TPC transfers. This is now fixed.
### xrootd
The xroot protocol access log entries for the xrootd door and pool have
been enhanced to include information about the kXR_query requests.
### Changelog 6.1.18..6.1.19
<!-- git log 6.1.18..6.1.19 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[dfdaadc123](https://github.com/dcache/dcache/commit/dfdaadc12372bfd87f010a3d65c9bdd4f4b0e9e6)
: [maven-release-plugin] prepare release 6.1.19
[6c2d8c9918](https://github.com/dcache/dcache/commit/6c2d8c9918ea86b3cd6b8a9591d3e9fb7c5f1f8e)
: prepare for next development iteration
[d261fe34cf](https://github.com/dcache/dcache/commit/d261fe34cf8c433e101e7b88addf4a52af675f02)
: TransferManager: choose better pool query message TTL
[bbae4d1252](https://github.com/dcache/dcache/commit/bbae4d12523222e9ec896ceef00387a61cf6e41a)
: webdav/frontend: ensure cancelled HTTP-TPC transfers are logged
[d44f28bdc1](https://github.com/dcache/dcache/commit/d44f28bdc186a9f237ab9572a501c014cf7611c1)
: xrootd/pool: improve access log to record more details of kXR_query
[8336e2cc85](https://github.com/dcache/dcache/commit/8336e2cc85b21b2910037477af2ddb37c7ba9664)
: pool: https avoid sharing SSLEngine between TCP connections
## Release 6.1.18
The current release fixes EGI-SVG-2020-16939 vulnerabilities.
## Release 6.1.17
### xrootd
The xrootd4j version was updated to 3.5.8.
### Changelog 6.1.16..6.1.17
<!-- git log 6.1.16..6.1.17 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[fae8870df5](https://github.com/dcache/dcache/commit/fae8870df5157a48f6ee297839e75269b4d57bbe)
: [maven-release-plugin] prepare release 6.1.17
[23bf788f20](https://github.com/dcache/dcache/commit/23bf788f20783019d36db8aad66d252f64ec528b)
: pom: update xrootd4j to 3.5.8
[8c204ac235](https://github.com/dcache/dcache/commit/8c204ac23560b74393746c1f5eded53638a31d6e)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.16
### pool
The mover thread is not interrupted outside of IO activity to avoid disabling of repository.
HTTP-TPC transfers where dCache pushes data to an Apache server (for example as used by Dynafed) will now work for zero-length files.
### webdav
HTTPS-PUT requests are now possible.
### Changelog 6.1.15..6.1.16
<!-- git log 6.1.15..6.1.16 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[bf73ac6530](https://github.com/dcache/dcache/commit/bf73ac6530d1b4a903c31170c1aeefa028199bbf)
: [maven-release-plugin] prepare release 6.1.16
[7c34f736ee](https://github.com/dcache/dcache/commit/7c34f736eeb64ae0be99a7cea8562367e75375b2)
: pool: http-tpc do not loop if HEAD 'Content-Length' response is missing
[1a1975ad0e](https://github.com/dcache/dcache/commit/1a1975ad0ed7b29054d91f08ed0d69a376cc8e49)
: webdav:HTTPS PUT req issue
[279af5f5aa](https://github.com/dcache/dcache/commit/279af5f5aa90e07ebc78fd58ee6c6e1073ee08c4)
: pool: preserve CDC on p2p transfer
[341de58525](https://github.com/dcache/dcache/commit/341de5852591d29ac3b2d1385b9d71103015cbdc)
: pool: http-tpc drop 'Accept-Encoding' on HEAD requests
[ab462b9a3d](https://github.com/dcache/dcache/commit/ab462b9a3debb22822d6501986aa4a2138f39807)
: pool: detach IO thread when mover finished
[5e05bccba8](https://github.com/dcache/dcache/commit/5e05bccba89ec6f0b0c8a1442da52d5c3c39806f)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.15
### pool
dCache pools now support GSI-based xrootd-TPC by default.
### Changelog 6.1.14..6.1.15
<!-- git log 6.1.14..6.1.15 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[1f61af5473](https://github.com/dcache/dcache/commit/1f61af547357dd55b5ec68f6066902133ec9b6d8)
: [maven-release-plugin] prepare release 6.1.15
[b379cdefa4](https://github.com/dcache/dcache/commit/b379cdefa4602788329dfcf290a61d015a3710e8)
: pool: update xrootd-tpc authenication default
[09ddc0fd90](https://github.com/dcache/dcache/commit/09ddc0fd907e02acb83b54d8446cd025794f73bf)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.14
### enstore
Enstore storage info provides works with URI based tape locations now.
### pool
The HTTP-TPC PUSH requests (which use the HTTP PUT request to send data)
are now more robust against slow remote servers that redirect the
transfer.
The current release fixed NullPointerException bug in MongoDB-backed pool metadata storage
and SpotBugs NORMAL-level warning.
With the chenges introduced in current release, when using HTTP-TPC, the timeouts dCache pool uses when requesting
information from the remote server have been adjusted, based on
operational experience. In general, dCache will now wait longer for the
remote server to complete any post-processing before giving up and
failing the transfer.
### Changelog 6.1.13..6.1.14
<!-- git log 6.1.13..6.1.14 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[2f5383a4e3](https://github.com/dcache/dcache/commit/2f5383a4e3af56065cd635da7a2dec0095545784)
: [maven-release-plugin] prepare release 6.1.14
[5dcb95190c](https://github.com/dcache/dcache/commit/5dcb95190cee53a6ce8d974c4fff8ae80f649710)
: chimera: update EnstoreStorageInfoExtractor to use FileState
[bdb2a822f2](https://github.com/dcache/dcache/commit/bdb2a822f25a134e9a6ce4defc0b684063a41079)
: chimera: use UTF-8 constant instead of string in ChimeraEnstoreStorageInfoExtractor
[f212438e29](https://github.com/dcache/dcache/commit/f212438e290f57abdb8127e2091e88f9761334e3)
: enstore: populate the correct storage info information on set
[b834910bbe](https://github.com/dcache/dcache/commit/b834910bbedcfec2918799a8f8ea81d1e1ac9702)
: pool: http-tpc adjust GET and HEAD request timeouts
[8d505d8c97](https://github.com/dcache/dcache/commit/8d505d8c97ee13181e2dd272762b84fb77a2c76a)
: pool: http-tpc PUT request are repeatable
[7ed0edb4e2](https://github.com/dcache/dcache/commit/7ed0edb4e20bc078ae84b0bbf690ec201ab5a0d4)
: pool: support removing MongoDB storage-info entry
[d8ba33ff6c](https://github.com/dcache/dcache/commit/d8ba33ff6ce2ac4f09bf145eb3f541ddec6825ae)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.13
### dcap
Sometimes file restores on dCap door were hanging. This is now fixed.
### Changelog 6.1.12..6.1.13
<!-- git log 6.1.12..6.1.13 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[cd92673826](https://github.com/dcache/dcache/commit/cd926738260c0970b27342f6d8b8d32ca93d282b)
: [maven-release-plugin] prepare release 6.1.13
[c318c7b31f](https://github.com/dcache/dcache/commit/c318c7b31f755c403be1946c0ed3f247a970f241)
: [maven-release-plugin] prepare for next development iteration
[7cb32b4ff5](https://github.com/dcache/dcache/commit/7cb32b4ff5a394467ff58cd542bb5fc890e39f7a)
: dcap: fix automatic door retry on transient errors
## Release 6.1.12
### gplazma
X.509 certificates that use the "SHA-384 with RSA" algorithm are now
logged with this name instead of the raw OID value.
### httpd
The current release fix pool usage color scheme css used for UsageInto and PoolInfo pages.
### pool
dCache pools that are undertaking HTTP-TPC transfers will now wait
longer for the remote servers to complete any post-transfer activity.
Transfers that involve heavily loaded remote servers are now more likely
to succeed.
### Changelog 6.1.11..6.1.12
<!-- git log 6.1.11..6.1.12 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[a7fe40d85b](https://github.com/dcache/dcache/commit/a7fe40d85ba47b9379b961f7f9703b26320ff39e)
: [maven-release-plugin] prepare release 6.1.12
[ae6616d5db](https://github.com/dcache/dcache/commit/ae6616d5dbc0a961561256c804397a3404aee1c1)
: pool: http-tpc increase timeout waiting for remote server post-processing
[39952d5fbc](https://github.com/dcache/dcache/commit/39952d5fbc2443875168b7d44346f25e039d2db2)
: gplazma: include additional algorithm in LoginResultPrinter
[bc2be58a21](https://github.com/dcache/dcache/commit/bc2be58a2122613def820b61ab700ea5ec5342a2)
: httpd: fix pool usage color scheme css
[d85bdc4d42](https://github.com/dcache/dcache/commit/d85bdc4d42ed7f6f738b7776f14dd0aafa25e07d)
: correct snapshot version for logback-test-config
[a73c8d4074](https://github.com/dcache/dcache/commit/a73c8d40744f9fa04a081170a20113a653820c0b)
: correct snapshot version
## Release 6.1.11
### nfs
The current release fixed previously observed infinite WRITE+COMMIT loop.
### Changelog 6.1.10..6.1.11
<!-- git log 6.1.10..6.1.11 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[0d59a8a090](https://github.com/dcache/dcache/commit/0d59a8a0902d58864561ee8d986a1a9040bcb137)
: [maven-release-plugin] prepare release 6.1.11
[0aae861a17](https://github.com/dcache/dcache/commit/0aae861a17f29d56ff3c29435326e009263fb1a1)
: nfs-proxy: op WRITE must use the same verifier as COMMIT
[9fd3c6d73a](https://github.com/dcache/dcache/commit/9fd3c6d73a61e2ed5cf4f7db33ec011617549470)
: [maven-release-plugin] prepare for next development iteration
## Release 6.1.10
### dcache
There have been several occasions where in a dCache instance using an embedded ZooKeeper server such HA services stopped working because
an ephemeral node was elected leader that has no associated service anymore; it should have been deleted.
This state might go undetected for a longer time, and removing such stale nodes in order for the services to continue functioning as intended requires manual intervention.
This is fixed now and the functioning of HA services using ZooKeeper-based leader elections is more reliable.
### resilience
A more robust handling of PSU changes which remove pool, unit or group
mappings was introduced.
Recently introduced improvements changed the way resilience handles file "removal"
(no longer setting the repository entry to 'removed'
but simply by caching the replica).
This change, however, did not take into account
the handling of broken files. Encountering