lkml.org 
[lkml]   [2007]   [Jul]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [rfc] direct IO submission and completion scalability issues
On Mon, Jul 30, 2007 at 11:20:04AM -0700, Christoph Lameter wrote:
> On Fri, 27 Jul 2007, Siddha, Suresh B wrote:
>
> > We have been looking into the linux kernel direct IO scalability issues with
> > database workloads. Comments and suggestions on our below experiments are
> > welcome.
>
> This was on an SMP system? These issues are much more pronounced on a NUMA
> system. There the locality of the device may be a prime issue.

We are looking into both SMP(multi-core) and NUMA systems.

> Yes. The issue is even worse if the submission comes from a remote node.
> F.e. If we have a system with a scsi controller on node 2. Now I/O
> submission on node 1 and completion on node 2. In that case the
> cacheline has to be transferred across the NUMA interlink.
>
> However, you cannot avoid running the completion on the node where the
> device sits. The device has all sorts of control structures and if you
> would handle the completion on node 1 then it would have to transfer lots
> of cachelines that contain device state to node 1.

If the device is capable of multi queues, then some of the control structures,
irqbalance can be done based on how those multi queues are distributed.

> I think it is better to leave things as is. Or have the I/O submission be
> relocated to the node of the device.

In the absence of specialized controllers, it is best to keep the control
structures close to the device node and move the I/O submission to this node.

> > Second experiment which we did was migrating the IO submission to the
> > IO completion cpu. Instead of submitting the IO on the same cpu where the
> > request arrived, in this experiment the IO submission gets migrated to the
> > cpu that is processing IO completions(interrupt). This will minimize the
> > access to remote cachelines (that happens in timers, slab, scsi layers). The
> > IO submission request is forwarded to the kblockd thread on the cpu receiving
> > the interrupts. As part of this, we also made kblockd thread on each cpu as the
> > highest priority thread, so that IO gets submitted as soon as possible on the
> > interrupt cpu with out any delay. On x86_64 SMP platform with 16 cores, this
> > resulted in 2% performance improvement and 3.3% improvement on two node ia64
> > platform.
>
> I think that is the right approach. This will also help in cases where I/O
> devices can only be accessed from a certain node (NUMA device address
> restrictions on some systems may not allow remote cacheline access!)

Ok, there we have no other choice ;-)

> > Observation #2: This introduces some migration overhead during IO submission.
> > With the current prototype, every incoming IO request results in an IPI and
> > context switch(to kblockd thread) on the interrupt processing cpu.
> > This issue needs to be addressed and main challenge to address is
> > the efficient mechanism of doing this IO migration(how much batching to do and
> > when to send the migrate request?), so that we don't delay the IO much and at
> > the same point, don't cause much overhead during migration.
>
> Right.

So any suggestions for making this clean and acceptable to everyone?

thanks,
suresh
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2007-07-30 22:43    [W:0.191 / U:0.052 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site