From: Dave Chinner <david@fromorbit.com>
To: Jens Rosenboom <j.rosenboom@x-ion.de>
Cc: Brian Foster <bfoster@redhat.com>, xfs@oss.sgi.com
Subject: Re: [PATCH v2] [RFC] xfs: allocate log vector buffers outside CIL context lock
Date: Tue, 16 Feb 2016 00:28:24 +1100 [thread overview]
Message-ID: <20160215132824.GH14668@dastard> (raw)
In-Reply-To: <CADr68WZZHSEexV4aBDNhLjE1oNAHftfORCGCA-q7WH2DY8X9xg@mail.gmail.com>
On Mon, Feb 15, 2016 at 12:57:51PM +0100, Jens Rosenboom wrote:
> 2016-02-14 1:16 GMT+01:00 Dave Chinner <david@fromorbit.com>:
> > On Sat, Feb 13, 2016 at 06:09:17PM +0100, Jens Rosenboom wrote:
> >> 2016-01-26 15:17 GMT+01:00 Brian Foster <bfoster@redhat.com>:
> >> > On Wed, Jan 20, 2016 at 12:58:53PM +1100, Dave Chinner wrote:
> >> We have seen this issue on our production Ceph cluster sporadically
> >> and have tried a long time to reproduce it in a lab environment.
> > ....
> >> kmem_alloc (mode:0x2408240)
> >> Feb 13 10:51:57 storage-node35 kernel: [10562.614089] XFS:
> >> ceph-osd(10078) possible memory allocation deadlock size 32856 in
> >> kmem_alloc (mode:0x2408240)
> >
> > High order allocation of 32k. That implies a buffer size of at least
> > 32k is in use. Can you tell me what the output of xfs_info <mntpt>
> > is for one of your filesystems?
>
> $ xfs_info /tmp/cbt/mnt/osd-device-0-data/
> meta-data=/dev/sda2 isize=2048 agcount=4, agsize=97370688 blks
> = sectsz=512 attr=2, projid32bit=1
> = crc=0 finobt=0
> data = bsize=4096 blocks=389482752, imaxpct=5
> = sunit=0 swidth=0 blks
> naming =version 2 bsize=65536 ascii-ci=0 ftype=0
> log =internal bsize=4096 blocks=190177, version=2
> = sectsz=512 sunit=0 blks, lazy-count=1
> realtime =none extsz=4096 blocks=0, rtextents=0
OK, so 64k directory block size.
> > I suspect you are using a 64k directory block size, in which case
> > I'll ask "are you storing millions of files in a single directory"?
> > If your answer is no, then "don't do that" is an appropriate
> > solution because large directory block sizes are slower than the
> > default (4k) for almost all operations until you get up into the
> > millions of files per directory range.
>
> These options are kind of standard folklore for setting up Ceph
> clusters, I must admit that I delayed testing their performance
> implications up to now, so many knobs to turn, so little time.
>
> mkfs_opts: '-f -i size=2048 -n size=64k'
> mount_opts: '-o inode64,noatime,logbsize=256k'
/me shakes his head sadly.
Can you please go nuke where ever you read that from orbit? Please?
It's the only way to be sure that the contagious cargo-cult
stupidity doesn't spread further.
> It turns out that when running with '-n size=4k'
i.e. the default.
> , indeed I do not get
> any warnings during a 10h test run. I'll try to come up with some more
> detailed benchmarking of the possible performance impacts, too.
No surprise there. :/
FWIW, for small file Ceph workloads (e.g swift stores) we've found
that 8k directory block sizes give marginal improvements over the
default 4k, but it's all down hill from there.
> Am I right in assuming that this parameter can not be tuned after the
> initial mkfs?
That's right.
> In that case getting a production-ready version of your
> patch would probably still be valuable for cluster admins wanting to
> avoid having to move all of their data to new filesystems.
Well, yes, that's why I'm working on it. But it's critical core
code, it's also damn tricky and complex, and if I get it wrong it
will corrupt filesystems. So I'm not going to rush a prototype fix
out into production systems no matter how much pressure people put
on me to ship a fix.
> >> Soon after this, operations get so slow that the OSDs die because of
> >> their suicide timeouts.
> >>
> >> Then I installed onto 3 servers this patch (applied onto kernel
> >> v4.4.1). The bad news is that I am still getting the kernel messages
> >> on these machines. The good news, though, is that they appear at a
> >> much lower frequency and also the impact on performance seems to be
> >> lower, so the OSD processes on these three nodes did not get killed.
> >
> > Right, the patch doesn't fix the underlying issue that memory
> > fragmentation can prevent high order allocation from succeeding for
> > long periods. However, it does ensure that the filesystem does not
> > immediately deadlock memory reclaim when it happens so the system
> > has a chance to recover. It still can deadlock the filesystem,
> > because if we can't commit the transaction we can't unlock the
> > objects in the transaction and everything can get stuck behind that
> > if there's something sufficiently important in the blocked
> > transaction.
>
> So how would your success criteria for getting this patch into
> upstream look like?
It's already "successful". I've proved locally that it avoids a memory
reclaim deadlock that many people have reported over the past year.
So there's no question that we need a fix to the problem; it's now
just a matter of determining if the issues with this fix (e.g.
doubling memory usage of the CIL) are an acceptible tradeoff for
production workloads, or whether I've got to go back and prototype a
fourth attempt at fixing the problem...
And, of course, there's only some many hours int eh day. I'm into my
19th right now, and I havent' got through everything on my list for
today yet. Tomorrow's list is even longer, and when I get through
that, I hit the big one: "read, understand and review 10000 lines of
complex new code"....
> Would a benchmark of the 64k directory block size
> case on machines all running with patched kernels be interesting? Or
> would that scenario disqualify itself as being mistuned in the first
> place?
Not really - I've confirmed it doesn't cause performance issues on
my usual tranche of benhmarks, so I'mnot conerned about that (it;s
the same amount of work being done, anyway). Correctness is much
more important right now, and that takes time, effort and focus to
verify.
And speaking of focus, it's now time for me to sleep.
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next prev parent reply other threads:[~2016-02-15 13:28 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-19 4:31 [PATCH] [RFC] xfs: allocate log vector buffers outside CIL context lock Dave Chinner
2016-01-20 1:58 ` [PATCH v2] " Dave Chinner
2016-01-26 14:17 ` Brian Foster
2016-02-13 17:09 ` Jens Rosenboom
2016-02-14 0:16 ` Dave Chinner
2016-02-15 11:57 ` Jens Rosenboom
2016-02-15 13:28 ` Dave Chinner [this message]
2016-03-02 12:45 ` Gavin Guo
2016-03-02 18:00 ` Darrick J. Wong
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=20160215132824.GH14668@dastard \
--to=david@fromorbit.com \
--cc=bfoster@redhat.com \
--cc=j.rosenboom@x-ion.de \
--cc=xfs@oss.sgi.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox