forked from ceph/ceph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv11.2.1.txt
8020 lines (5412 loc) · 283 KB
/
v11.2.1.txt
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
commit e0354f9d3b1eea1d75a7dd487ba8098311be38a7
Author: Jenkins Build Slave User <[email protected]>
Date: Tue Aug 8 19:07:05 2017 +0000
11.2.1
commit 11d5c2b0aae372f9c993a7dea5a914ee74e7480c
Merge: 397b553932 6b428b77f2
Author: Nathan Cutler <[email protected]>
Date: Wed Aug 2 15:08:48 2017 +0200
Merge pull request #14702 from ceph/wip-bp-kraken-systemd
kraken: qa/tasks: misc systemd updates
Reviewed-by: Nathan Cutler <[email protected]
commit 397b5539320236bffc66caab579422b1bd4570f7
Merge: 0bab3f3a10 d24edde072
Author: Nathan Cutler <[email protected]>
Date: Wed Aug 2 07:55:48 2017 +0200
Merge pull request #15509 from ceph/wip-ceph-disk-fix-kraken
kraken: selinux: Do parallel relabel on package install
Reviewed-by: Kefu Chai <[email protected]>
commit 0bab3f3a1026c41736e06f72f8ede68b3386d772
Merge: 646f2b3c26 a91253ec50
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 20:19:15 2017 +0200
Merge pull request #14612 from smithfarm/wip-19651
tests: backport Sage's fixes to qa/suites/upgrade/jewel-x
Reviewed-by: Kefu Chai <[email protected]>
commit 646f2b3c260ea5af3657d5f289753b114ba0d71e
Merge: e9c255689f cf06edd36b
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 14:39:37 2017 +0200
Merge pull request #16298 from smithfarm/wip-20517-kraken
kraken: rbd: cli: map with cephx disabled results in error message
Reviewed-by: Jason Dillaman <[email protected]>
commit e9c255689fcf2a7afe1deda3b987591162767daa
Merge: 143e431d76 1fc14857a9
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 14:17:40 2017 +0200
Merge pull request #16175 from smithfarm/wip-20263-kraken
kraken: rgw: datalog trim can't work as expected
Reviewed-by: Orit Wasserman <[email protected]>
commit 143e431d769ad68101df436735154c1230f3732b
Merge: c9a545dba6 b758348447
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 14:16:54 2017 +0200
Merge pull request #15985 from prallabh/kraken
kraken: rgw: Custom data header support
Reviewed-by: Orit Wasserman <[email protected]>
commit c9a545dba68fe09e7aa971aec00c7e5aa1f217d2
Merge: 245bf9205d 45b4c86452
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 14:15:33 2017 +0200
Merge pull request #16186 from smithfarm/wip-20264-kraken
kraken: rbd: [cli] ensure positional arguments exist before casting
Reviewed-by: Jason Dillaman <[email protected]>
commit 245bf9205dc811b4bbe99e53bf20b32daeb85f8d
Merge: 3d19b8acf0 f2d61c199d
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 14:12:58 2017 +0200
Merge pull request #16342 from dillaman/wip-20630-kraken
kraken: tests: qa/tasks: rbd-mirror daemon not properly run in foreground mode
Reviewed-by: Nathan Cutler <[email protected]>
commit 3d19b8acf0f76794c2b9c48f6ab386b6e5d14139
Merge: a57772db99 f72ea68186
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 13:14:09 2017 +0200
Merge pull request #16290 from smithfarm/wip-19759-kraken
kraken: rgw: multisite: after CreateBucket is forwarded to master, local bucket may use different value for bucket index shards
Reviewed-by: Casey Bodley <[email protected]>
commit a57772db99068c5e05b7b8cd1e346bdfb1fba292
Merge: a1ff4e61af af0a6df270
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 13:12:37 2017 +0200
Merge pull request #16180 from smithfarm/wip-20347-kraken
kraken: rgw: meta sync thread crash at RGWMetaSyncShardCR
Reviewed-by: Casey Bodley <[email protected]>
commit a1ff4e61aff4497e84d07070de984e34c6539bf0
Merge: d0d98362e7 17fd055a4f
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 12:47:45 2017 +0200
Merge pull request #16190 from smithfarm/wip-20026-kraken
kraken: mds: unresponsive when truncating a very large file
Reviewed-by: Patrick Donnelly <[email protected]>
commit d0d98362e7363fd84334941085203aa3bfd7a2d2
Merge: 72e5d6116c 719ed0101b
Author: Nathan Cutler <[email protected]>
Date: Tue Aug 1 11:08:47 2017 +0200
Merge pull request #15526 from badone/wip-async-sleep-timer-fix-kraken
kraken: osd: Implement asynchronous scrub sleep
Reviewed-by: Josh Durgin <[email protected]>
commit 72e5d6116cc1afd83f96e26e32c5949548c1dcbc
Merge: 16ca3c7f40 533ff8a540
Author: Nathan Cutler <[email protected]>
Date: Mon Jul 31 16:47:45 2017 +0200
Merge pull request #16137 from smithfarm/wip-20024-kraken
kraken: tests: HEALTH_WARN pool rbd pg_num 244 > pgp_num 224 during upgrade
Reviewed-by: Kefu Chai <[email protected]>
commit 16ca3c7f40d37f1fb6e38665dd0c33fe3ab5a060
Merge: a1c2cbd074 4d1272e5c6
Author: Nathan Cutler <[email protected]>
Date: Mon Jul 31 15:31:12 2017 +0200
Merge pull request #14734 from smithfarm/wip-19670-kraken
kraken: build/ops: logrotate is missing from debian package (kraken, master)
Reviewed-by: Kefu Chai <[email protected]>
commit a1c2cbd074dbc2954fea0d2808a80958f17fe9c3
Merge: fd6816bb72 ccb33bab37
Author: Nathan Cutler <[email protected]>
Date: Mon Jul 31 15:21:02 2017 +0200
Merge pull request #16166 from smithfarm/wip-19840-kraken
kraken: rgw: civetweb frontend segfaults in Luminous
Reviewed-by: Radoslaw Zarzynski <[email protected]>
commit a91253ec50dd5c2ab85b00d52361fd22580e1ed3
Author: Sage Weil <[email protected]>
Date: Tue Mar 7 22:35:02 2017 -0500
qa/suites/upgrade/jewel-x: do not thrash cluster full during upgrade
The mon command varies.
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit 39fdc53fe5f33678fbbd00cf8810b6d523d0040c)
commit afb5f4b0b6eb0bbbfbdd628ff466e1fad6e6e4ef
Author: Sage Weil <[email protected]>
Date: Mon Mar 6 15:16:13 2017 -0500
qa/suites/upgrade/jewel-x/parallel: expand workload matrix
These should run independently against a racing upgrade.
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit 1a0ad2b48839fea75d4d3339f7d198404ff1ac37)
commit a88bd845df01b9fa8d1b0482b1c4d6bfae301f40
Author: Sage Weil <[email protected]>
Date: Mon Mar 6 14:11:53 2017 -0500
qa/suites/upgrade/jewel-x/stress-split-erasure-code: box thrashosds
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit b2d354d56359d08b35cbea58f811c7bafb700d31)
commit d4521fc2b9b13cee58abb4b578e8ba00c6aca0ae
Author: Sage Weil <[email protected]>
Date: Mon Mar 6 14:07:53 2017 -0500
qa/suites/upgrade/jewel-x/stress-split: finish client.0 upgrade too
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit 56f9387736eed136b38c087a4805821063e9f8ab)
commit 907888f881cc7224f9f9c17f38cc98773ca33906
Author: Sage Weil <[email protected]>
Date: Sun Mar 5 14:14:40 2017 -0500
qa/suites/upgrade/jewel-x: remove kraken references
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit 468285b65d6bef2d86c80ebdfecf0920294ca5cd)
commit 70415451e90d5aba473dbb3b1bd00ce4de0d077b
Author: Sage Weil <[email protected]>
Date: Wed Mar 1 19:01:20 2017 -0600
qa/suite/upgrade/jewel-x: drop x86 ec test
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit 1e0e53c80d8fa88970cee1d61aaa8514004547ac)
commit fa7934b3abe395d52f127c6e170a54296d936211
Author: Sage Weil <[email protected]>
Date: Mon Feb 20 14:38:49 2017 -0500
qa/suites/upgrade/jewel-x: fix upgrade order; fix split grouping
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit 269eafb2027ea6dfbad730f6fb1481a1cabc5e60)
Conflicts:
stress-split/6-kraken.yaml (do not delete)
stress-split/6-luminous.yaml (do not add)
stress-split-erasure-code/6-kraken.yaml (do not delete)
stress-split-erasure-code/6-luminous.yaml (do not add)
commit b574cb341c9ce0f9d986c79c03951c7c9eafb0b8
Author: Sage Weil <[email protected]>
Date: Mon Mar 6 19:01:12 2017 -0500
qa/suites/upgrade/jewel-x/parallel: upgrade mons before osds
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit 3c80e15c3b34ac2adc4e70f09929e3bc01785594)
commit 4eb3c2dbf321cf7a110b2ac7022d5d9cc80b8f3a
Author: Sage Weil <[email protected]>
Date: Wed Mar 1 13:58:07 2017 -0600
qa/suites/upgrade/jewel-x/parallel: fix upgrade to luminous
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit 2e3ea53b41cacc4b4bbc4ffe7342fb00233009cf)
Conflicts:
4-kraken.yaml (do not delete)
4-luminous.yaml (do not add)
commit fd6816bb725f7699537276c13f68d815a7406228
Merge: a6fdfccd11 b7503d3a80
Author: Nathan Cutler <[email protected]>
Date: Mon Jul 31 12:32:45 2017 +0200
Merge pull request #13871 from smithfarm/wip-19162-kraken
kraken: rgw: rgw_file: fix marker computation
commit a6fdfccd117180cf3906e1349b7af19462eae0e1
Merge: b50909c861 a7af766aa8
Author: Nathan Cutler <[email protected]>
Date: Mon Jul 31 12:26:47 2017 +0200
Merge pull request #16133 from smithfarm/wip-18378-kraken
kraken: msg/simple/SimpleMessenger.cc: 239: FAILED assert(!cleared)
Reviewed-by: Josh Durgin <[email protected]>
commit b50909c861450f1aeb40d3fa1a0ca4d997d09a0c
Merge: 938b723717 c6542ac7e6
Author: Nathan Cutler <[email protected]>
Date: Mon Jul 31 12:23:08 2017 +0200
Merge pull request #16134 from smithfarm/wip-19340-kraken
kraken: An OSD was seen getting ENOSPC even with osd_failsafe_full_ratio passed
Reviewed-by: David Zafman <[email protected]>
commit 17fd055a4f68cb3c51baa1ac1fb089d15b818312
Author: Yan, Zheng <[email protected]>
Date: Tue Apr 25 16:21:24 2017 +0800
osdc/Filer: truncate large file party by party
Fixes: http://tracker.ceph.com/issues/19755
Signed-off-by: "Yan, Zheng" <[email protected]>
(cherry picked from commit 5fab215e461e5ecc36c0f9d9ea867f6c45e80263)
Conflicts:
src/osdc/Filer.h
src/osdc/Filer.cc
src/mds/MDCache.cc
commit 938b723717745eff4e3ab18b9a0f11cfc5190876
Merge: e56d4c481d b8dfa2f73a
Author: Nathan Cutler <[email protected]>
Date: Mon Jul 31 11:58:20 2017 +0200
Merge pull request #16131 from smithfarm/wip-swift-kraken
tests: swift.py: clone the ceph-jewel branch
Reviewed-by: Casey Bodley <[email protected]>
commit 719ed0101b1bfdd4b71ef84101515492597153f9
Author: Brad Hubbard <[email protected]>
Date: Mon May 22 13:21:25 2017 +1000
osd: Move scrub sleep timer to osdservice
PR 14886 erroneously creates a scrub sleep timer for every pg resulting
in a proliferation of threads. Move the timer to the osd service so
there can be only one.
Fixes: http://tracker.ceph.com/issues/19986
Signed-off-by: Brad Hubbard <[email protected]>
(cherry picked from commit f110a82437df79dc20207d296e8229fc0e9ce18b)
commit 460a820a3b2fbd48c8a7966502b235aae8d5d298
Author: Brad Hubbard <[email protected]>
Date: Mon Apr 24 14:10:47 2017 +1000
osd: Implement asynchronous scrub sleep
Rather than blocking the main op queue just do an async sleep.
Fixes: http://tracker.ceph.com/issues/19497
Signed-off-by: Brad Hubbard <[email protected]>
(cherry picked from commit 7af3e86c2e4992db35637864b83832535c94d0e6)
commit e56d4c481dead2f8ccb7baaae80db2f4acfc7bf0
Merge: 024272160d bdb16fd0f5
Author: Nathan Cutler <[email protected]>
Date: Tue Jul 25 07:14:37 2017 +0200
Merge pull request #16493 from smithfarm/wip-suppress-upgrade-fail
tests: run certain upgrade/jewel-x tests on Xenial only
Reviewed-by: Josh Durgin <[email protected]>
Reviewed-by: Gregory Farnum <[email protected]>
commit 024272160de37c3ed2a2df701fc1e8f4c11c2da5
Merge: d8e0ddc57b 838d7840f0
Author: Nathan Cutler <[email protected]>
Date: Tue Jul 25 07:13:48 2017 +0200
Merge pull request #14597 from gregsfortytwo/wip-kraken-snaptrim
kraken: core: improve control and throttling of the snap trimmer
Reviewed-by: Josh Durgin <[email protected]>
commit bdb16fd0f533691b7b7a01b176764ad907143814
Author: Nathan Cutler <[email protected]>
Date: Sat Jul 22 10:13:22 2017 +0200
tests: upgrade/jewel-x/parallel: drop duplicate kraken.yaml
This yaml file has the effect of re-running "ceph osd set require_kraken_osds"
at the very end of the test. Drop it.
Signed-off-by: Nathan Cutler <[email protected]>
commit dc8c2231cefdbc8811cdea380d7c856b57c62251
Author: Nathan Cutler <[email protected]>
Date: Sat Jul 22 00:06:48 2017 +0200
tests: run certain upgrade/jewel-x tests on Xenial only
This PR drops two upgrade/jewel-x test cases that are not compatible with
https://github.com/ceph/ceph/pull/14597
Signed-off-by: Nathan Cutler <[email protected]>
commit b8dfa2f73aff0998a4aebf6f61865983f476b8d1
Author: Nathan Cutler <[email protected]>
Date: Sun Jun 25 09:27:47 2017 +0200
tests: swift.py: clone the ceph-jewel branch
The master branch of ceph/swift.git contains tests that are incompatible with
Jewel and Hammer. The ceph-jewel branch omits these tests.
Signed-off-by: Nathan Cutler <[email protected]>
(cherry picked from commit a86ce728954a765797ce634025d43650d990e480)
Conflicts:
qa/tasks/swift.py: clone ceph-kraken branch instead of ceph-jewel
commit d8e0ddc57b0e2632baf70bebf409d52808c202fa
Merge: c539ea49a8 19c7524ace
Author: Nathan Cutler <[email protected]>
Date: Fri Jul 21 08:22:25 2017 +0200
Merge pull request #16111 from smithfarm/wip-20497-kraken
kraken: tests: insufficient timeout in radosbench task
Reviewed-by: Gregory Farnum <[email protected]>
commit af0a6df270f3c469280cae877c177086ddf10245
Author: Nathan Cutler <[email protected]>
Date: Thu Jul 6 20:17:49 2017 +0200
rgw: lease_stack: use reset method instead of assignment
It seems that the intent of 45877d38fd9a385b2f8b13e90be94d784898b0b3 was to
change all instances of "lease_stack = ..." to "lease_stack.reset(...)", but
this one was missed.
Signed-off-by: Nathan Cutler <[email protected]>
(cherry picked from commit fc425afeb2e2a6ba3c98c612b3977aea619c9f73)
Conflicts:
src/rgw/rgw_sync.cc (trivial)
commit c539ea49a8dab85bade53140d80f2a05f3f1860c
Merge: 0a9badb3e2 640a7a2629
Author: Nathan Cutler <[email protected]>
Date: Thu Jul 20 16:38:27 2017 +0200
Merge pull request #16178 from smithfarm/wip-20268-kraken
kraken: rgw: get wrong content when download object with specific range when compression was enabled
Reviewed-by: Casey Bodley <[email protected]>
commit d24edde072ec63d35965e30a58aaaf02547f9c57
Author: Boris Ranto <[email protected]>
Date: Fri Jul 7 12:37:55 2017 +0200
rpm: Fix undefined FIRST_ARG
If FIRST_ARG is undefined, the rpms will show an error on upgrade
because the condition in the postun script gets broken.
This was a regression introduced by commit for issue 20077 that moved
ceph-disk unit files to ceph-base.
Fixes: http://tracker.ceph.com/issues/20077
Signed-off-by: Boris Ranto <[email protected]>
(cherry picked from commit 562816914ccca8e4e7d9c31f333db2f0da6f7c99)
commit eac6a0dd475e22512cc24bb3b8fe018c70cf7bc8
Author: Boris Ranto <[email protected]>
Date: Mon Jun 5 18:44:18 2017 +0200
selinux: Install ceph-base before ceph-selinux
We need to have ceph-base installed before ceph-selinux to use ceph-disk
in %post script. The default ordering is random and so the installation
randomly failed to relabel the files.
Fixes: http://tracker.ceph.com/issues/20184
Signed-off-by: Boris Ranto <[email protected]>
(cherry picked from commit e69086645d3411a2ed781609b670eb5f16ac4810)
Conflicts:
ceph.spec.in: No _epoch_prefix in kraken.
commit 0a9badb3e2be41be5e7de6d865a8e323b3706fa8
Merge: 13b04089ce baa772372c
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 23:09:32 2017 +0200
Merge pull request #16114 from smithfarm/wip-20500-kraken
kraken: cephfs: src/test/pybind/test_cephfs.py fails
Reviewed-by: Patrick Donnelly <[email protected]>
commit 13b04089ceff7136785c37595f526841574cdcd9
Merge: 34c32b9d07 b941ca7eac
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 23:03:19 2017 +0200
Merge pull request #16108 from smithfarm/wip-19763-kraken
kraken: cephfs: non-local quota changes not visible until some IO is done
Reviewed-by: Patrick Donnelly <[email protected]>
commit 34c32b9d0721407511a8420ad3888cbee2fd8f5f
Merge: bb95e12790 4241a6eef0
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 23:02:09 2017 +0200
Merge pull request #16107 from smithfarm/wip-19710-kraken
kraken: mds: enable daemon to start when session ino info is corrupt
Reviewed-by: Patrick Donnelly <[email protected]>
commit bb95e127909052679a883375feb55935ccb127d5
Merge: 8202ddcf11 0b1dee0edc
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 23:01:01 2017 +0200
Merge pull request #16106 from smithfarm/wip-19680-kraken
kraken: mds: damage reporting by ino number is useless
Reviewed-by: Patrick Donnelly <[email protected]>
commit 8202ddcf1156093c58a0c161d6cdc3455fc440b5
Merge: e2efa6e9e7 f458d60838
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 23:00:13 2017 +0200
Merge pull request #16105 from smithfarm/wip-19678-kraken
kraken: cephfs: ceph-fuse does not recover after lost connection to MDS
Reviewed-by: Patrick Donnelly <[email protected]>
commit e2efa6e9e742dba2b9779e8b7382c173abfea0af
Merge: 055319bfe7 7674f84ddf
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 22:58:56 2017 +0200
Merge pull request #16104 from smithfarm/wip-19676-kraken
kraken: cephfs: Test failure: test_data_isolated (tasks.cephfs.test_volume_client.TestVolumeClient)
Reviewed-by: Patrick Donnelly <[email protected]>
commit 055319bfe7e6dd15417e30b708590a4040d2a884
Merge: 5c6a770308 bee73d2429
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 22:56:04 2017 +0200
Merge pull request #16103 from smithfarm/wip-19674-kraken
kraken: cephfs: mds is crushed, after I set about 400 64KB xattr kv pairs to a file
Reviewed-by: Patrick Donnelly <[email protected]>
commit 5c6a770308200788231173c270833a15d04765ed
Merge: 8d86192e34 32c7ebe3e6
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 22:55:17 2017 +0200
Merge pull request #16102 from smithfarm/wip-19672-kraken
kraken: mds: assert fail when shutting down
Reviewed-by: Patrick Donnelly <[email protected]>
commit 8d86192e34dfd3d91a99a354545fb3e5b7b94f79
Merge: 99d0afda7f b267a1a8be
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 22:54:07 2017 +0200
Merge pull request #16101 from smithfarm/wip-19669-kraken
kraken: mds: daemon goes readonly writing backtrace for a file whose data pool has been removed
Reviewed-by: Patrick Donnelly <[email protected]>
commit 99d0afda7f8748b13940267c3d5286b8a98d5a8f
Merge: 818ecc66c7 93e81a87ac
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 22:53:11 2017 +0200
Merge pull request #16100 from smithfarm/wip-19667-kraken
kraken: cephfs: mount point break off problem after mds switch
Reviewed-by: Patrick Donnelly <[email protected]>
commit 818ecc66c71e3ccb351353a36b32b3dd0c6c2123
Merge: c8ccfc72b3 e72d6362c1
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 22:05:12 2017 +0200
Merge pull request #16099 from smithfarm/wip-19664-kraken
kraken: mds: C_MDSInternalNoop::complete doesn't free itself
Reviewed-by: Patrick Donnelly <[email protected]>
commit c8ccfc72b3556969722c24eacdd78828a3194b7f
Merge: fbcef7d42a 3c4a5ea385
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 22:03:52 2017 +0200
Merge pull request #14998 from jan--f/wip-19845-kraken
kraken: cephfs: normalize file open flags internally used by cephfs
Reviewed-by: Patrick Donnelly <[email protected]>
commit fbcef7d42a3832c2e404aa0d141238252045d3d9
Merge: dbaae75029 f32e26e909
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 16:51:05 2017 +0200
Merge pull request #16168 from smithfarm/wip-20031-kraken
kraken: rgw: Swift's at-root features (/crossdomain.xml, /info, /healthcheck) are broken
Reviewed-by: Radoslaw Zarzynski <[email protected]>
commit dbaae750299d9169e2e1dda9d0af98521c8abb5e
Merge: e26575be67 e773b304ee
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 16:15:21 2017 +0200
Merge pull request #16164 from smithfarm/wip-19777-kraken
kraken: rgw: swift: disable revocation thread under certain circumstances
Reviewed-by: Radoslaw Zarzynski <[email protected]>
commit e26575be67e00dbf674ff77ef6e7729f22750d8b
Merge: 415174d29e 53024570e7
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:43:16 2017 +0200
Merge pull request #16191 from smithfarm/wip-20028-kraken
kraken: cephfs: Deadlock on two ceph-fuse clients accessing the same file
Reviewed-by: Yan, Zheng <[email protected]>
commit 415174d29e20f73884e81773fd0b4d1055d439b4
Merge: 2879b80281 b27595ae9c
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:32:52 2017 +0200
Merge pull request #16183 from smithfarm/wip-20405-kraken
kraken: rgw: Lifecycle thread will still handle the bucket even if it has been removed
Reviewed-by: Casey Bodley <[email protected]>
Reviewed-by: Daniel Gryniewicz <[email protected]>
commit 2879b80281c1d4bd8b8daeb5662879a296274fca
Merge: eed9a165bd 3105e2327e
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:31:50 2017 +0200
Merge pull request #16181 from smithfarm/wip-20363-kraken
kraken: rgw: VersionIdMarker and NextVersionIdMarker are not returned when listing object versions
Reviewed-by: Casey Bodley <[email protected]>
commit eed9a165bd1dd95f5afe8ccd78a742fbf16a4503
Merge: b759d4362b d0e742cafa
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:31:14 2017 +0200
Merge pull request #16179 from smithfarm/wip-20269-kraken
kraken: rgw: wrong object size after copy of uncompressed multipart objects
Reviewed-by: Casey Bodley <[email protected]>
commit b759d4362b7a3ae2bc4174eb0ef328f919644e6c
Merge: 82e9c73fe7 90288afc10
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:30:33 2017 +0200
Merge pull request #16174 from smithfarm/wip-20261-kraken
kraken: rgw: 'radosgw-admin usage show' listing 0 bytes_sent/received
Reviewed-by: Casey Bodley <[email protected]>
commit 82e9c73fe70b5e78bc170ad566fa7900191ece70
Merge: 2c5b063f43 dda4d912cd
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:29:57 2017 +0200
Merge pull request #16173 from smithfarm/wip-20156-kraken
kraken: fix: rgw crashed caused by shard id out of range when listing data log
Reviewed-by: Casey Bodley <[email protected]>
commit 2c5b063f4386663f00ff897beee0523fa6e95acd
Merge: 423d6c319f f8235c5c0a
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:29:22 2017 +0200
Merge pull request #16165 from smithfarm/wip-19839-kraken
kraken: rgw: reduce log level of 'storing entry at' in cls_log
Reviewed-by: Casey Bodley <[email protected]>
commit 423d6c319f55fb3eddc0602954645b3b1f1d7bd8
Merge: 0af35a358e 68a853a14d
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:28:30 2017 +0200
Merge pull request #16163 from smithfarm/wip-19766-kraken
kraken: rgw: when uploading the objects continuesly in the versioned bucket, some objects will not sync
Reviewed-by: Casey Bodley <[email protected]>
commit 0af35a358ea8a8b3376faf4d77bd75edb1e808fe
Merge: 872a8b53ea 9a7a73edf1
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:27:38 2017 +0200
Merge pull request #16162 from smithfarm/wip-19725-kraken
kraken: rgw: S3 v4 authentication issue with X-Amz-Expires
Reviewed-by: Casey Bodley <[email protected]>
commit 872a8b53ea022923e9c442011432df5e403520ae
Merge: 129345c319 d52aeec031
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:25:48 2017 +0200
Merge pull request #16161 from smithfarm/wip-19614-kraken
kraken: multisite: rest api fails to decode large period on 'period commit'
Reviewed-by: Casey Bodley <[email protected]>
commit 129345c3196effdaea08f9678d1a9f1cd8265d81
Merge: 72c3a04f23 91569f6385
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 15:24:59 2017 +0200
Merge pull request #16139 from smithfarm/wip-20147-kraken
kraken: rgw: 'gc list --include-all' command infinite loop the first 1000 items
Reviewed-by: Casey Bodley <[email protected]>
commit 72c3a04f23a227713f50527b8b8651580556d45a
Merge: 762901080c 6d2f959735
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 14:29:31 2017 +0200
Merge pull request #16096 from smithfarm/wip-19336-kraken
kraken: rbd: refuse to use an ec pool that doesn't support overwrites
Reviewed-by: Jason Dillaman <[email protected]>
commit 762901080c3e7982a0f38705cd09578be1c6d940
Merge: ac8bd5ea97 5dab0825d7
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 14:28:08 2017 +0200
Merge pull request #16097 from smithfarm/wip-19609-kraken
kraken: tests: [librados_test_stub] cls_cxx_map_get_XYZ methods don't return correct value
Reviewed-by: Jason Dillaman <[email protected]>
commit ac8bd5ea97b7f87533d0320048335f80dcc66224
Merge: c5d53bd299 ac706f2b4a
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 14:27:11 2017 +0200
Merge pull request #16184 from smithfarm/wip-20154-kraken
kraken: rbd: Potential IO hang if image is flattened while read request is in-flight
Reviewed-by: Jason Dillaman <[email protected]>
commit c5d53bd299807d90d3311625554e055696898e71
Merge: f73412843d 18f1830e8a
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 14:24:05 2017 +0200
Merge pull request #16187 from smithfarm/wip-20266-kraken
kraken: rbd: [api] is_exclusive_lock_owner shouldn't return -EBUSY
Reviewed-by: Jason Dillaman <[email protected]>
commit f73412843db6cb9e3416d66a2ddf92e1b8d7038f
Merge: 0d01813a8c ce874ab676
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 14:22:57 2017 +0200
Merge pull request #16195 from dillaman/wip-20351-kraken
kraken: tests: test/librbd: decouple ceph_test_librbd_api from libceph-common
Reviewed-by: Nathan Cutler <[email protected]>
commit 0d01813a8c72e0d797d100e8e45d99f1ff99ba5a
Merge: 771ebef418 379309b552
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 12:56:47 2017 +0200
Merge pull request #15486 from dillaman/wip-20022-kraken
kraken: rbd-mirror: ensure missing images are re-synced when detected
Reviewed-by: Mykola Golub <[email protected]>
commit 771ebef418eb0d585ca9bd9dd565ea9f1caf3766
Merge: 9d6e0f2ef8 3173da6e3b
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 12:50:22 2017 +0200
Merge pull request #14540 from smithfarm/wip-18910-kraken
kraken: rbd-nbd: check /sys/block/nbdX/size to ensure kernel mapped correctly
Reviewed-by: Mykola Golub <[email protected]>
commit 9d6e0f2ef86b34b0bd2443f8c8a747bb15732e7c
Merge: bb1b7c3b10 9a26882289
Author: Nathan Cutler <[email protected]>
Date: Wed Jul 19 08:05:11 2017 +0200
Merge pull request #16140 from smithfarm/wip-20271-kraken
kraken: tests: LibRadosMiscConnectFailure.ConnectFailure hang
Reviewed-by: Kefu Chai <[email protected]>
commit bb1b7c3b1060b983eeb8e3a3f9607306b47ead77
Merge: 5ea47f79c9 76fedab576
Author: Nathan Cutler <[email protected]>
Date: Tue Jul 18 23:14:59 2017 +0200
Merge pull request #16112 from smithfarm/wip-20499-kraken
kraken: tests: ObjectStore/StoreTest.OnodeSizeTracking/2 fails on bluestore
Reviewed-by: Sage Weil <[email protected]>
commit 5ea47f79c91229b57981bac77472102c868cfa89
Merge: 1913303660 47f751f48b
Author: Yehuda Sadeh <[email protected]>
Date: Tue Jul 18 13:58:14 2017 -0700
Merge pull request #14960 from yehudasa/wip-19704
kraken: civetweb: move to post 1.8 version
Reviewed-by: Yehuda Sadeh <[email protected]>
commit 838d7840f023c5802507727231983311182a1c05
Author: Greg Farnum <[email protected]>
Date: Mon Jul 10 13:33:26 2017 -0700
osd: do not default-abort on leaked pg refs
Signed-off-by: Greg Farnum <[email protected]>
(cherry picked from commit 4caf2df0c380a1281db9509b3feb342705512b58)
commit 4bf34200896ce120bba2e2d974c4f3dadb342821
Author: Greg Farnum <[email protected]>
Date: Thu May 25 22:14:38 2017 -0700
osd: shutdown our reserver_finisher earlier in the process
This finisher thread has a lot of callbacks which can hold PGRefs. Make
sure we drain them out before checking that all the PGs have finished
and have no outstanding references.
Moving this should be safe; we've already stopped the op thread et al
and the only things still running are the OSDService's objecter_finisher,
recovery_request_timer, and snap_sleep_timer (which has definitely been emptied
by the time we get here as it's synchronously cleared out on PG shutdown).
Signed-off-by: Greg Farnum <[email protected]>
(cherry picked from commit 66ea9c1f66ae31035e62bd4335b08948b1e8e5e2)
commit 2d5cafdf6461c213aa2642210a3c4efabce61efd
Author: Greg Farnum <[email protected]>
Date: Thu May 25 21:52:49 2017 -0700
osd: Reset() the snaptrimmer on shutdown
We were failing to exit various wait states which held PGRefs. Error!
Fixes: http://tracker.ceph.com/issues/19931
Signed-off-by: Greg Farnum <[email protected]>
(cherry picked from commit b0e9deeea8a8e90f6d7e9d56b6b4aed890e01d7b)
commit cc0046a999600b2e684c17fddaebcf451c259443
Author: Greg Farnum <[email protected]>
Date: Wed May 24 18:43:34 2017 -0700
osd: print out pg debug ref counts on acquire/drop
Signed-off-by: Greg Farnum <[email protected]>
(cherry picked from commit a3b028a6d1ba74ed975ebd665b1b50fb7e5039a4)
commit c6542ac7e6408f26ce7376d3a58eed0661a17099
Author: David Zafman <[email protected]>
Date: Fri Jul 7 10:53:41 2017 -0700
mon: Fix status output warning for mon_warn_osd_usage_min_max_delta
Fixes: http://tracker.ceph.com/issues/20544
Caued by: 489e810c37ed6fb9d32d1015634041a577501ee4
Signed-off-by: David Zafman <[email protected]>
(cherry picked from commit 56f9808016ab289bdc0ce7cfbb0503c78b509593)
Conflicts:
src/mon/PGMap.cc:
kraken has no daa0793c393a21bd2dd2ec52a0efd181e1032400 so we manually
apply the changes from 56f9808016ab289bdc0ce7cfbb0503c78b509593 to
src/mon/PGMonitor.cc instead of to src/mon/PGMap.cc
commit 2f26f8cbd3e81700c42202f8d933f1576772e212
Author: Sage Weil <[email protected]>
Date: Tue Apr 18 13:54:56 2017 -0400
mon/PGMonitor: clean up min/max span warning
Clean up option naming.
Signed-off-by: Sage Weil <[email protected]>
(cherry picked from commit 489e810c37ed6fb9d32d1015634041a577501ee4)
commit 90b7fd8a0accc2f8f458d35199361344652d8859
Author: David Zafman <[email protected]>
Date: Fri Feb 17 12:27:36 2017 -0800
bluestore: Fix BlueStore::statfs available amount to not include bluefs min reserved
This fixes OSD crashes because checking osd_failsafe_full_ratio won't work
without accurate statfs information.
Signed-off-by: David Zafman <[email protected]>
(cherry picked from commit 72d83f848a35e8831d66e8529c4e26f51e845da6)
commit d69e4e5e6ad633e38fc62ca0859cea1f146744b1
Author: David Zafman <[email protected]>
Date: Thu Feb 16 22:23:06 2017 -0800
osd: Round fullness in message to correspond to df -h
This really only works after journal drains because
we adjust for the journal.
Signed-off-by: David Zafman <[email protected]>
(cherry picked from commit 26dcb591f9af01ed444aa758c3d601e7f67261b2)
commit eb887e3cb1f55f016ca70ac3d4441aa03478d934
Author: David Zafman <[email protected]>
Date: Thu Feb 16 17:25:12 2017 -0800
filestore: Account for dirty journal data in statfs
Fixes: http://tracker.ceph.com/issues/16878
Signed-off-by: David Zafman <[email protected]>
(cherry picked from commit 78adb70c21c6b8e6a9191b76917919b125a9490f)
commit bc324e0446d5fd6b35651b024926c5a3099a0aff
Author: David Zafman <[email protected]>
Date: Tue Feb 14 16:37:07 2017 -0800
mon: Add warning if diff in OSD usage > config mon_warn_osd_usage_percent (10%)
Signed-off-by: David Zafman <[email protected]>
(cherry picked from commit c8004e6558359fb542e45bb4b483a6c91afdc0b4)
commit 2c2e0a353bd518f1e44435376ad1ad9a0ee6fe67
Author: David Zafman <[email protected]>
Date: Tue Feb 14 14:40:05 2017 -0800
mon: Bump min in ratio to 75%
Signed-off-by: David Zafman <[email protected]>
(cherry picked from commit 830cc7aa7be1ccd8f54f056b6a58e923cadd1c2b)
commit 899f3fca7f89ab37d20cb1ec06b911ba039c52a3