ring creation
I am wondering for a swift cluster, could I create rings with different power_part for account, container, and object. We have SSD cards, we would like to use it for account and containers because these will be small amount of data, however, we would like to use normal 3Tb and 4TB hard disks for objects because data files are way more.
swift-ring-builder account.builder create 14 3 1 # here use partition power_part =14 swift-ring-builder container.builder create 16 3 1 # power_part =16 swift-ring-builder object.builder create 18 3 1 # power_part =18
swift-ring-builder account.builder r1z1-192.168.1.100:6002/ssd1 # here use SSD swift-ring-builder container.builder r1z1-192.168.1.100:6001/ssd2 # here use SSD swift-ring-builder object.builder r1z1-192.168.1.100:6000/sdb1 # here use 3TB/4TB hard disks
will the above configuration feasible, make sense performance wise?