Tagged Questions

13
votes
3answers
772 views

Are Erlang/OTP messages reliable? Can messages be duplicated?

Long version: I'm new to erlang, and considering using it for a scalable architecture. I've found many proponents of the platform touting its reliability and fault tolerance. However, I'm ...
6
votes
4answers
486 views

How do supervisor processes monitor processes? Can the same be done on the JVM?

Erlang fault tolerance (as I understand it) includes the use of supervisor processes to keep an eye on worker processes, so if a worker dies the supervisor can start up a new one. How does Erlang do ...
2
votes
2answers
136 views

What it the real benefit from Erlang's fault tolerance for a web project?

Let's assume we have a web project in which we want to have ~10000 web clients connected to the server simultaneously. Let's also assume that one client session lasts about 25 minutes. If we compare ...
1
vote
2answers
40 views

Java web applications supervision and faulttolerance

Note: The author of this question has some Java background, but is a complete newbie in Java EE. I would like to know if there exists a mature tool to supervise Java web applications. For example, ...