Hi everyone,
we are using Proxmox VE with Ceph and were wondering how much storage we should use from our available storage before ceph starts acting up.
Our Ceph Cluster consists of three nodes that each contribute a capacity of 27,94TB, so we reach a total of 83,82TB
We were wondering now how ceph would behave if a node would fail.
We have
and
so from what I understand, if one node goes down entirely, ceph wouldnt try to rebalance data but would go into degraded state, because min_size is 2, but size 3 cant be reached to the missing node, and the crush map would prevent ceph from trying to rebalance the data to a OSD on the other hosts, due to the step chooseleaf firstn 0 type host rule.
Am I correct about this?
and regarding capacities, at 95% capacity the cluster will stop allowing writing and reading, correct?
then I also have the milestones of 85% near full and 90% too full to backfill, does this mean I should try to always keep the capacity below 85% or 90% or 95%?
Thank you very much & Best Regards
we are using Proxmox VE with Ceph and were wondering how much storage we should use from our available storage before ceph starts acting up.
Our Ceph Cluster consists of three nodes that each contribute a capacity of 27,94TB, so we reach a total of 83,82TB
We were wondering now how ceph would behave if a node would fail.
We have
Code:
osd_pool_default_min_size = 2
osd_pool_default_size = 3
and
Code:
rule replicated_rule {
id 0
type replicated
step take default
step chooseleaf firstn 0 type host
step emit
}
so from what I understand, if one node goes down entirely, ceph wouldnt try to rebalance data but would go into degraded state, because min_size is 2, but size 3 cant be reached to the missing node, and the crush map would prevent ceph from trying to rebalance the data to a OSD on the other hosts, due to the step chooseleaf firstn 0 type host rule.
Am I correct about this?
and regarding capacities, at 95% capacity the cluster will stop allowing writing and reading, correct?
then I also have the milestones of 85% near full and 90% too full to backfill, does this mean I should try to always keep the capacity below 85% or 90% or 95%?
Thank you very much & Best Regards