I have a doubt regarding Lustre file system. If I have a file of size 64 GB and I set stripe size to 1GB, my number of stripes become 64. But if I set my stripe count as 128, what does the Lustre do in that case?
What happens if my stripe count is set to more than my number of stripes
539 Views Asked by user1439690 At
2
There are 2 best solutions below
0

If the stripe count is set to 128, 64 stripes are utilized out of 128 and rest 64 stripes are left out. Lustre filesystem writes data in round-robin fashion which is necessary while striping. Also to make sure that the rest of the stripes are not left out imbalanced we need to set a property so that the write starts from 65th stripe.
Probably you are missing considering the details like number of OSTs while thinking about this. I will be more elaborated on this because I have seen confusion about striping in many. Please bear with me.
So in case of file of 64GB with stripe_size=1GB; stripes of 1GB are 64 but not the stripe_count. We can have any no. of stripes depending upon the file size and stripe_size, but not the stripe_count which is dependent on OSTs. Here is small experiment, I have 2 OSTs and creating 64 MB file with stripe_size=1M(default)...
Now I create a file foo with -c -1(stripe on all OSTs)...
So here we can see file 64MB is created and stripe_count is 2 which means data is written to all the 2 OSTs equally.
stripe_count is equal to the no. of objects in a single file. and each object of the file is stored on different OST. Hence it is the number of OSTs which is responsible for no. of stripe_count.
Now when you say if I change stripe_count to 128 then you should have the 128 OSTs if you don't then file will be striped only on available OSTs and that will be your stripe_count(if file is created with "-c -1" option).
Here is small experiment for above theory...
You can see in spite of setting the stripe_count=4 stripe_count is 2 and data was written only 2 OSTs.
Summary:- Don't confuse stripe_count with no. of stripes. stripe_count is on how many OSTs you want to stripe your data if they are available and stripes = (file size / stripe_size).
Hope that answers you question...