No description
Find a file
Patrik Nordwall d98a7ef1e8 Cluster singleton failure due to down-removed, see #3130
* The scenario was that previous leader left.
* The problem was that the new leader got MemberRemoved
  before it got the HandOverDone and therefore missed the
  hand over data.
* Solved by not changing the singleton to leader when receiving
  MemberRemoved and instead do that on normal HandOverDone or
  in failure cases after retry timeout.
* The reason for this bug was the new transition from Down to
  Removed and that there is now no MemberDowned event. Previously
  this was only triggered by MemberDowned (not MemberRemoved) and
  that was safe because that was "always" preceeded by unreachable.
* The new solution means that it will take longer for new singleton
  to startup in case of unreachable previous leader, but I don't
  want to trigger it on MemberUnreachable because it might in the
  future be possible to switch it back to reachable.
2013-03-11 12:37:35 +01:00
akka-actor/src/main fix formatting of Java API in doc comments + genjavadoc 0.3 2013-03-07 09:05:55 +01:00
akka-actor-tests/src/test Dump diagnostics (Coroner's Report) if a test takes too long. Fixes #3110 2013-03-08 12:39:19 +13:00
akka-agent/src fix formatting of Java API in doc comments + genjavadoc 0.3 2013-03-07 09:05:55 +01:00
akka-camel/src fix formatting of Java API in doc comments + genjavadoc 0.3 2013-03-07 09:05:55 +01:00
akka-channels/src/main/scala/akka/channels avoid wrapping messages when ask returns single type 2013-02-04 11:02:58 -05:00
akka-channels-tests/src avoid wrapping messages when ask returns single type 2013-02-04 11:02:58 -05:00
akka-cluster/src Cluster singleton failure due to down-removed, see #3130 2013-03-11 12:37:35 +01:00
akka-contrib Cluster singleton failure due to down-removed, see #3130 2013-03-11 12:37:35 +01:00
akka-dataflow/src #2879 - updating copyright info 2013-01-09 11:38:00 +01:00
akka-docs Joining member should not be leader, see #3021 2013-03-07 14:07:17 +01:00
akka-durable-mailboxes Java docs and sample of durable mailbox, see #2761 2013-02-20 12:52:28 +01:00
akka-kernel/src/main Change more copyright to 2009-2013, see #2879 2013-02-20 21:26:52 +01:00
akka-multi-node-testkit/src/main Change more copyright to 2009-2013, see #2879 2013-02-20 21:26:52 +01:00
akka-osgi/src Rename event-handlers to loggers, see #2979 2013-02-05 11:19:02 +01:00
akka-osgi-aries/src Change more copyright to 2009-2013, see #2879 2013-02-20 21:26:52 +01:00
akka-remote/src Merge pull request #1212 from drewhk/wip-3111-init-race-transportadapter-drewhk 2013-03-01 07:02:08 -08:00
akka-remote-tests/src Make RandomRoutedRemoteActorSpec lucky, see #3061 2013-02-22 15:23:19 +01:00
akka-samples Publish member events when state change first seen, see #3075 2013-03-07 14:07:17 +01:00
akka-sbt-plugin Akka SBT plugin now uses project IDs instead of names. See #2695 2013-02-22 09:17:16 +01:00
akka-slf4j/src Rename event-handlers to loggers, see #2979 2013-02-05 11:19:02 +01:00
akka-testkit/src Merge pull request #1211 from akka/wip-3110-test-thread-dump-rich 2013-03-07 23:21:35 -08:00
akka-transactor/src fix formatting of Java API in doc comments + genjavadoc 0.3 2013-03-07 09:05:55 +01:00
akka-zeromq/src fix formatting of Java API in doc comments + genjavadoc 0.3 2013-03-07 09:05:55 +01:00
project make config switchable in initialCommands for SBT console 2013-03-07 19:59:59 +01:00
scripts Script that generates statistics for release notes 2013-02-18 10:43:36 +01:00
src/main/ls Update ls.implicit.ly sbt settings 2012-03-10 10:30:38 +13:00
.gitignore ignore automatically assembled files in akka-osgi resources dir 2013-01-29 12:34:33 +01:00
CONTRIBUTING.md round up ticket workflow in CONTRIBUTING 2012-12-19 17:30:36 +01:00
LICENSE Change more copyright to 2009-2013, see #2879 2013-02-20 21:26:52 +01:00
README.textile Update README.textile 2012-07-23 19:36:26 -03:00

h1. Akka

We believe that writing correct concurrent, fault-tolerant and scalable applications is too hard. Most of the time it's because we are using the wrong tools and the wrong level of abstraction.

Akka is here to change that.

Using the Actor Model together with Software Transactional Memory we raise the abstraction level and provide a better platform to build correct concurrent and scalable applications.

For fault-tolerance we adopt the "Let it crash" model which the telecom industry has used with great success to build applications that self-heal and systems that never stop.

Actors also provide the abstraction for transparent distribution and the basis for truly scalable and fault-tolerant applications.

Akka is Open Source and available under the Apache 2 License.

Learn more at "http://akka.io":http://akka.io.