GAE Flexible,是否会为每个实例分别创建多个 cron 作业?

GAE Flexible, does multiple cron jobs would be created for each instance separately?

我在 GAE 灵活环境中创建了一个 cron job,它每 15 分钟自动运行一次。

但是在创建每个实例时,是否为每个实例复制相同的 cron 作业?我不确定。

不,不会为每个实例复制 cron 作业。

cron 作业配置 不是 service/module-level 配置,它是一个应用程序级别的配置,由所有 services/modules 共享,无论他们使用标准或灵活的环境或他们可能拥有的实例数量 运行.

相关:

只是为了补充已接受的答案,虽然只会创建一个 cron 作业实例,但该作业有可能 运行 不止一次。

来自Important considerations for schedule

In some rare circumstances, it is possible for multiple instances of the same job to be requested, therefore, your request handler should be idempotent, and your code should ensure that there are no harmful side-effects if this occurs.