On Sat, Feb 15, 2014 at 10:47:12AM -0700, Andy Rudoff wrote: > On Sat, Feb 15, 2014 at 8:04 AM, Dan Williams <dan.j.williams@xxxxxxxxx>wrote: > > > In response to Dave's call [1] and highlighting Jeff's attend request > > [2] I'd like to stoke a discussion on an emulation layer for atomic > > block commands. Specifically, SNIA has laid out their position on the > > command set an atomic block device may support (NVM Programming Model > > [3]) and it is a good conversation piece for this effort. The goal > > would be to review the proposed operations, identify the capabilities > > that would be readily useful to filesystems / existing use cases, and > > tear down a straw man implementation proposal. > > > ... > > > The argument for not doing this as a > > device-mapper target or stacked block device driver is to ease > > provisioning and make the emulation transparent. On the other hand, > > the argument for doing this as a virtual block device is that the > > "failed to parse device metadata" is a known failure scenario for > > dm/md, but not sd for example. > > > > Hi Dan, > > Like Jeff, I'm a member of the NVMP workgroup and I'd like to ring in here > with a couple observations. I think the most interesting cases where > atomics provide a benefit are cases where storage is RAIDed across multiple > devices. Part of the argument for atomic writes on SSDs is that databases > and file systems can save bandwidth and complexity by avoiding > write-ahead-logging. But even if every SSD supported it, the majority of > production databases span across devices for either capacity, performance, > or, most likely, high availability reasons. So in my opinion, that very > much supports the idea of doing atomics at a layer where it applies to SW > RAIDed storage (as I believe Dave and others are suggesting). > > On the other side of the coin, I remember Dave talking about this during > our NVM discussion at LSF last year and I got the impression the size and > number of writes he'd need supported before he could really stop using his > journaling code was potentially large. Dave: perhaps you can re-state the > number of writes and their total size that would have to be supported by > block level atomics in order for them to be worth using by XFS? Hi Andy - the numbers I gave last year were at the upper end of the number of iovecs we can dump into an atomic checkpoint in the XFS log at a time. because that is typically based on log size and the log can be up to 2GB in size, this tends to max out at somewhere around 150-200,000 individual iovecs and/or roughly 100MB of metadata. Yeah, it's a lot, but keep in mind that a workload running 250,000 file creates a second on XFS is retiring somewhere around 300,000 individual transactions per second, each of which will typically have 10-20 dirty regions in them. If we were to write them as individual atomic writes at transaction commit time we'd need to sustain somewhere in the order of 3-6 _million IOPS_ to maintain this transaction rate with individual atomic writes for each transaction. That would also introduce unacceptible IO latency as we can't modify metadata while it is under IO, especially as a large number of these regions are redirtied repeatedly during ongoing operations(e.g. directory data and index blocks). Hence to avoid this problem with atomic writes, we need still need asynchronous transactions and in-memory aggregation of changes. IOWs, checkpoints are the until of atomic write we need to for support in XFS. We can limit the size of checkpoints in XFS without too much trouble, either by amount of data or number of iovecs, but that comes at a performance code. To maintain current levels of performance we need a decent amount of in-memory change aggregation and hence we are going to need - at minimum - thousands of vectors in each atomic write. I'd prefer tens of thousands to hundreds of thousands of vectors because that's our typical unit of "atomic write" at current performance levels, but several thousand vectors and tens of MB is sufficient to start with.... Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html