gpt4 book ai didi

node.js - 有没有办法使用 onSchedule 并使用 Firebase 函数 V2 设置自定义 'timeoutSeconds' 和 'memory' ?

转载 作者:行者123 更新时间:2023-12-03 07:54:29 24 4
gpt4 key购买 nike

我必须恢复使用 Firebase 函数 V1,以便安排函数的运行,并在代码(用 TypeScript 编写)中指定运行时选项,包括 timeoutSeconds 和内存:

const runtimeOpts = {
timeoutSeconds: 540,
memory: "1GB" as const,
};
exports.cleanupEvents = functions
.runWith(runtimeOpts)
.pubsub.schedule("0 0 * * *")
.timeZone("Europe/Berlin")
.onRun(async () => {
await cleanupOldEvents(adminDb);
logger.log("Event cleanup finished");
});

有谁知道 Firebase 功能 V2 是否可以使用 onSchedule语法也在代码中指定这些runtimeOpts?无需进入谷歌云控制台并在那里手动设置。

到目前为止,我已经尝试将“onSchedule”和“runWith”链接在一起,并查看 Emmet 提出的其他可能性,但没有成功。

最佳答案

API documentation for onSchedule建议您可以传递一个对象作为第一个参数,即 ScheduleOptions对象, GlobalOptions 的扩展:

onSchedule({
schedule: "your-schedule-here",
timeoutSeconds: your-timeout,
memory: your-memory,
// include other options here from SchedulerOptions or GlobalOptions
}, (event) => { ... })

关于node.js - 有没有办法使用 onSchedule 并使用 Firebase 函数 V2 设置自定义 'timeoutSeconds' 和 'memory' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76385289/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com