For a detached OCI Functions invocation that should not block the caller, what is the documented upper bound for detachedModeTimeoutInSeconds?
Select an answer to reveal the explanation.
Short Explanation
Detached can wait longer than sync—up to an hour—but it is still a function, not a days-long batch farm. Multi-hour or always-on work belongs elsewhere.
Full Explanation
Official detached timeout (detachedModeTimeoutInSeconds) defaults to the sync timeout if unset, but you may set it from 5 to 3600 seconds. Use detached when the caller should not block and the work still fits inside an hour. Claims of multi-day Functions runtimes are incorrect; multi-hour or always-on workloads need another compute model.