You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Darwin Kernel Version 19.5.0
gomplate version 3.7.0
I'm running gomplate with --input-dir set to a folder with 600~ files in which is causing the following error: 11:06:57 FTL error="failed to open somedir/somefile.yaml\nopen somedir/somefile.yaml: too many open files"
On OSX the default soft ulimit -n is 256. Is it possible for gomplate to respect the ulimit, or to have a configuration option to set the max concurrent open files?
The text was updated successfully, but these errors were encountered:
Ok, I've found the bug - the input files are read one-by-one and closed right after the read is complete, however the output files are all opened at once. I've got an idea on how I can solve this with a minimum of effort, so I'll do that soon, and the fix will be in gomplate 3.8 🙂
Darwin Kernel Version 19.5.0
gomplate version 3.7.0
I'm running gomplate with
--input-dir
set to a folder with 600~ files in which is causing the following error:11:06:57 FTL error="failed to open somedir/somefile.yaml\nopen somedir/somefile.yaml: too many open files"
On OSX the default soft
ulimit -n
is 256. Is it possible for gomplate to respect the ulimit, or to have a configuration option to set the max concurrent open files?The text was updated successfully, but these errors were encountered: