-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Limit number of running scripts #89
Comments
the scripts are being started by the background job in a non-blocking manner, without process management. so, any number of scripts could run. what you can do right now is control the processes in the script that is being called. |
Thanks for quick reply! Make atomic locks in bash sounds funny :) |
Up!I want limit too! |
I have currently solved the situation by using a script, that
Like this I manage to handle hundreds of relevant file-renames and working them off subsequently. I use it for image and video processing which is kinda CPU- and memory-intense. |
Is there any option how limit number of running scripts? For example flow do converting a video and this can be huge load for server.
The text was updated successfully, but these errors were encountered: