From b78d5894c7037a931314bae523bac1296f5338c7 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Wed, 25 Nov 2020 17:55:19 +0100 Subject: [PATCH] The previous default value of 2000 for filtermaxmbytes (RLMINIT_AS) was not enough when executing java pdftk from Python --- src/sampleconf/recoll.conf | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/sampleconf/recoll.conf b/src/sampleconf/recoll.conf index 2d70b6d6..c1d28da6 100644 --- a/src/sampleconf/recoll.conf +++ b/src/sampleconf/recoll.conf @@ -599,11 +599,14 @@ filtermaxseconds = 1200 # # # Maximum virtual memory space for filter processes -# (setrlimit(RLIMIT_AS)), in megabytes. Note that this -# includes any mapped libs (there is no reliable Linux way to limit the -# data space only), so we need to be a bit generous here. Anything over -# 2000 will be ignored on 32 bits machines. -filtermaxmbytes = 2000 +# (setrlimit(RLIMIT_AS)), in megabytes. +# +# Note that this includes any mapped libs (there is no reliable +# Linux way to limit the data space only), so we need to be a bit generous +# here. Anything over 2000 will be ignored on 32 bits machines. The +# previous default value of 2000 would prevent java pdftk to work when +# executed from Python rclpdf.py. +filtermaxmbytes = 3000 # #