From 1af312bdd3988ab3c16097b66ec7920afae7e698 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Mon, 16 Aug 2021 21:34:57 -0400 Subject: [PATCH] debuginfod: support f36+, enlarge fdcache Fix the debuginfod sysconfig file to not stop at f32..f35 but go at least to eleven ^W f39 for RPM inclusion. Bump up the fdcache size to 1024 entries so more archive pieces are retained unpacked, given that the VMs still have pretty generous unused storage. These changes are already hand-applied to prod and stg. --- files/debuginfod/sysconfig.debuginfod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/debuginfod/sysconfig.debuginfod b/files/debuginfod/sysconfig.debuginfod index a55936067f..30662800ae 100644 --- a/files/debuginfod/sysconfig.debuginfod +++ b/files/debuginfod/sysconfig.debuginfod @@ -2,7 +2,7 @@ DEBUGINFOD_PORT="8002" #DEBUGINFOD_VERBOSE="-vv" -DEBUGINFOD_PATHS="--fdcache-fds=512 -t43200 -g604800 -c6 -vv -R /mnt/fedora_koji_prod/koji/packages -X /data/ -I \.(module_f|fc)(32|33|34|35)[.+].*\.rpm" +DEBUGINFOD_PATHS="--fdcache-fds=1024 -t43200 -g604800 -c6 -vv -R /mnt/fedora_koji_prod/koji/packages -X /data/ -I \.(module_f|fc)(32|33|34|35|36|37|38|39)[.+].*\.rpm" # prefer reliability/durability over performance #DEBUGINFOD_PRAGMAS="-D 'pragma synchronous=full;'"