The previous default value of 2000 for filtermaxmbytes (RLMINIT_AS) was not enough when executing java pdftk from Python

This commit is contained in:
Jean-Francois Dockes 2020-11-25 17:55:19 +01:00
parent 33725fd02c
commit b78d5894c7

View File

@ -599,11 +599,14 @@ filtermaxseconds = 1200
# <var name="filtermaxmbytes" type="int"> # <var name="filtermaxmbytes" type="int">
# #
# <brief>Maximum virtual memory space for filter processes # <brief>Maximum virtual memory space for filter processes
# (setrlimit(RLIMIT_AS)), in megabytes.</brief> <descr>Note that this # (setrlimit(RLIMIT_AS)), in megabytes.</brief>
# 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 # <descr>Note that this includes any mapped libs (there is no reliable
# 2000 will be ignored on 32 bits machines.</descr></var> # Linux way to limit the data space only), so we need to be a bit generous
filtermaxmbytes = 2000 # 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.</descr></var>
filtermaxmbytes = 3000
# <var name="thrQSizes" type="string"> # <var name="thrQSizes" type="string">
# #