From: "Theodore Ts'o" <tytso@mit.edu>
To: Phillip Susi <phill@thesusis.net>
Cc: linux-ext4@vger.kernel.org
Subject: Re: [PATCH] [RFC] Fix jbd2 to stop waking up sleeping disks on sync
Date: Thu, 29 Feb 2024 08:58:58 -0600 [thread overview]
Message-ID: <20240229145858.GE272762@mit.edu> (raw)
In-Reply-To: <87edcv1h94.fsf@vps.thesusis.net>
On Thu, Feb 29, 2024 at 09:23:35AM -0500, Phillip Susi wrote:
>
> So because no metadata changed, jbd2 will not issue a barrier to end the
> transaction? How can we fix this then? Is there some way that jbd2 can
> know whether file data has been written, and thus, issue the barrier to
> close the transaction?
Because no metadata changed, jbd2 will not even *start* a (jbd2)
transaction as a result of that write (overwrite) to an already
allocated data block.. Since it didn't start a jbd2 transaction for
this file system operation, there's no reason to force a jbd2
transaction to close.
(Note: this could because there *is* no currently existing open
transaction, or there might be a currently open transaction, but it's
not relevent to the activity associated with the file descriptor being
fsync'ed.)
This is a critical performance optimization, because for many database
workloads, which are overwriting existing blocks and using
fdatasync(2), there is no reason to force a jbd2 transaction commit
for every single fdatasync(2) issued by the database. However, we
still need to send a cache flush operation so that the data block is
safely persistend onto stable storage.
Cheers,
- Ted
next prev parent reply other threads:[~2024-02-29 14:59 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-27 21:25 [PATCH] [RFC] Fix jbd2 to stop waking up sleeping disks on sync Phillip Susi
2024-02-29 8:07 ` Theodore Tso
2024-02-29 14:23 ` Phillip Susi
2024-02-29 14:58 ` Theodore Ts'o [this message]
2024-02-29 20:19 ` Phillip Susi
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=20240229145858.GE272762@mit.edu \
--to=tytso@mit.edu \
--cc=linux-ext4@vger.kernel.org \
--cc=phill@thesusis.net \
/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