Set timeout and memory allocation
https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_me pmory_allocation
const runtimeOpts = {
timeoutSeconds: 540,
memory: '2GB'
}
exports.myStorageFunction = functions
.runWith(runtimeOpts)
.storage
.object()
.onFinalize((object) = > {
// do some complicated things that take a lot of memory and time
});
The maximum value for
timeoutSeconds
is540
, or 9 minutes.
Last updated
Was this helpful?