Re: atomic write & T10 standards

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Quoting Ric Wheeler (2013-07-03 14:31:59)
> On 07/03/2013 11:54 AM, Chris Mason wrote:
> > Quoting Ric Wheeler (2013-07-03 11:42:38)
> >> On 07/03/2013 11:37 AM, James Bottomley wrote:
> >>> On Wed, 2013-07-03 at 11:27 -0400, Ric Wheeler wrote:
> >>>> On 07/03/2013 11:22 AM, James Bottomley wrote:
> >>>>> On Wed, 2013-07-03 at 11:04 -0400, Ric Wheeler wrote:
> >>>>>> Why not have the atomic write actually imply that it is atomic and durable for
> >>>>>> just that command?
> >>>>> I don't understand why you think you need guaranteed durability for
> >>>>> every journal transaction?  That's what causes us performance problems
> >>>>> because we have to pause on every transaction commit.
> >>>>>
> >>>>> We require durability for explicit flushes, obviously, but we could
> >>>>> achieve far better performance if we could just let the filesystem
> >>>>> updates stream to the disk and rely on atomic writes making sure the
> >>>>> journal entries were all correct.  The reason we require durability for
> >>>>> journal entries today is to ensure caching effects don't cause the
> >>>>> journal to lie or be corrupt.
> >>>> Why would we use atomic writes for things that don't need to be
> >>>> durable?
> >>>>
> >>>> Avoid a torn page write seems to be the only real difference here if
> >>>> you use the atomic operations and don't have durability...
> >>> It's not just about torn pages: Journal entries are big complex beasts.
> >>> They can be megabytes big (at least on xfs).  If we can guarantee all or
> >>> nothing atomicity in the entire journal entry write it permits a more
> >>> streaming design of the filesystem writeout path.
> >>>
> >>> James
> >>>    
> >>>
> >> Journals are normally big (128MB or so?) - I don't think that this is unique to xfs.
> > We're mixing a bunch of concepts here.  The filesystems have a lot of
> > different requirements, and atomics are just one small part.
> >
> > Creating a new file often uses resources freed by past files.  So
> > deleting the old must be ordered against allocating the new.  They are
> > really separate atomic units but you can't handle them completely
> > independently.
> >
> >> If our existing journal commit is:
> >>
> >> * write the data blocks for a transaction
> >> * flush
> >> * write the commit block for the transaction
> >> * flush
> >>
> >> Which part of this does and atomic write help?
> >>
> >> We would still need at least:
> >>
> >> * atomic write of data blocks & commit blocks
> >> * flush
> > Yes.  But just because we need the flush here doesn't mean we need the
> > flush for every single atomic write.
> >
> > -chris
> >
> 
> The catch is that our current flush mechanisms are still pretty brute force and 
> act across either the whole device or in a temporal (everything flushed before 
> this is acked) way.

This is only partially true, since you're extending the sata drive model
into atomics, and the devices implementing atomics are (so far anyway)
are not sata.

> 
> I still see it would be useful to have the atomic write really be atomic and 
> durable just for that IO - no flush needed.

In sata speak, it could go down as atomic + FUA + NCQ.  In practice this
is going to be in fusionio, nvme devices and big storage arrays, all of
which we can expect to have proper knobs for lies about IO that isn't
really done yet.

> 
> Can you give a sequence for the use case for the non-durable atomic write that 
> would not need a sync? Can we really trust all devices to make something atomic 
> that is not durable :) ?

Today's usage is mostly O_DIRECT, which really should be FUA.  Long term
we can hope people will find more interesting uses.

Either way the point is that an atomic write is a grouping mechanism,
and if the standards people want to control fuaness in a separate bit,
that's really fine.

-chris

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




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [SCSI Target Devel]     [Linux SCSI Target Infrastructure]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Linux IIO]     [Samba]     [Device Mapper]
  Powered by Linux