Scale the App
Page last updated:
Page last updated:
Currently, your app is running as a single instance with 64 MB of memory.
You can check how many instances are running and how much memory they have using the cf scale
command:
$ cf scale my-go-app Showing current scale of app my-go-app in org MyOrg / space MySpace as user@mydomain.com... OK memory: 64M disk: 1G instances: 1
By default, your app is deployed as one instance. Each instance runs in a separate container and gets the set amount of memory.
Scaling Horizontally
Scaling an application horizontally on Swisscom Application Cloud is equivalent to changing the number of instances that are running. Scale the number of instances to 3:
$ cf scale my-go-app -i 3 Scaling app my-go-app in org MyOrg / space MySpace as user@mydomain.com... OK
Scaling Vertically
Scaling an application vertically on Swisscom Application Cloud is equivalent to changing the amount of memory each instance has. Scale the amount of memory to 128 MB:
$ cf scale my-go-app -m 128M This will cause the app to restart. Are you sure you want to scale my-go-app?> yes Scaling app my-go-app in org MyOrg / space MySpace as user@mydomain.com... OK Stopping app my-go-app in org MyOrg / space MySpace as user@mydomain.com... OK ... requested state: started instances: 3/3 usage: 128M x 3 instances urls: my-random-hostname.scapp.io last uploaded: Wed Apr 27 14:41:48 UTC 2016 stack: unknown buildpack: binary_buildpack state since cpu memory disk details #0 running 2016-04-27 04:58:50 PM 0.0% 2.8M of 128M 7.6M of 1G #1 running 2016-04-27 04:58:50 PM 0.0% 3M of 128M 7.6M of 1G #2 running 2016-04-27 04:58:50 PM 0.0% 2.8M of 128M 7.6M of 1G
The last statement shows a summary of the three instances with a memory cap of 128MB each that we now have.
View the source for this page in GitHub