[notepad] ceph journal size/ssd speed

Posted on Tue 18 October 2016 in Linux • 1 min read

ceph journal size (doc)

not for bluestore

osd journal size = {2 * (expected throughput * filestore max sync interval)}

The default for filestore max sync interval is 5 therefore for a 10Gbit network the "perfect" size would be

osd journal size = { 2 * ( 1280 * 5 ) } = 12.5 GB

ceph ssd speed

The optimum would be sum of all disk seq write speeds - 11 disks with ~110mb/s = ~1210mb/s - an Intel P3520 might would fit.

How many journals per ssd?

Oh thats easy.

Journals = (ssd seq write speed) / (hdd seq write speed)

Journals = 1350 / 115 = ~11

(For the Intel P3520 with 11 hdds)