From e0ba0f7c747b97c4db2a1826ca77c91a0be601a1 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Wed, 15 Apr 2015 11:46:49 +0000 Subject: [PATCH] 32GB of RAM is not enough for 75 threads; let's try with 50 threads --- roles/mirrormanager/crawler/files/crawler.cron | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/mirrormanager/crawler/files/crawler.cron b/roles/mirrormanager/crawler/files/crawler.cron index efe7272d8c..6cdf47f184 100644 --- a/roles/mirrormanager/crawler/files/crawler.cron +++ b/roles/mirrormanager/crawler/files/crawler.cron @@ -1,3 +1,4 @@ # run the crawler twice a day # logs sent to /var/log/mirrormanager/crawler.log and crawl/* by default -0 */12 * * * root /usr/bin/mm2_crawler --threads 75 > /dev/null 2>&1 +# 32GB of RAM is not enough for 75 threads +0 */12 * * * root /usr/bin/mm2_crawler --threads 50 > /dev/null 2>&1