关于如何在app.json
中配置Heroku的自动缩放的任何想法吗?
有instructions for Heroku dashboard web console,但我希望将其编写为脚本。
插件不起作用:
"addons": [
"@heroku-cli/plugin-ps",
{
"options": {
"min": 2,
"max": 4
}
],
NB:Heroku的自动缩放是通过plugin进行的,因此无法用app.json
addon key指定。
脚本不起作用:
{
"scripts": {
"postdeploy": "heroku plugins:install @heroku-cli/plugin-ps && heroku ps:autoscale:enable --min 2 --max 10 --p95=1000"
}
},