[BUG]? Misleading Manual

fstrankowski

Renowned Member
Nov 28, 2016
78
18
73
40
Hamburg
The manual states for creating an OSD with filestore:

Code:
If you want to use a dedicated SSD journal disk:
pveceph createosd /dev/sd[X] -journal_dev /dev/sd[Y]

But we're missing a certain flag here:

Code:
 -bluestore 0

So it should be:
Code:
pveceph createosd /dev/sd[X] -bluestore 0 -journal_dev /dev/sd[Y

Because the -journal_dev flag does not automatically create a filestore OSD. Instead one is getting a bluestore OSD with journal_dev instead of wal_dev. Atleast thats what worked. Without the bluestore-flag disc didnt show up.
 
thanks for catching this, fixed in git :)
 
  • Like
Reactions: fstrankowski