Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

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.

5 Answers

up vote 52 down vote accepted

Disclaimer: I am the PO for Akka

  • Erlang does copy-on-send - Akka uses shared memory (immutable objects) for in-VM sends
  • Erlang does per-process GC - Akka uses JVM GCs
  • Erlang has OTP - Akka integrates with the entire Java ecosystem (Apache Camel, JAX-RS, etc etc)
  • Erlang does the process scheduling for you - Akka allows you to use many different Dispatchers with endless configuration opportunities
  • Erlang does hot code reload - Akka can support it, but it's less flexible because of JVM classloading

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.

share|improve this answer
8  
Erlang objects are also immutable and the concurrency model does not require copy-on-send within the same node. BEAM for large objects sends a reference. Source: this SO answer by @rvirdig. – FooF May 19 '12 at 13:29
Of course the concurrency model doesn't require it, it just needs to follow the same contract, i.e. that the messages are observably immutable. Which you guarantee for mutable and remote ones by copy-on-send. – Viktor Klang May 19 '12 at 13:45
4  
Erlang does copy-on-send to make GC more efficient -- it can work in per process basis. This is why there are no huge GC pauses in Erlang apps as opposed to JVM/Akka apps. – andreypopp May 28 '12 at 5:35
1  
Well, Andrey, that sort of depends on which JVM / GC you're using. azulsystems.com/products/zing/whatisit – Viktor Klang May 28 '12 at 12:10
Usually I don't refer to bechmarks much because they are wage but Benchmarks show the copy-on-send can be slow – MaX May 31 '12 at 18:20
show 1 more comment

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:

  1. Welcome to the club, what took you so long?
  2. The JVM makes it awfully, awfully hard to join, though. :-)
share|improve this answer

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.

share|improve this answer
Erlang way of making all IO implicitly asynchronous is very elegant. Async IO can done using NIO APIs in Scala, which doesn't look like check-mate to me, but a less elegant solution. – HRJ Sep 7 '11 at 15:16
2  
@vjache you are so right! – rvirding May 26 '12 at 17:12
what in the hell are you talking about?! how is processing 1000 straight tasks better than a roundrobin scheduling, or even near a smallestmailbox scheduling!! – FUD Mar 28 at 4:23

For me, hot code swapping in an entire Erlang cluster without downtime (for example: make:all([netload]) is one of the Erlang killer features.

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.

share|improve this answer
12  
IMO, Scala is a much better language on the syntax level than Erlang. It has objects, traits, proper namespaces, proper type safety, no ugly record syntax, etc. The community is larger, I can use all available Java tools and it just feels more polished. – ryeguy Dec 20 '10 at 16:59
7  
@ryeguy: "better language on the syntax level" ... hmm, define "better" for "syntax". When I compare languages syntax is the most irrelevant factor (because it is only a matter of taste or to what you are used). – Peer Stritzinger Dec 20 '10 at 20:00
3  
@ryeguy Different semantics, different syntax. – rvirding Dec 20 '10 at 21:37

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.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.