开发者

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 Erlan开发者_如何学编程g VMs and why?


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.


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.


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.


By using separate VMs you lose a lot of erlang benefits.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜