在 bluemix 中扩展
Scaling in bluemix
cf scale myApp –i 5
用于水平缩放,
cf scale myApp -k 512M
用于垂直缩放。
当我们使用上面的水平和垂直缩放命令时会发生什么?他们是通过增加 5 来增加实例数并通过增加 512M 来增加磁盘大小,还是将整个应用程序实例为 5 个并且整体磁盘大小为 512M?
-i、-k、-m都是取新的绝对值而不是增量。
https://docs.cloudfoundry.org/devguide/deploy-apps/cf-scale.html
Use cf scale APP -i INSTANCES to horizontally scale your application.
Cloud Foundry will increase or decrease the number of instances of
your application to match INSTANCES.
cf scale myApp –i 5
用于水平缩放,
cf scale myApp -k 512M
用于垂直缩放。
当我们使用上面的水平和垂直缩放命令时会发生什么?他们是通过增加 5 来增加实例数并通过增加 512M 来增加磁盘大小,还是将整个应用程序实例为 5 个并且整体磁盘大小为 512M?
-i、-k、-m都是取新的绝对值而不是增量。
https://docs.cloudfoundry.org/devguide/deploy-apps/cf-scale.html
Use cf scale APP -i INSTANCES to horizontally scale your application. Cloud Foundry will increase or decrease the number of instances of your application to match INSTANCES.