Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running multiple Erlang applications. One or many VMs?

I want to run multiple Erlang applications, one being Riak and another being a web server. Should I run them in the same of separate Erlang VMs and why?

like image 848
yazz.com Avatar asked Feb 03 '10 19:02

yazz.com


3 Answers

While many would recommend decoupling these subsystems I would take the opposite approach. Erlang has a built in strategy to run many applications on the same release. If your applications talk to each other directly it might make sense for you to bundle them together into a release. This will make calls between the applications faster. Some will argue that all you applications now share the same fate should you need to take the system down for an upgrade that only one of the applications needs. This is a moot point with Erlang where you are distributing your applications across many nodes. Also most upgrades can be done with hot code loading.

like image 168
Vanson Samuel Avatar answered Nov 16 '22 00:11

Vanson Samuel


If they don't have to do anything with each other: No. You might need to restart the VM for one of the applications, which would result in a downtime for both.

like image 20
ZeissS Avatar answered Nov 16 '22 01:11

ZeissS


It is called "fate sharing", a common design decision. The more sub-systems share common resources, the more their "fate" are tied together. In the event of malfunction/failure, the more "fate sharing" --> the increased likelihood of systematic failure.

IF you can have each in separate VMs then I would say it is better this way.

like image 41
jldupont Avatar answered Nov 15 '22 23:11

jldupont