作为我的应用程序部署的一部分,commands
我的.ebextensions
配置文件中有一些。第一次运行命令(克隆大型存储库)时,所有命令可能需要 20 分钟或更长时间才能完成。
不幸的是,这会在部署期间触发超时:
INFO Deploying new version to instance(s).
WARN The following instances have not responded in the allowed command
timeout time (they might still finish eventually on their own).
INFO Command execution completed. Summary: [Successful: 0, TimedOut: 1].
是否可以增加此超时?我在我的环境设置中找不到该选项。
您可以将AWS Elastic Beanstalk 配置文件(.ebextensions) 添加到 Web 应用程序的源代码中,以配置您的环境并自定义其中包含的 AWS 资源。
配置文件的
option_settings
部分定义配置选项的值。配置选项可让您配置 Elastic Beanstalk 环境、其中的 AWS 资源以及运行应用程序的软件。将配置文件添加到名为 .ebextensions 的文件夹中的源代码中,并将其部署到应用程序源包中。
例子:
*"value" 表示超时前的时间长度,以秒为单位。
参考:官方 AWS Elastic Beanstalk Environment Configuration and General Options for All Environments、这个stackoverflow 答案和这个AWS 开发者论坛帖子。
您可以将存储库烘焙到 AMI 中并让弹性豆茎使用它。这样结帐时间不会那么长。
另一方面,作为部署的一部分,您在做什么克隆大量存储库?