Re: [gpfsug-discuss] default inode size - remarks

2017-03-15 Thread Marc A Kaplan
You can set inode size to any one of 512, 1024, 2048 or 4096 when you mmcrfs. Try it on a test system. You want all the metadata of a file to fit into the inode. Also small files, and small directories, can be stored in their inodes. On a test file system you can examine how much of an inode

Re: [gpfsug-discuss] default inode size

2017-03-15 Thread Jan-Frode Myklebust
Another thing to consider is how many disk block pointers you have room for in the inode, and when you'll need to add additional indirect blocks. Ref: http://files.gpfsug.org/presentations/2016/south-bank/ D2_P2_A_spectrum_scale_metadata_dark_V2a.pdf If I understand that presentation correctly..

Re: [gpfsug-discuss] default inode size

2017-03-15 Thread Aaron Knister
I'm not sure because I've not tried it but if you chose an inode size less than 4K does the FS still show as being 4K aligned? If it doesn't this could prevent you from expanding the metadata capacity of the FS in the future because in a non 4k aligned fs GPFS won't let you add 4K sector size

Re: [gpfsug-discuss] default inode size

2017-03-15 Thread Stephen Ulmer
> On Mar 15, 2017, at 8:37 AM, Lukas Hejtmanek wrote: > > On Wed, Mar 15, 2017 at 08:22:22AM -0400, Stephen Ulmer wrote: >> You need 4K nodes to store encryption keys. You can also put other useful >> things in there, like extended attributes and (possibly) the entire

Re: [gpfsug-discuss] default inode size

2017-03-15 Thread Lukas Hejtmanek
On Wed, Mar 15, 2017 at 01:12:44PM +, GORECKI, DIETER wrote: > One other thing to consider is the storage of data inside the inode itself > for very small files. GPFS has the ability to use the remaining [kilo]bytes > of the inode to store the data of the file whenever the file is small

Re: [gpfsug-discuss] default inode size

2017-03-15 Thread Lukas Hejtmanek
Hello, On Wed, Mar 15, 2017 at 01:09:07PM +, Luis Bolinches wrote: >My 2 cents. Before even thinking too much on that path I would check the >following >  >- What the is physical size on those SSD if they are already 4K you won't >"save" anything size of what? >- Do

Re: [gpfsug-discuss] default inode size

2017-03-15 Thread Luis Bolinches
Hi   My 2 cents. Before even thinking too much on that path I would check the following   - What the is physical size on those SSD if they are already 4K you won't "save" anything - Do you use small (>3.5Kb) files? If so I would still keep 4K inodes - Check if 512 can hold NSDv2 format, from top

Re: [gpfsug-discuss] default inode size

2017-03-15 Thread Lukas Hejtmanek
On Wed, Mar 15, 2017 at 08:22:22AM -0400, Stephen Ulmer wrote: > You need 4K nodes to store encryption keys. You can also put other useful > things in there, like extended attributes and (possibly) the entire file. > > Are you worried about wasting space? well, I have 1PB of capacity for data

Re: [gpfsug-discuss] default inode size

2017-03-15 Thread Stephen Ulmer
You need 4K nodes to store encryption keys. You can also put other useful things in there, like extended attributes and (possibly) the entire file. Are you worried about wasting space? -- Stephen > On Mar 15, 2017, at 5:50 AM, Lukas Hejtmanek