Default runtime timeout #1253
|
is it possible to change default runtime timeout without creating a custom runtime using FunctionExecutor()? |
Answered by
JosepSampe
Feb 15, 2024
Replies: 1 comment 2 replies
|
Any parameter that can be set in the openwhisk section of the config file, can be set in the |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
runtime_timeoutis applied at the deployment phase. You have to remove your previously deployed function if you want this parameter to take effect.If what you want is to set a different timeout for each different function invocation, it is convenient to set the
runtime_timeoutparameter in your config file to a high value, and then use theexecution_timeoutparameter (<runtime_timeout) of thefexec.map() call.