I've been looking at akka recently and it's pretty impressive. It looks like it has most of the killer features of erlang - location transparency, supervision hierarchies, and more. Are there any features erlang has that akka doesn't?
closed as not constructive by Andrew Barber♦, Bill the Lizard♦ Dec 20 '12 at 18:57
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Disclaimer: I am the PO for Akka
Those are the ones from the top of my head. On the other hand, using Akka means that you can use Scala, Java, Groovy or JRuby to write your applications. |
|||||||||||||||||
|
|
Nearly nobody mentions process isolation. Without guarantees of "your thread cannot mess with my junk", distributed systems are much more difficult to reason about. (They're already difficult enough with Erlang's processes.) AFAIK (which isn't far, given my limited direct experience with the JVM), only Erjang actually gets process isolation "right" on the JVM. Mr. Google can give some hints on where to find research by Fox and Candea (?) on research systems that use a "micro-reboot" technique ("recovery-oriented computing"). An Erlang developer reads that research and says a couple of things:
|
|||
|
|
|
In Erlang processes guarantied to be switched aproximately each 1000 reductions. In such a naive framework as Scala/Akka agent owns a scheduler until it finish it work in receive. Check, and mate. Game over. Astalavista:) People, do not waste your time on pseudo techs. I shocked that guys here compare Scala with Erlang. Also there are many other so called "killer features", but here is my advice, do not think in terms of features, think about ideoms that enables particular language. Scala steals "best features", Erlang enables/implements you with right ideoms to build systems reliably, with high level languge that driven from those right ideoms. When you learn Erlang you are rebuilding your mind, your way of thinking about distributed reliable system, Erlang teaches you and upgrades you. Scala is just another one imperative(oh, sorry, multiparadigmal, funny word) language that tries to steal good fetures from other languages. |
|||||||||
|
|
For me, hot code swapping in an entire Erlang cluster without downtime (for example: But let's reverse your question: What does akka have that Erlang doesn't? Of course you can add dozens of extensions and libraries (scala, akka, spring, osgi, ...) to Java to try to come close to Erlang. But where is the point? In sum all these extensions are much more complex than learning the simple Erlang language that now has proven for over 2 decades that it can do the job offering top scalability with zero downtime. |
|||||||||||||
|
|
Probably Erlang is better for bigger distributed systems (following vjache's answer) but for a normal server when you just want use the full power of multiple CPUs then Akka is good choice— provides good abstraction, performance and integration with the Java ecosystem. |
||||
|
|