Cold Starts
Globe infrastructure is built in a way to minimize and reduce the impact of cold starts. When a request starts a new container on demand this is known as a cold start.
In Globe however, we have 3 levels of 'starts';
cold
- Container image has to be fetched, cached and started.- This is usually when your deployment has not yet had any requests in a specific compute region or has been idle for an extended period of time.
warm
- Container image is already fetched and cached but not started.- This happens when a
hot
running container becomes idle for a period of time in a specific region and the running container is paused.
- This happens when a
hot
- Container image is already fetched, cached and still running.- This happens when requests in a specific region have kept the container from idling.
Overall you should experience a reduced number of cold starts compared to other cloud providers as well as reduced cold start times. During the private preview, you can expect to see some cold starts of around 500ms. We're still working on reducing this number.