All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andreas Rohner <andreas.rohner-hi6Y0CQ0nG0@public.gmane.org>
To: Ryusuke Konishi
	<konishi.ryusuke-Zyj7fXuS5i5L9jVzuh4AOg@public.gmane.org>
Cc: linux-nilfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: improve inode allocation (was Re: [PATCH v2] nilfs2: improve the performance of fdatasync())
Date: Wed, 24 Sep 2014 10:01:05 +0200	[thread overview]
Message-ID: <54227A41.2090509@gmx.net> (raw)
In-Reply-To: <20140924.013505.1831094490963391096.konishi.ryusuke-Zyj7fXuS5i5L9jVzuh4AOg@public.gmane.org>

On 2014-09-23 18:35, Ryusuke Konishi wrote:
> On Tue, 23 Sep 2014 16:21:33 +0200, Andreas Rohner wrote:
>> On 2014-09-23 14:47, Ryusuke Konishi wrote:
>>> By the way, if you are interested in improving this sort of bad
>>> implemetation, please consider improving inode allocator that we can
>>> see at nilfs_ifile_create_inode().
>>>
>>> It always searches free inode from ino=0.  It doesn't use the
>>> knowledge of the last allocated inode number (inumber) nor any
>>> locality of close-knit inodes such as a file and the directory that
>>> contains it.
>>>
>>> A simple strategy is to start finding a free inode from (inumber of
>>> the parent directory) + 1, but this may not work efficiently if the
>>> namespace has multiple active directories, and requires that inumbers
>>> of directories are suitably dispersed.  On the other hands, it
>>> increases the number of disk read and also increases the number of
>>> inode blocks to be written out if inodes are allocated too discretely.
>>>
>>> The optimal strategy may differ from that of other file systems
>>> because inode blocks are not allocated to static places in nilfs.  For
>>> example, it may be better if we gather inodes of frequently accessed
>>> directories into the first valid inode block (on ifile) for nilfs.
>>
>> Sure I'll have a look at it, but this seems to be a hard problem.
>>
>> Since one inode has 128 bytes a typical block of 4096 contains 32
>> inodes. We could just allocate every directory inode into an empty block
>> with 31 free slots. Then any subsequent file inode allocation would
>> first search the 31 slots of the parent directory and if they are full,
>> fallback to a search starting with ino 0.
> 
> We can utilize several characteristics of metadata files for this
> problem:
> 
> - It supports read ahead feature.  when ifile reads an inode block, we
>   can expect that several subsequent blocks will be loaded to page
>   cache in the background.
> 
> - B-tree of NILFS is efficient to hold sparse blocks.  This means that
>   putting close-knit 32 * n inodes far from offset=0 is not so bad.
> 
> - ifile now can have private variables in nilfs_ifile_info (on-memory)
>   struct.  They are available to store context information of
>   allocator without compatibility issue.
> 
> - We can also use nilfs_inode_info struct of directories to store
>   directory-based context of allocator without losing compatibility.
> 
> - Only caller of nilfs_ifile_create_inode() is nilfs_new_inode(), and
>   this function knows the inode of the parent directory.

Then the only problem is how to efficiently allocate the directories. We
could do something similar to the Orlov allocator used by the ext2/3/4
file systems:

1. We spread first level directories. Every one gets a full bitmap
   block (or half a bitmap block)
2. For the other directories we will try to choose the bitmap block of
   the parent unless the number of free inodes is below a certain
   threshold. Within this bitmap block the directories should also
   spread out.

File inodes will just start a linear search at the parents inode if
there is enough space left in the bitmap.

>> This way if a directory has less than 32 files, all its inodes can be
>> read in with one single block. If a directory has more than 32 files its
>> inodes will spill over into the slots of other directories.
>>
>> But I am not sure if this strategy would pay off.
> 
> Yes, for small namespaces, the current implementation may be enough.
> We should first decide how we evaluate the effect of the algorithm.
> It may be the scalability of namespace.

It will be very difficult to measure the time accurately. I would
suggest to simply count the number of reads and writes on the device.
This can be easily done:

mkfs.nilfs2 /dev/sdb

cat /proc/diskstats > rw_before.txt

do_tests

extract_kernel_sources

...

find /mnt

cat /proc/diskstats > rw_after.txt

The algorithm with fewer writes and reads wins.

I am still not convinced that all of this will pay off, but I will try a
few things and see if it works.

br,
Andreas Rohner

--
To unsubscribe from this list: send the line "unsubscribe linux-nilfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2014-09-24  8:01 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-23  8:46 [PATCH v2] nilfs2: improve the performance of fdatasync() Andreas Rohner
     [not found] ` <1411462018-5780-1-git-send-email-andreas.rohner-hi6Y0CQ0nG0@public.gmane.org>
2014-09-23 10:50   ` Ryusuke Konishi
     [not found]     ` <20140923.195012.716508926019147354.konishi.ryusuke-Zyj7fXuS5i5L9jVzuh4AOg@public.gmane.org>
2014-09-23 11:11       ` Andreas Rohner
2014-09-23 12:17       ` Andreas Rohner
     [not found]         ` <542164C1.7090504-hi6Y0CQ0nG0@public.gmane.org>
2014-09-23 12:47           ` Ryusuke Konishi
     [not found]             ` <20140923.214701.237540042662663531.konishi.ryusuke-Zyj7fXuS5i5L9jVzuh4AOg@public.gmane.org>
2014-09-23 14:21               ` Andreas Rohner
     [not found]                 ` <542181ED.606-hi6Y0CQ0nG0@public.gmane.org>
2014-09-23 16:35                   ` improve inode allocation (was Re: [PATCH v2] nilfs2: improve the performance of fdatasync()) Ryusuke Konishi
     [not found]                     ` <20140924.013505.1831094490963391096.konishi.ryusuke-Zyj7fXuS5i5L9jVzuh4AOg@public.gmane.org>
2014-09-24  8:01                       ` Andreas Rohner [this message]
     [not found]                         ` <54227A41.2090509-hi6Y0CQ0nG0@public.gmane.org>
2014-09-24 15:01                           ` improve inode allocation Ryusuke Konishi
     [not found]                             ` <20140925.000102.524843255498407534.konishi.ryusuke-Zyj7fXuS5i5L9jVzuh4AOg@public.gmane.org>
2014-09-24 16:18                               ` Andreas Rohner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54227A41.2090509@gmx.net \
    --to=andreas.rohner-hi6y0cq0ng0@public.gmane.org \
    --cc=konishi.ryusuke-Zyj7fXuS5i5L9jVzuh4AOg@public.gmane.org \
    --cc=linux-nilfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.