Represents the indexes for a BLOB or CLOB. The inode contains 16 long values
0) length of the saved file 1-14) direct fragment addresses (to 224k) 15) pointer to the indirect block
Inline storage (120)
If the length of the blob is less than 120, the blob is stored directly in the inode.
mini fragment storage (3840)
If the length of the blob is less than 3840, the blob is stored in mini-fragments of size 256 pointed by the inode's addresses. The maximum wasted space for mini-fragment storage is 255 bytes.
direct block storage
The first 14 block pointers (224k)
indirect storage
The indirect block (a 16k block) itself is divided into sections:
0-1023) single indirect fragment addresses (16M, 2^24) 1024-1535) double indirect block addresses (16G, 2^34) 1536-2047) triple indirect block addresses (to 8T, 2^43)