-
Notifications
You must be signed in to change notification settings - Fork 64
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
Question: Is there a limited runtime in external script calling? #3778
Comments
At the moment there is no timeout defined. However, it is not a good implementation to keep a Java thread hanging for so long. The recommended approach is that the command only starts the external functionality and then returns. When the external function is finished, it should use the Active MQ service to finalize steps to notify Production that the task has been completed. This is, for example, how the Zeutschel OCR server interacts with Production. |
ok understood - and, of course a kind o asynchronours interface is much better. |
At the moment this will not work due to bug #3673 |
I would like to understande the following:
If a "script task" is performed, is there any runtime limitation?
Background: Let's assume, a complex automatic taks is performed which needs hour or even days...
The text was updated successfully, but these errors were encountered: