What are the documented default and maximum durations for a synchronous OCI Functions invocation?
Select an answer to reveal the explanation.
Short Explanation
Sync starts with a 30-second egg timer and you can stretch it only to 300 seconds. Set the timeout near what the work really needs—not the ceiling “just in case.”
Full Explanation
Official defaults: a synchronous invocation may run 30 seconds unless you raise timeout / timeoutInSeconds, and you cannot raise it past 300 seconds. Best practice is to set the timeout near actual need. Longer work needs detached invoke or a different compute shape such as OKE—not a hidden sync override beyond the ceiling.