-
Notifications
You must be signed in to change notification settings - Fork 3
/
release-notes-3.0
4281 lines (2825 loc) · 188 KB
/
release-notes-3.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 3.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 3.0<br/>
<small>The release notes</small></h1>
</div>
## Highlights
- Experimental CEPH support.
- Automatic detection of PostgreSQL master.
- Self describing billing files.
- Pool manager setup is stored in ZooKeeper.
- Pool manager read-only state is stored in setup file and ZooKeeper.
- New performance cost calculation for improved stability of hot spot replication.
- Allow batching of flush to tape to be "disabled".
- Allow polling HSM scripts.
- Mover queues can be created at runtime.
- Abort upload when SRM TURL is invalidated.
- Allow xrootd clients to select mover queues.
- Support the HAProxy proxy protocol.
- Production ready support for high availability deployments.
## Incompatibilities
- Compatibility with pools older than 2.16 has been dropped.
- Properties marked deprecated in 2.16 are now obsolete.
- Several deprecated or obsolete admin commands have been
removed.
- The admin door no longer supports DSA keys.
- The billing service no longer output records for
which no format string was defined.
- The pool manager and pool configuration files now only
support the commands considered setup commands.
- Support for the legacy UDP discovery service used in
2.15 and earlier has been dropped.
- dCacheDomain no longer default are core domain.
- DCAP doors no longer supportthe `dcapLock` feature to
halt new requests.
- Pool manager now automatically persists its setup in ZooKeeper
uses it after a restart rather than `poolmanager.conf`.
- The way pool manager calculates performance cost has changed
and cost limits in pool manager may have to be retuned.
- The pool to pool client queue in pools no longer has a
configurable limit.
- Return code 72 is now a special value for HSM scripts.
- The failure semantics for empty uploads has changed.
- The `https-jglobus` value has been removed for the
`webdav.authn.protocol` property.
## Acknowledgments
Thanks to Onno Zweers for several contributions to this release.
## Differences from dCache v2.16
The notes for [release 3.0.0](#release3.0.0) detail the differences
from dCache 2.16. Please read this section *very carefully* when
upgrading from this version.
## Release 3.0.47
### scripts
The instructions that are printed out once `dcache pool convert`
completes successfully now correctly point to the
property that needs to be updated, namely `pool.plugins.meta`.
### Changelog 3.0.46..3.0.47
<!-- git log 3.0.46..3.0.47 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[c36dfcc46c](https://github.com/dcache/dcache/commit/c36dfcc46c093a969f22f09818f8db26f69dab66)
: [maven-release-plugin] prepare release 3.0.47
[b6ba9af4eb](https://github.com/dcache/dcache/commit/b6ba9af4eb2e3acbc85b002942844a23474d44e7)
: scripts: update reference to configuration property
[97dfed76d1](https://github.com/dcache/dcache/commit/97dfed76d1e33532dec563bc0fc55a1681200141)
: pool: fix metadata migration tool to use Path
[1660e69332](https://github.com/dcache/dcache/commit/1660e693327b70e6be33311e7e885ea63ebe8b36)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.46
### dcache-resilience
There was a small regression in the way resilience computes
the number of operations necessary to adjust copies when
a storage unit definition changes.
The current rellease fixed computation of operation count when storage requirements change.
### ftp
In order to aid diagnosing problems when FTP response being lost, now dcache logs failures to wrap/encrypt responses.
### Changelog 3.0.45..3.0.46
<!-- git log 3.0.45..3.0.46 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[131880c](https://github.com/dcache/dcache/commit/131880c9ae6baabc86d1b7a9623b2bdd0f531b77)
: [maven-release-plugin] prepare release 3.0.46
[3e3163b](https://github.com/dcache/dcache/commit/3e3163b22e540a57165b1ba1d1a787a397c31ad2)
: scripts: add support for parsing ZooKeeper transaction logs
[a743552](https://github.com/dcache/dcache/commit/a7435521f34022f337db4253b6fdd587684620e9)
: ftp: log failures to wrap/encrypt responses
[436399e](https://github.com/dcache/dcache/commit/436399e8af1d46acef2b90a03bfedd7929fc284a)
: dcache-resilience: fix computation of operation count when storage requirements change
[d699fad](https://github.com/dcache/dcache/commit/d699fad0ca4a37409c1254c5117264fe84ebeda3)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.45
### ftp
Error reporting in the FTP service has been improved: in some mixed IPv4 / IPv6 scenarios,
only unclear error messages were reported.
### Changelog 3.0.44..3.0.45
<!-- git log 3.0.44..3.0.45 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[6bdfcbde5d](https://github.com/dcache/dcache/commit/6bdfcbde5dac4b816e18ad752bd26bcbcfca7541)
: [maven-release-plugin] prepare release 3.0.45
[d8a15dbab7](https://github.com/dcache/dcache/commit/d8a15dbab7c1107d97fa09fd13c41b043ef91751)
: ftp: returned error is too vague for meaningful investigation
[027f7397a2](https://github.com/dcache/dcache/commit/027f7397a230c5766c259d84917e21a0fbf34205)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.44
### gplazma
gplazma now supports a Fermilab-specific authorization data source in JSON format.
### pool
During active ftp transfers, connection problems would lead to the rather unhelpful error
message "451 General problem". This error reporting was refactored, so that diagnosis
of the cause is now greatly facilitated.
### poolmanager
A potential NullPointerException (that was not observed in real-world usage until now)
was fixed in Pool Manager.
### resilience
A correction to resilience's error handling results in no more reports on
non-resilient (but corrupted) files.
### spacemanager
In order to facilitate debugging, Space Manager now logs link-group related content
in greater detail.
### Changelog 3.0.43..3.0.44
<!-- git log 3.0.43..3.0.44 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[3f1f30c154](https://github.com/dcache/dcache/commit/3f1f30c154095e422a69dc9b201f8aed8fe89e01)
: [maven-release-plugin] prepare release 3.0.44
[2d0e74ebce](https://github.com/dcache/dcache/commit/2d0e74ebce90a1977715baf79f4b0ff0a17a3e9e)
: poolmanager: fix migration command if named pool is removed
[475fca33f8](https://github.com/dcache/dcache/commit/475fca33f828528ddef2bdbd1e9df6c2d5780836)
: dcache-resilience: repair over-aggressive handling of broken file messages
[925a261e81](https://github.com/dcache/dcache/commit/925a261e81b66c00fc6f57e4822239cd46eb28f7)
: pool: fix error message for failed active FTP transfers
[2373487a40](https://github.com/dcache/dcache/commit/2373487a4024c338699c2d4cb1bdd35abd570a01)
: fix the project version in pom.xml
[781cc20730](https://github.com/dcache/dcache/commit/781cc207303e8c2d58ff36ceb695b24f191e900d)
: gplazma-fermi: fix last modified check in junit test
[a8885d9a72](https://github.com/dcache/dcache/commit/a8885d9a72ccd90a3e3e27fe8a9e1ddc80952e78)
: spacemanager: add remote pool monitor debug logging
[d006814c41](https://github.com/dcache/dcache/commit/d006814c41750e56eab1ae6b19e29a59ca89d0ce)
: gplazma-fermi: add mapping plugin to support VO group and username from file
[83d8204c9a](https://github.com/dcache/dcache/commit/83d8204c9a41f4ef2243f4ff1e2761e3e6e9bc57)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.43
### resilience
Logging for cases where file replication was fatally aborted was improved. Previously, alarms
messages pertained to the PNFSID of the affected files. In rare cases, like when facing
network congestion, many hundreds of alarms could be created. With this change, alarms messages
refer to the storage unit, and a suffix based on an hourly timestamp is added to the
alarm message. The alarm will thus be incremented during the hour but a new
alarm will be created (only) hourly; in this way, those receiving
email alerts will receive them once an hour.
### Changelog 3.0.42..3.0.43
<!-- git log 3.0.42..3.0.43 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[b15b527d9e](https://github.com/dcache/dcache/commit/b15b527d9e73a7a3077be583182f9efb2462f141)
: [maven-release-plugin] prepare release 3.0.43
[e8d7488925](https://github.com/dcache/dcache/commit/e8d748892554380d7074feeff13fd2b93207536a)
: alarms: fix broken path
[7251f376ef](https://github.com/dcache/dcache/commit/7251f376ef32cfa93dc0302f78a2c0e20ea8a31e)
: [maven-release-plugin] prepare for next development iteration
[e9cdc4d2a2](https://github.com/dcache/dcache/commit/e9cdc4d2a2a5378307c7adc3a9c736a49bd349ca)
: substituted Calendar for Instance which was failing.
[b284e91122](https://github.com/dcache/dcache/commit/b284e91122189011d98f0723e5f8c33e088b78fe)
: dcache-resilience: avoid spamming alarms with abort messages
## Release 3.0.42
### ftp
A bug (that was not observed in real-world settings yet) that might have caused
NullPointerExceptions was fixed in the ftp service.
### poolmanager
dCache 3.0 introduced a regression where a dCache domain does not
start up if it hosts a poolmanager with poolmanager.conf containing
either the "rc set sameHostCopy" or the "rc set sameHostRetry" command.
This regression was fixed.
### resilience
Error handling within the Resilience service was improved.
### Changelog 3.0.41..3.0.42
<!-- git log 3.0.41..3.0.42 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[d4a2df058a](https://github.com/dcache/dcache/commit/d4a2df058a25e5e3d459b7ac0cc8270a899a11d0)
: [maven-release-plugin] prepare release 3.0.42
[f72123400d](https://github.com/dcache/dcache/commit/f72123400dab76ea250c6144a3e98b6371591044)
: dcache-resilience: handle properly RuntimeExceptions from tasks
[8cb98d73c2](https://github.com/dcache/dcache/commit/8cb98d73c229e9347dccb229a2534c04b99e818a)
: ftp: ensure adapter is closed
[f81c008965](https://github.com/dcache/dcache/commit/f81c0089652b801f709a17a12842c289a58cbfc3)
: ftp: remove rare NullPointerException when proxying data
[40a1dcab5c](https://github.com/dcache/dcache/commit/40a1dcab5c0573a6400cf69821b37036b5718b8e)
: poolmanager: fix poolmanager startup with certain poolmanager.conf content
[b31ade0690](https://github.com/dcache/dcache/commit/b31ade0690d2f5fbde6469cd95c47131c57e6d0c)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.41
### dcache-resilience
When a checksum or broken file message/error is generated,
Resilience makes a best effort to (a) remove the broken
copy and (b) make another replica. This, of course, is not always possible, particularly if
the broken file is the only accessible copy. This resulted in faulty behavior
particularly the thrashing noted in the case of a restaging operation which results in a checksum error.
This is now fixed.
The current release improved error handling for resilience.
It fixed unnecessary Migration Task exceptions resulting from
source pools with no replica in the repository.
Now it should be possible for Resilience to use pools blocked only for
writes from doors.
### Changelog 3.0.40..3.0.41
<!-- git log 3.0.40..3.0.41 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[2ed30f8](https://github.com/dcache/dcache/commit/2ed30f866b214638604f98a5779bf7f42848a859)
: [maven-release-plugin] prepare release 3.0.41
[1c8c56c](https://github.com/dcache/dcache/commit/1c8c56c17f670cc8ef8472ec74702837c44f1999)
: bad commit put DOWN twice
[57c9ccd](https://github.com/dcache/dcache/commit/57c9ccd916e17dabba4ed9aed2233c6cc3b6cd59)
: dcache-resilience: define non-writable pool to mean p2p-client is disabled
[71419a4](https://github.com/dcache/dcache/commit/71419a4795243756a588e10ab1a5f60fd34c82f8)
: dcache: fix remote pool monitor wait bug
[c49e444](https://github.com/dcache/dcache/commit/c49e4441dbf9ae19dff862e58e6e06df15e00b6e)
: dcache-resilience: repair handling of broken files*
[0d58321](https://github.com/dcache/dcache/commit/0d583217057528246e73bd6fef46fb3f543c322e)
: [maven-release-plugin] prepare for next development iteration
[05a7853](https://github.com/dcache/dcache/commit/05a7853083a810c7bc9cecd57a9697d28b59da16)
: dcache-resilience: fix bug in source handling with Clear Cache Location messages
## Release 3.0.40
### cells
The current release added explicit ZooKeeper/Curator monitoring. Events generated by ZooKeeper and Curator are now logged in a new, which may help diagnose
problems that are suspected to come from bad ZooKeeper interaction.
### frontend
The current release improved the error handling to work with Jackson exceptions.
### Changelog 3.0.39..3.0.40
<!-- git log 3.0.39..3.0.40 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[2fad831](https://github.com/dcache/dcache/commit/2fad831ca429d8a1ddfdf82a8cbc853fe566dfd3)
: [maven-release-plugin] prepare release 3.0.40
[86ccd1c](https://github.com/dcache/dcache/commit/86ccd1c4ff63be83e0e7de0d637607c8a24a31d5)
: dcache-resilience: fix wrong assumption about error type in Message
[bb5973e](https://github.com/dcache/dcache/commit/bb5973e1b471e86e055d4e08c0b821ec8e42f5d5)
: cells: add explicit ZooKeeper/Curator monitoring
[e3140e3](https://github.com/dcache/dcache/commit/e3140e3dd996d0a2e9354f3805878c47f5db4812)
: frontend: Map requests with bad JSON to HTTP 400 Bad Request status code
[74b5c02](https://github.com/dcache/dcache/commit/74b5c0213fb4f7b20892f623bc22e8793b0c6d98)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.39
### nfs
NFS door has been updated to return NFS4ERR_LAYOUTUNAVAILABLE for DOT files.
### star
The current release improved documentation to help dCache admins to have a better understanding of how to generate StAR record.
The current release fixed fix printing exception error message for dcache-star script if there's a problem when run with newer versions of Python.
### Changelog 3.0.38..3.0.39
<!-- git log 3.0.38..3.0.39 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[6b4180c](https://github.com/dcache/dcache/commit/6b4180c02a8562275c77e438928692a407cd5084)
: [maven-release-plugin] prepare release 3.0.39
[2776992](https://github.com/dcache/dcache/commit/27769923a0d4a0dfc8b4d284261712dae98c7b31)
: nfs: return LAYOUTUNAVAILABLE for DOT files
[73bdcf7](https://github.com/dcache/dcache/commit/73bdcf746a9cbea434349e89a7a0b0f590f1e945)
: star: fix printing exception error message
[d40890c](https://github.com/dcache/dcache/commit/d40890c5ece00908d4e3e512a38098749efafd79)
: star: update documentation to provide better description of script
[9b96b08](https://github.com/dcache/dcache/commit/9b96b08836889dd3014ad34a03e129d4d4ad060f)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.38
### info
The info service collects information about who is allowed to reserve space.
Since some of this information, like VOs, usernames and gids, may be considered
sensitive information, this update allows admins to control whether or not
to publish them. The default behaviour is unchanged from the previous behaviour,
i.e. info publishes everything. If a site admin wants to change this,
the `info.limits.show-only-vo-authz` property can be set to `true`.
### scripts
The dcache script and manpage still refered explicitely to Java 6. This patch
changes the phrasing of the respective text.
### Changelog 3.0.37..3.0.38
<!-- git log 3.0.37..3.0.38 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[f4d6bc6511](https://github.com/dcache/dcache/commit/f4d6bc6511be3997a154d7bf6cfbbb54c80c1b21)
: [maven-release-plugin] prepare release 3.0.38
[7b41e14c48](https://github.com/dcache/dcache/commit/7b41e14c4824807db6009946d3d6e84838235cba)
: scripts: update reference to JDK to avoid mentioning specific java version
[17df369055](https://github.com/dcache/dcache/commit/17df3690555efd1013a8db113a2649bc2ab64a04)
: info: allow admin to control whether non-VO / non-FQAN identities are shown
[b7bfc8b314](https://github.com/dcache/dcache/commit/b7bfc8b31493ec042a93060a01cdbeda4b54186f)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.37
### chimera
The current release fixed previously introduced issues for `lost+found` directory permissions.
Now, the `lost+found` directory permissions is updated without causing
problems if that directory has been removed or permissions have been
modified.
### Changelog 3.0.36..3.0.37
<!-- git log 3.0.36..3.0.37 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[89c6a8b](https://github.com/dcache/dcache/commit/89c6a8b0892251c1ad4fa46627b9b6b2b1b6431c)
: [maven-release-plugin] prepare release 3.0.37
[bdfb780](https://github.com/dcache/dcache/commit/bdfb780a4694678fc1898f5abaf9f780fe3973ef)
: chimera: correct previous attempt to fix 'lost+found' directory permission
[a74b73f](https://github.com/dcache/dcache/commit/a74b73fb74377c70e6e5af04cdd814fe7ae618b5)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.36
### pnfsmanager
The current release improves documentation for `set log slow threshold` admin command help.
### spacemanager
When trying to upload into dCache using a space-token where there
is no selectable link for this operation then the user was presented with
a generic error message; for example,
`No write links configured for [net=131.169.71.98,protocol=GFtp/2,store=dot:user@osm,cache=,linkgroup=]`.
This behavior is changed now and an improved error message is returned to the user if they attempt an upload data into dCache using a space-reservation in a way where
`poolmanager` configuration prevents the upload.
### webdav
The current release improved error handling when dCache is full.
### Changelog 3.0.35..3.0.36
<!-- git log 3.0.35..3.0.36 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[38de80c](https://github.com/dcache/dcache/commit/38de80ceecb167cf8f974ca50c83fd43d53f2fcc)
: [maven-release-plugin] prepare release 3.0.36
[d6d321b](https://github.com/dcache/dcache/commit/d6d321be7fb6fa7a2c4a3c2e014744df9bf196a1)
: systemtest: work with new OpenSSL DN format
[a2a4534](https://github.com/dcache/dcache/commit/a2a45343b34baee0aad7c13cadd588f20e848eb7)
: spacemanager: provide space-specific error message on bad upload
[1928311](https://github.com/dcache/dcache/commit/19283119a51ff7c0fd024f0f1b6fca58cae69844)
: webdav: return 507 Insufficient Storage when dCache is full
[6351c8a](https://github.com/dcache/dcache/commit/6351c8a766d0fa880200c9b34206f2efa0adeb90)
: pnfsmanager: update slow logging admin command help
[2fd15ed](https://github.com/dcache/dcache/commit/2fd15ed80db04e2d0fcace43722e9672f7407c48)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.35
### cells
dCache no longer logs stack-traces when running multiple cells with the same name.
### pool
Closing dcap mover connection no longer logs a stack trace.
For certain failures,the pool was logging transfer failures twice. This is now fixed.
### rpm
dCache ensures now that user 'dcache' is a member of group 'dcache'.
### star
The current release Introduced new property `star.db.*`, which makes possible now to run PostgreSQL on non-standard ports can use STAR.
### statistics
Timeout in contacting PoolManager no longer results in a stack-trace being logged.
### Changelog 3.0.34..3.0.35
<!-- git log 3.0.34..3.0.35 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[f7547d7](https://github.com/dcache/dcache/commit/f7547d704ea464144f576097cc944285251c586a)
: [maven-release-plugin] prepare release 3.0.35
[6c2cb7d](https://github.com/dcache/dcache/commit/6c2cb7d98b8d24b7649a67b1020e3db7f8ccfabc)
: [maven-release-plugin] prepare for next development iteration
[a212275](https://github.com/dcache/dcache/commit/a212275d9a67275c99e962a4cc529353d9011d43)
: pool: fix double logging on remote FTP transfer error
[e5ff9ab](https://github.com/dcache/dcache/commit/e5ff9ab1ef633e7cd2fad058c72a14f271d4bd39)
: pool: Fix how certain bugs are logged
[dfc024b](https://github.com/dcache/dcache/commit/dfc024b85486ec0cdb767144866c3590342fc1a2)
: star: support PostgreSQL running on non-standard TCP ports
[6c721e5](https://github.com/dcache/dcache/commit/6c721e5cd47fca54a864ca5077ab26f95810d51b)
: rpm: don't assume existing dcache user is member of dcache group
[fc563b9](https://github.com/dcache/dcache/commit/fc563b9ebbf8fc2c9862fcaa4dd1bab52822ee8e)
: cells: don't log stack-trace on starting cell with same name as running cell
[1c42791](https://github.com/dcache/dcache/commit/1c427912a0d9f92963cf2b25db64fb8195552b04)
: statistics: avoid stack-trace on internal timeout
[2304f35](https://github.com/dcache/dcache/commit/2304f35659998915901abdf120e15d9bb522c931)
: pool: fix stack-trace when closing dcap mover connection
## Release 3.0.34
### admin
The admin interface reported an attempt to connect to an absent cell as a bug. The current release fixed the issue.
### httpd
Requests to httpd targeting an unknown resource was returning `200 OK` response code. Nevertheless the `404 NOT FOUND`
response would be closer fit. This is now fixed.
### nfs
The current release corrects inaccurate documentation of `nfs.enable.pnfsmanager-query-on-move`.
### Changelog 3.0.33..3.0.34
<!-- git log 3.0.33..3.0.34 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[bcd8d31](https://github.com/dcache/dcache/commit/bcd8d31e99fd895f861f975138edb382a39dc754)
: [maven-release-plugin] prepare release 3.0.34
[e8014a2](https://github.com/dcache/dcache/commit/e8014a275a5ba87bf0ad93cf2b4795d0b99c03c5)
: nfs: fix documentation of nfs.enable.pnfsmanager-query-on-move
[233b6fd](https://github.com/dcache/dcache/commit/233b6fda47074abc618c884daf8024e9370411fb)
: admin: do not report attempts to connect to missing cell as a bug
[9a0752d](https://github.com/dcache/dcache/commit/9a0752d4206df17c0c1b9fa0b049203ef6d7b343)
: httpd: return 404 status code on an unknown page
[1cd37d0](https://github.com/dcache/dcache/commit/1cd37d0012d6536b39080a6072f18d9fdc9c0c89)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.33
### Changes affecting multiple services
dCache no longer logs stack-traces if a Java VirtualMachineError occurs. This is unnecessary as dCache was (presumably) working fine until Java
discovered a problem.
### chimera
Sites updating to dCache 2.15 or later might observe that a lost+found directory with incorrect permissions was created during the update. This
patch ensures correct permissions. Since we cannot know if the current permissions in lost+found are
intended, this patch does not modify any existing lost+found directory
permissions.
### pool
The `sweeper free`command no longer logs a stack trace if it is started with incorrect input information.
An irrelevant stack trace was logged by the pool. This release corrects that.
### Changelog 3.0.32..3.0.33
<!-- git log 3.0.32..3.0.33 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[52aa1504eb](https://github.com/dcache/dcache/commit/52aa1504eb86a158714694447ac425a3eb7489d7)
: [maven-release-plugin] prepare release 3.0.33
[ce3a5fae78](https://github.com/dcache/dcache/commit/ce3a5fae7842687743e80d0f2d17b702a510d1cd)
: chimera: update schema migration when creating 'lost+found' directory.
[35db8236df](https://github.com/dcache/dcache/commit/35db8236df2bb912ac5a7a24cb4edce51da137ad)
: pool: fix stack-trace on bad command input
[f6b22647da](https://github.com/dcache/dcache/commit/f6b22647dac19994f4833b4e765dcf2549d942ef)
: pool: fix stacktrace on FaultEvent logging
[da4ba36bbe](https://github.com/dcache/dcache/commit/da4ba36bbe09f50b8f3f5df348120979d8e7118d)
: system: Don't log stack-trace on fatal JVM error
[74b2e62277](https://github.com/dcache/dcache/commit/74b2e62277a350c0f67b9570fd1d9e05cd9c6f49)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.32
### alarms
Until now, the sorting order of alarms did not provide a correct ordering
for all types of alarms. With this release, alarms are now implicitly ordered
by at least their latest modification timestamp.
### resilience
One of the features of resilience is the enforcement of file
partioning on pools according to pool tags. The pool tag
restrictions are observed whenever a file is copied. In
addition, it is rechecked when a storage unit is updated,
in order to make sure the files are distributed correctly
according to the new requirements. This is done by
removing the offending copies and recopying them in
a new location.
Should files get redistributed, however, by rebalancing or
a migration job, it is possible that the partitioning will
be violated, since only resilience observes it.
The resilience service now verifies that files are distributed according to the requirements
specified by pool tags while doing periodic scans (or scans initiated through the admin
command).
### statistics
A possible race condition was removed from the implementation of the `create stat` admin command.
### Changelog 3.0.31..3.0.32
<!-- git log 3.0.31..3.0.32 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[b65e0caea0](https://github.com/dcache/dcache/commit/b65e0caea05e3c4a3f81c54affaafe4f37cd7e6c)
: [maven-release-plugin] prepare release 3.0.32
[ce83a48128](https://github.com/dcache/dcache/commit/ce83a48128e5a179ed7dfdb97da40f5daeda4352)
: statistics: fix race in "create stat" admin command
[a57ac478f7](https://github.com/dcache/dcache/commit/a57ac478f7c739df4a6209b5dfb527e2888c0ab1)
: srm: fix stacktrace on database failure
[c47a65e81c](https://github.com/dcache/dcache/commit/c47a65e81c972f126fda260900bec30900cf6ade)
: alarms: revert LogEntry.compareTo() to throw NPE on null object
[049419c772](https://github.com/dcache/dcache/commit/049419c7723e59131833e783c7a1cb4376c919d7)
: resilience: force tag partition checking on scans from admin command and periodic checks
[aaad9d2599](https://github.com/dcache/dcache/commit/aaad9d259901be5550a2bf86289f20ed8a8dfe24)
: alarms: fix natural order comparator to use timestamp first
[ea6aed2009](https://github.com/dcache/dcache/commit/ea6aed20093ea20226779b6b9d853e3cdfb4307b)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.31
### dcap
A pool that has gone offline and comes back up again may become
very slow to respond due to a large amount of superfluous error
messages to dcap clients that disconnected in the meantime. This
patch ensures a more responsive reaction to these cases by
introducing a time-to-live value for such messages.
### pool
Error reporting was improved for cases of IO errors in pools.
### Changelog 3.0.30..3.0.31
<!-- git log 3.0.30..3.0.31 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[f7e46f453c](https://github.com/dcache/dcache/commit/f7e46f453c10da9a318212f7bbf77db43741746e)
: [maven-release-plugin] prepare release 3.0.31
[d403eb76f7](https://github.com/dcache/dcache/commit/d403eb76f7ae95d4e11f7eecc0b0ae486f1a77bb)
: pool: avoid 'null' and other nondescript error messages
[7008ae46a8](https://github.com/dcache/dcache/commit/7008ae46a85ee3c67fda111a751d5a5095c22850)
: [maven-release-plugin] prepare for next development iteration
[7ae58e2bc8](https://github.com/dcache/dcache/commit/7ae58e2bc8294f7e1541ef8cc860897c4f6fb0db)
: dcap: add TTL information to dcap messages
## Release 3.0.30
### Changes affecting multiple services
Many dCache components use RemotePoolMonitor to provide fast access to
the information that PoolManager has about pools. In order to facilitate
system diagnosis, the 'info' admin command was augmented by information
about the current status of the RemotePoolMonitor.
### admin
The Apache sshd library used by the admin interface was updated.
Although we believe that dCache is not affected, some security vulnerability
scanners alert users to a potentially vulnerable library version.
The update serves mostly to avoid those false alarms.
### pool
A bug in gfal2 results in FTP transfers being aborted some 50 ms after
being initiated. This results in the door killing the mover shortly
after the pool received the PoolDeliverFile message. If the mover is
not queued, but not yet fully started, this may lead to the pool
disabling itself. This patch corrects that problem, ensuring that
the pool continues to run despite any aborted transfers.
### xrootd
In the 4.7 releases, the xrootd client started enforcing
protocol requirements for kXR_login which, unfortunately,
broke access to dCache. The xrootd client expects an answer
with a 16-character session ID from the door and then the
pool after the redirection. Without this ID, the client
would retry (without success) repeatedly and appear to hang.
dCache's xrootd implementation has been augmented with the session
ID, enabling it to work with xrootd clients of version 4.7 and up.
### Changelog 3.0.29..3.0.30
<!-- git log 3.0.29..3.0.30 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[8aa487149e](https://github.com/dcache/dcache/commit/8aa487149e69c22024027e9f790e981bd1dcff7e)
: [maven-release-plugin] prepare release 3.0.30
[a2aa5fc13b](https://github.com/dcache/dcache/commit/a2aa5fc13be5fc5dcf516899be12a878f260b6b4)
: many: add diagnostic information about remote pool monitor
[666b22a5bb](https://github.com/dcache/dcache/commit/666b22a5bbc8177a592e002f5365ea6d20249506)
: pool: dont disable pool if mover cancelled before open
[cdc124dce6](https://github.com/dcache/dcache/commit/cdc124dce66c6450e61db7addad8dc1f1a83e32c)
: update apache sshd version due to security vulnerability
[b730eec759](https://github.com/dcache/dcache/commit/b730eec7597c6e960f1628b292edd03a983e110e)
: [maven-release-plugin] prepare for next development iteration
[1322fd2dcc](https://github.com/dcache/dcache/commit/1322fd2dcce8ebe2fe21e150de20979c102c73a0)
: dcache: fix bug in PoolSelectionUnitV2 match()
[eee56dee0a](https://github.com/dcache/dcache/commit/eee56dee0ab186ea7627fee02b70055853721d98)
: dcache-xrootd: Fix login handshake to support xrootd clients (> 4.7.0)
## Release 3.0.29
### cells
The current release improved some problematic error messages has better error reporting to ensure bugs are understood.
### httpd
The curren release fixed the issue of change of format in transfers.txt after upgrading from 2.13 to 2.16.
### pool
The current release fixed log and alarms duplication when rebuilding broken entry.
### webdav
Regression fixed in OPTIONS output.
### Changelog 3.0.28..3.0.29
<!-- git log 3.0.28..3.0.29 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[f265e50](https://github.com/dcache/dcache/commit/f265e5000df9990a96bdad991307581b61976c44)
: [maven-release-plugin] prepare release 3.0.29
[0eec693](https://github.com/dcache/dcache/commit/0eec6936bd3d83e85f1b21ef92ea7e428311ca96)
: httpd: restore millis to transfer time for transfers.txt
[539d3ed](https://github.com/dcache/dcache/commit/539d3ed1b2bb7fbca24ea909b2422c36792f27b6)
: pool: fix log and alarms duplication when rebuilding broken entry
[38f5b2d](https://github.com/dcache/dcache/commit/38f5b2d61ffffdecebd0f8e6d9f3360cf54d555c)
: cells: better error reporting to ensure bugs are understood
[c506caf](https://github.com/dcache/dcache/commit/c506caf56dede78ad5c4344704b21b3675c76aa7)
: webdav: fix regression in OPTIONS response
[342e21b](https://github.com/dcache/dcache/commit/342e21bacf89f4dfaae358e70a2ea2dc2a679d91)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.28
### pool
The current release fixed regression in GridFTP OPTS CKSM command and GridFTP `OPTS CKSM` command is supported again.
The current release fixe regression with third-party pull transfers using GridFTP, with
dCache acting as the GridFTP client that prevented data integrity
checks.
### resilience
When resilience tries to copy or remove a file, and it is no longer
in the namespace, this should be a fatal error, differently from
the discovery that a replica is no longer in cache. These two
errors, however, were treated the same way. This is now fixed and the correct behavior is
immediate abort of operation when file is not in namespace.
The current release improved error handling for file deletion during scan correctly it fixed bug in formatting and handling of cache exception types.
When doing a pool scan, the storage unit information must be
recovered for each file. This is done from the chimera attributes.
The code checks an internal map for an index number corresponding
to the unit it knows about from the PoolMonitor.
However, if the pool selection unit configuration changes such that
a storage unit is eliminated, that mapping will also be deleted
from resilience. In the case that the attributes stored in
Chimera still have the older storage class information, there
will be a NoSuchElementException thrown.
This is fixed now and Pool scans that encounter this situation do not get stuck
forever in the queue.
### webdav
In RFC 7230, section 3.2, it states that HTTP header names should be
case insensitive. Despite this, the standard milton mechanism for
acquiring header information is case sensitive, which (in turn) means
that several HTTP header values in dCache are similarly case sensitive.
There were reports that this case sensitivity has caused problems with certain clients (e.g., go).
The current release fixed this issue and headers that control third-party transfers are now case insensitive, so should work with more clients.
### Changelog 3.0.27..3.0.28
<!-- git log 3.0.27..3.0.28 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[70c3e94](https://github.com/dcache/dcache/commit/70c3e941a825fa08a055a364bce0c8cce0f7d489)
: [maven-release-plugin] prepare release 3.0.28
[06fe64a](https://github.com/dcache/dcache/commit/06fe64a159eb1f643f1e5e36d92e4ec0b10c3075)
: Update FileOperationHandler.java
[398244a](https://github.com/dcache/dcache/commit/398244a62f13a9247da3ba86e6e7367edf34a4c3)
: pool: fix data integrity regression for 3rd-party GridFTP pull transfers
[c212dd4](https://github.com/dcache/dcache/commit/c212dd4caa48d6c9a566d00ccb46290f1b304ed1)
: pool: fix regression in GridFTP OPTS CKSM command
[f86778a](https://github.com/dcache/dcache/commit/f86778a7625736e85518cd7748239eea7bada728)
: resilience: handle file deletion during scan correctly
[1020c75](https://github.com/dcache/dcache/commit/1020c7543721af38d594618aba573808c132b7a1)
: resilience: add pool operation logging
[3927e50](https://github.com/dcache/dcache/commit/3927e500771243522da0aca87e6bce2054a322b1)
: resilience: handle storage unit NoSuchElement failure
[b9868d6](https://github.com/dcache/dcache/commit/b9868d6a725b84e2039a5dfd1de04fb4d8b6d310)
: webdav: adjust header parsing to be case insensitive
[9512b10](https://github.com/dcache/dcache/commit/9512b10c174fc29ac53194ac295e6e5fcef16830)
: resilience: handle all cases where no locations for file may be discovered
[05fd04d](https://github.com/dcache/dcache/commit/05fd04d38cffcb1e8dd953577acf805b5b7789f5)
: resilience: distinguish correctly between file not in repository and file not found
[80175bf](https://github.com/dcache/dcache/commit/80175bf0351f571a666422d91c0609e4b96eed4c)
: resilience: fix bug in formatting and handling of cache exception types
[73bd846](https://github.com/dcache/dcache/commit/73bd8469fede9ad5f44b971cbde63fa6cf52e674)
: PoolManager : set return code to CacheException.PERMISSION_DENIED if staging is not allowed due to stage protection.
[04bef34](https://github.com/dcache/dcache/commit/04bef34c1df939946f0745fd9e14ba3eb294b100)
: ftp: update exception logging to include context
[a5e8bd2](https://github.com/dcache/dcache/commit/a5e8bd20c61ec0e89445527d930ae732cf185888)
: [maven-release-plugin] prepare for next development iteration
## Release 3.0.27
### cells
The current release improved handling of rogue domains with badly formatted dCache versions.
### configuration
There are configuration options in zookeeper that may affect how well
the zookeeper cluster will work with dCache. The lack of documentation
of how dCache uses zookeeper prevents admins from tuning their zookeeper
instance. This is now fixed and zookeeper configuration is updated with
hints on how dCache uses zookeeper, along with the corresponding zookeeper configuration properties.
### pool
The current release fixed loading `setup` that requires queues created by `pool.queues`.
### webdav
The current release fixed the stack-traces on bad client input.
### Changelog 3.0.26..3.0.27
<!-- git log 3.0.26..3.0.27 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[2b591bf](https://github.com/dcache/dcache/commit/2b591bf1b52c65be8b3b94da73f228cfabcc66e9)
: [maven-release-plugin] prepare release 3.0.27
[fa68a01](https://github.com/dcache/dcache/commit/fa68a01877fc88ea081eb5a51b06e12630f77dbd)
: cells: better handling of rogue domains with badly formatted dCache versions
[c944c47](https://github.com/dcache/dcache/commit/c944c4710899485e5b483601475c7b203ee817aa)
: configuration: update zookeeper configuration with hints
[cb033cb](https://github.com/dcache/dcache/commit/cb033cb74fcb703445023eab8825865634607b6d)
: pool: fix loading 'setup' that requires queues created by 'pool.queues'
[545d072](https://github.com/dcache/dcache/commit/545d0721a3a2b86a120ac3eb07ecf09e091639db)
: webdav: avoid stack-trace on bad user requests
[47d18d7](https://github.com/dcache/dcache/commit/47d18d7d9f5bbc2e0d533bfaf9d75fd7381eac1a)