Re: async disk io

From: Adrian Chadd <adrian@dont-contact.us>
Date: Sat, 8 Apr 2000 06:07:59 +0800

On Sat, Apr 08, 2000, Adrian Chadd wrote:
> On Fri, Apr 07, 2000, Henrik Nordstrom wrote:
> > Adrian Chadd wrote:
> >
> > > Well, I'm actually at a problem point :) See, I'm looking at the store
> > > code in an attempt to reduce the number of list walks (and yes, there
> > > are a *lot*) and memcpy()s in the storage manager. I'd also like to not
> > > have another memcpy when putting the object on disk. Filesystems
> > > like UFS are fine, but implementing write clustering with the
> > > current way the code exists involves a memcpy in SD->obj.write to
> > > cluster the writes together (look at COSS).
> >
> > My view is that data once read (from net or disk, no difference) should
> > be put in a memory buffer block, and this buffer is then passed along
> > (and locked/unlocked) by the parts needing that data. There shouldn't be
> > any memcpy() at all, except possibly in header parsing and write
> > colescaling in preparation to write to disk (remember disk/fs block
> > boundaries, or you might be hit by a pagein to complete the write)
>
> Well, the current idea is this - you can assume that for now, since this is
> squid 2 and not the magical rewrite I'm sure Duane is busy drafting :),
> you will only be appending to the mem_node chain, right? So you have
> a list of clients, you track the smallest offset off all clients, and
> you consider that block of memory non-wired (ie clean pages that are
> able to be reclaimed.)
>
> This means deciding which memory pages in the mem_node list per object
> that are dirty (needing swapout), clean (having valid info on disk) and
> wired (are in use by an open client) is easy. Which means you don't need
> a refcount on eah page.

Hah. I meant to get across that ths is the way squid does it now, its that
I can see possible ways of making it faster, which is what I'm trying to do. :)

Writing email late is bad,

Adrian
Received on Fri Apr 07 2000 - 16:08:04 MDT

This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:12:22 MST