|
If one stripe attribute is changed on a default directory, then a 2nd setstripe command is issued to change a different stripe attribute, the first change is lost. e.g. if lfs setstripe is used to adjust the stripe size from default, and another lfs setstripe cmd is issued to adjust the stripe count, the stripe size reverts back to the default.
- lfs setstripe -s 65536 /mnt/lustre/dir
crystal:/lus/scratch # lfs getstripe /mnt/lustre/dir
/mnt/lustre/dir
stripe_count: 1 stripe_size: 65536 stripe_offset: -1
- lfs setstripe -c 2 /mnt/lustre/dir
- lfs getstripe /mnt/lustre/dir
/mnt/lustre/dir
stripe_count: 2 stripe_size: 1048576 stripe_offset: -1
stripe_size is reset to its default value of 1048576.
Is it possible to document this in the Lustre 2.X Operations Manual and/or in the man page?
|