guix-commits
[Top][All Lists]
Advanced

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

01/02: berlin: Replace compress with compress-force for the Btrfs mount


From: Maxim Cournoyer
Subject: 01/02: berlin: Replace compress with compress-force for the Btrfs mount options.
Date: Thu, 27 Oct 2022 11:33:53 -0400 (EDT)

apteryx pushed a commit to branch master
in repository maintenance.

commit 7eab096f0c9dd60c85f4f0f23f75252bfb339c6c
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Oct 27 10:49:40 2022 -0400

    berlin: Replace compress with compress-force for the Btrfs mount options.
    
    compress-force writes fixed 512 KiB extents for any files, while
    compress can write 128 MiB ones for non-compressible files, which
    should greatly reduce the number of extents needed to store the NARs,
    for example.
    
    A very large number of extents can cause 'mount' to take a long time,
    as is currently the case.
    
    * hydra/berlin.scm (%common-btrfs-options): Replace "compress-force"
    with "compress".
---
 hydra/berlin.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hydra/berlin.scm b/hydra/berlin.scm
index 8960ab5..209b257 100644
--- a/hydra/berlin.scm
+++ b/hydra/berlin.scm
@@ -177,7 +177,7 @@ Happy hacking!\n"))
 ;;; Large Btrfs partition on the MDC-provided SAN storage (100 TiB).
 (define %btrfs-san-uuid "d5d1a040-7f2a-4c38-9a89-82f08866f6ec")
 
-(define %common-btrfs-options '(("compress-force" . "zstd")
+(define %common-btrfs-options '(("compress" . "zstd")
                                 ("space_cache" . "v2")
                                 "degraded"))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]