Studio Deployment and Operation Guidelines (mainly Docker >= 1907)
Get some hints for Studio deployment
What you'll learn
- Know how to deploy Studio
Prerequisites
- Having a CoreMedia system
Time matters
Should I read this?
The following hints are mostly intended for Docker-based Studio deployment starting with CoreMedia Content Cloud 1907.
Let studio-server and studio-client run on the same machine?
No problem.
Recommended studio-client hosting solution?
No specific recommendation. Apache, Nginx, Traefik or combinations thereof all do the job and may be more or less fitting for specific requirements.
However, if you want to take our product and customize as little as possible: Use Nginx for Studio Client hosting and let Traefik do the routing.
Studio Machine Sizing
General:
-
Rough rule of thumb: 1 core per 5 - 10 parallel editors.
-
CPU:
-
Generally, taking advantage of more CPUs works at least until 8 CPUs.
-
At some point it does not scale anymore as the Coremedia cache uses classical lock synchronization for a central data structure.
-
-
Memory:
-
At least 8 GIB memory are mandatory considering caches and image transformation requirements.
-
16 GIB is much. From here on, it pays off more to add CPUs than memory. More than 16 GIB may pose garbage collection problems even despite Garbage-First.
-
Like:
-
AWS m5.large (2 cores, 8 GIB memory) ⇒ 10 - 20 editors
-
AWS c5.xlarge (4 cores, 8GIB memory) ⇒ 20 - 40 editors
-
AWS c5.2xlarge ( 8 cores, 16 GIB memory) ⇒ 40 - 80 editors
Using a Studio Cluster
General:
-
A Studio cluster with load balancing obviously provides more resilience of operation.
-
Because of the above mentioned limitations for CPU + memory scaling, there is a point where a Studio cluster also offers better performance than providing a more powerful single machine. However, we cannot exactly pin this point. This is subject to experimentation.
Considering load balancing, the Studio supports:
-
Sticky sessions
-
Session replication: The Studio Client monitors its current Studio Server connection (based on a UUID). In case of a failover, the Studio Client recognizes this and invalidates its remote beans (affecting only the "active" beans that currently have listeners attached). So there will be a peak in requests but the user may carry on working.
Thus, possible load balancing scenarios are:
-
☑ With sticky sessions and without session replication: Works fine. In case of a failover, the user has to login again, but can at least in part continue where she took off (opened tabs, user preferences, library window, control room etc.).
-
☑ With sticky sessions and with session replication: Works fine. In case of a failover, the user may continue working without having to login again. There will be a peak in requests resulting in a temporary performance deterioration. But in general, the effort is considerably less than having to reload the Studio and login again.
-
☒ Without sticky sessions and with session replication: Do not do it. Works in theory, but the Studio Client would invalidate its remote beans over and over, making working close to impossible.
-
☒ Without sticky sessions and without session replication: Does not work.