[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#58035] sync-before-registering is false, possibly the cause of empt
From: |
Maxime Devos |
Subject: |
[bug#58035] sync-before-registering is false, possibly the cause of empty files in the store |
Date: |
Sat, 24 Sep 2022 03:35:01 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.12.0 |
libstore/local-store.cc has the following comment:
void LocalStore::registerValidPaths(const ValidPathInfos & infos)
{
/* SQLite will fsync by default, but the new valid paths may not be
fsync-ed.
* So some may want to fsync them before registering the validity,
at the
* expense of some speed of the path registering operation. */
if (settings.syncBeforeRegistering) sync();
[...]
}
However, currently sync-before-registering is set to 'false' AFAICT. I
think this might be the cause of bugs like
<https://issues.guix.gnu.org/58013> (‘Can't use "guix pull"’), and maybe
<https://issues.guix.gnu.org/57838> (‘failing to boot, probably due to
guix gc’).
As such, I think we need to set it to 'true' by default instead. Or if
that turns out to be too expensive, instead do a recursive 'fsync' on
the 'paths' (store items) that are about to be registered (and maybe
some other tricks like disabling the 'fsync/sync' for most tests).
(Unverified if this solves those issues, just an idea ...)
Greetings,
Maxime.
OpenPGP_0x49E3EE22191725EE.asc
Description: OpenPGP public key
OpenPGP_signature
Description: OpenPGP digital signature
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [bug#58035] sync-before-registering is false, possibly the cause of empty files in the store,
Maxime Devos <=