Platform.sh User Documentation

From monoliths through headless to microservices

Upsun Beta

Access our newest offering - Upsun!

Get your free trial by clicking the link below.

Get your Upsun free trial

With Platform.sh, you can run multiple application containers in a single environment. This gives you access to a large variety of setups and allows you to seamlessly upgrade your app from a monolith with a single application server to a more elaborate and effective topology.

You can set up multiple apps to achieve the following:

  • Keep your backend and frontend systems separate
  • Run workers alongside your main app
  • Or even go for a full microservices architecture

Platform.sh makes implementing such setups and switching from one to the other pain-free.

The same flexibility applies to any supported services, from relational databases to search engines and message queues. Depending on your specific use case, you can run a single database, multiple databases inside a single instance, or multiple databases in multiple versions… It’s up to you!

Whether you embrace a mono-repo approach with a single Git repository describing your entire setup, or divide your project into multiple repositories, Platform.sh allows you to build the best architecture for your needs.

But while the possibilities are endless, making the right choice between creating one big project with multiple apps or keeping each app in its own project can be a tough formula to crack. So read on for guidance!

Separate projects Anchor to this heading

If you have multiple apps sharing the same code but each of them has its own data, keep your apps in separate projects. Platform.sh provides the automation to deploy multiple projects from the same code base, which makes their maintenance effortless.

So separate projects are appropriate in the following cases:

  • Your apps are for different customers/clients
  • Your apps don’t need to directly connect to the same database
  • Different teams are working on different apps
  • You want to develop true microservices, where each microservice is a fully standalone process with its own data

When in doubt over your own needs, it’s better to keep separate projects than build an architecture that may prove difficult for you to maintain.

Clustered applications Anchor to this heading

A clustered application is one where your project requires multiple app services that are all part of the same conceptual project.

Clustered applications can range from a straightforward headless architecture, where frontend and backend systems are separated, to micro-services with dozens of apps in multiple runtimes and frameworks forming a consistent whole. Meaning, removing one of the app services would break the others.

Platform.sh allows you to configure access from one service to another without having to worry about service discovery or complex ingress controllers. Configuring incoming routes is straightforward. You can have services that are only exposed to another service as well as services that are exposed to the internet.

In a clustered application, you can have one of the following configurations:

With a clustered application, you often don’t need multiple service instances. The MySQL, MariaDB, and Solr services support defining multiple databases on a single service, which is significantly more efficient than defining multiple services. Redis, Memcached, Elasticsearch, and RabbitMQ natively support multiple bins (also called queues or indexes) defined by the client application as part of the request. Therefore, they don’t need additional configuration on Platform.sh.

Clustered applications are appropriate in the following cases:

  • You want one user-facing app and an entirely separate admin-facing app that are both operating on the same data
  • You want to have a user-facing app and a separate worker process (either the same code or separate) that handles background tasks
  • You want a single conceptual app written in multiple programming languages

A note on “multi-site” applications Anchor to this heading

Some Content Management Systems or other applications support running multiple logical “sites” off of a single code base. This approach isn’t recommended on Platform.sh.

This multi-site logic is often dependent on the domain name of the incoming request, which on Platform.sh varies by branch. Running multiple databases, as is often recommended with this approach, is supported on Platform.sh but makes the setup process for each site more difficult.

Leveraging the multi-site capabilities of an app are appropriate only in the following cases:

  • There is only a single team working on all of the “sites” involved
  • All “sites” should be updated simultaneously as a single unit
  • Each individual site is relatively low traffic, such that the aggregate traffic is appropriate for your plan size
  • All sites really do use the same codebase with no variation, just different data

Otherwise, separate projects are a better long-term plan.

Is this page helpful?