From 8f6580d379895987638e5be83fc5395b89e1648c Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Tue, 30 Mar 2021 11:48:44 -0400 Subject: [PATCH] debuginfod: bump scanning concurrency to -c6 Try to suffer NFS storage latencies better. --- .../openshift-apps/debuginfod/templates/deploymentconfig.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/roles/openshift-apps/debuginfod/templates/deploymentconfig.yml b/roles/openshift-apps/debuginfod/templates/deploymentconfig.yml index 957f39435d..17c9691807 100644 --- a/roles/openshift-apps/debuginfod/templates/deploymentconfig.yml +++ b/roles/openshift-apps/debuginfod/templates/deploymentconfig.yml @@ -27,7 +27,10 @@ spec: command: ["/usr/bin/debuginfod", "-vv", "-d", "/var/cache/debuginfod/db.sqlite", - "-c", "3", + # Set # of scanning threads - on a 4cpu host node, >4 can mask koji NFS latency, + # but can't do much about storage NFS latency. If too high, can strain memory + # during analyzing large debuginfo binaries. + "-c", "6", "-t", "3600", "-g", "604800", # exclude signed etc. variants, just want original RPMs