From 8bba0d178f8db431c62b0bd48e604d037e93ff56 Mon Sep 17 00:00:00 2001 From: Ryan Taylor <1686627+rptaylor@users.noreply.github.com> Date: Mon, 2 Dec 2024 14:33:27 -0800 Subject: [PATCH] enable CVMFS_CACHE_REFCOUNT by default --- templates/default.local.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/default.local.j2 b/templates/default.local.j2 index c619224..5b9d038 100644 --- a/templates/default.local.j2 +++ b/templates/default.local.j2 @@ -8,6 +8,8 @@ CVMFS_STRICT_MOUNT="yes" # so use 82% of the size of the underlying LV. #} CVMFS_QUOTA_LIMIT="{{ (cvmfs_cache_size|float * 0.82)|round(0, 'floor')|int }}" CVMFS_HTTP_PROXY="{{ cvmfs_http_proxy }}" +# Conserve file descriptors +CVMFS_CACHE_REFCOUNT=yes # generally we do not want oomkiller to hit the CVMFS client CVMFS_OOM_SCORE_ADJ="-10" {% for key, value in cvmfs_client_conf.items() %}