Dynos

A dyno is a single process running your ruby code on a server in our grid. Each dyno is independent and includes all the layers in this diagram.

The number of dynos running for a given app directly affects the maximum concurrency and therefore the performance of that app. You can run as few or as many dynos as you need – new dynos can be launched in under 2 seconds for most apps.

A dyno is roughly equivalent to a Mongrel, except that dynos are spread across multiple servers, so performance in most cases is greater.

4 dynos are equivalent to the compute power of one CPU-core on other systems.