Platform.sh is now Upsun. Click here to learn more
Upsun User Documentation

How resources work on Upsun

Try Upsun for 15 days
After that, enjoy the same, game-changing Upsun features for less with the First Project Incentive!¹ A monthly $19 perk!
Activate your 15-day trial
¹Terms and conditions apply

On Upsun Flex, you have granular control over your application’s resources. Instead of choosing from pre-defined plans, you can configure resources (CPU, RAM, and disk) per environment for each of your apps and services. You can also add instances for each of your apps depending on your needs.

Understanding how Upsun allocates these resources is key to building stable and cost-effective architecture for your project.

For information on costs related to resource usage, see the Upsun pricing page.

CPUs vs. vCPUs Anchor to this heading

Throughout our product and documentation, when we refer to CPU, we are describing vCPUs (virtual CPUs). A vCPU is a virtual representation of a physical CPU core. This is the standard for cloud computing, as it allows a physical server’s resources to be securely divided among multiple applications.

vCPU performance can sometimes vary depending on factors such as:

  • Cloud provider and region
  • System load from other containers on a shared host (in shared mode)

CPU: Shared vs. Guaranteed Anchor to this heading

CPU resources can be allocated in two distinct ways. This choice allows you to precisely balance cost with performance needs for each individual container in your project.

Shared CPU (Default) Anchor to this heading

By default, projects on Upsun Flex run on shared hosts, which means the processing power allocated to your containers can be dependent on resources other customers are using on the same hosts. Our orchestration layer works to ensure stable access to resources when possible, however some variability should be expected due to the shared infrastructure of our regions.

Best for:

  • Containers in development/staging environments
  • Production containers with low-to-moderate traffic

Consideration:

  • Performance can be variable due to the “noisy neighbour” effect inherent in shared infrastructure.

Guaranteed CPU Anchor to this heading

With Guaranteed CPU, your container is placed on a dedicated host, and the host’s CPU resources are reserved exclusively for your container’s use. This provides the highest level of CPU performance and predictability by eliminating any “noisy neighbour” effect.

Best for:

  • High-traffic production application containers
  • Resource-intensive services (e.g. database, search engine)
  • Any container requiring large resource allocations with consistent and predictable performance

Consideration:

  • This option has a higher cost due to its dedicated nature.
  • A small portion of host CPU and RAM is used by Upsun’s system services. The available capacity will be slightly lower than the full allocation selected.

Memory (RAM) Anchor to this heading

The memory (RAM) you configure for a container is always guaranteed.

This means the full amount of RAM you define is exclusively available to that container and is never shared. This guarantees predictable memory performance and prevents issues caused by other applications on the same host, regardless of your chosen CPU type.