私はceph-deployを使用してcephクラスタを展開しています。展開が完了した後、私は実行時設定がceph.confと同じではないことを発見しました。私はマニュアルのランタイム設定を変更しませんでした。cephランタイム設定はceph.confと同じではありません
[[email protected] ~]# ceph daemon osd.0 config show | grep rbd_cache
"rbd_cache": "true",
"rbd_cache_writethrough_until_flush": "true",
"rbd_cache_size": "33554432",
"rbd_cache_max_dirty": "25165824",
"rbd_cache_target_dirty": "16777216",
"rbd_cache_max_dirty_age": "1",
"rbd_cache_max_dirty_object": "0",
"rbd_cache_block_writes_upfront": "false",
[[email protected] ~]# cat /etc/ceph/ceph.conf | grep "rbd cache size"
rbd cache size = 268435456
rbd_cache_sizeが異なることがわかります。だから私は知りたいです:
cephの実行時設定がceph.confから値を読み込むかどうかを知りたいですか?そうでない場合、ceph.confの意味は何ですか?
おかげ