No description
Find a file
Patrik Nordwall c991d5f1d1 =str #17200 Stop shard region when MemberRemoved
Two issues:

1) ShardRegion actor must stop itself when the node is shutting down,
   ie. when receiving MemberRemoved(selfAddress)
2) ShardCoordinator must not persist anything when the node is shutting
   down. MemberRemoved of other shard regions will trigger Terminated,
   which must not be persisted, because then the next coordinator will
   replay those events and end up in wrong state. This is a problem
   announced itself when using leaving as illustrated in the new test.

To solve the second issue I have added a new ClusterShuttingDown event
that is published before the MemberRemoved events. Note that Terminated
is triggered by MemberRemoved.

(cherry picked from commit 1b272c72597beece9d93f0054f4b58e3d25f9ae2)
2015-04-22 12:46:30 +02:00
akka-actor Merge pull request #17201 from hepin1989/fix-#15898 2015-04-20 21:24:43 +02:00
akka-actor-tests Merge pull request #17152 from ktoso/wip-forMaxOverride-FSM-ktoso 2015-04-09 17:34:39 +02:00
akka-agent Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-bench-jmh Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-camel Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-cluster =str #17200 Stop shard region when MemberRemoved 2015-04-22 12:46:30 +02:00
akka-cluster-metrics Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-contrib =str #17200 Stop shard region when MemberRemoved 2015-04-22 12:46:30 +02:00
akka-docs Merge pull request #17120 from akka/wip-15677-deprecate-microkernel-patriknw 2015-04-05 11:59:31 +02:00
akka-kernel =ker #15677 Deprecate Microkernel 2015-04-01 12:01:07 +02:00
akka-multi-node-testkit Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-osgi Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-persistence =per #16737 avoid NPE when snapshot dir is removed 2015-04-01 14:50:28 +02:00
akka-persistence-tck Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-remote =tes #17080 Move TestUtils to testkit.SocketUtil 2015-04-08 08:21:38 +02:00
akka-remote-tests =rem #17151 Add missing barrier in RemoteNodeRestartGate 2015-04-08 15:28:16 +02:00
akka-samples =ker #15677 Deprecate Microkernel 2015-04-01 12:01:07 +02:00
akka-slf4j Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-stream/src Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
akka-testkit =tes #17080 Move TestUtils to testkit.SocketUtil 2015-04-08 08:21:38 +02:00
akka-typed =typ #17137 increase await timeout, allow using dilation 2015-04-03 15:50:41 +02:00
atmos/src/main/resources Trace all system actors 2013-06-27 16:03:30 +02:00
project Merge pull request #17120 from akka/wip-15677-deprecate-microkernel-patriknw 2015-04-05 11:59:31 +02:00
scripts + akka-cluster-metrics: new akka module 2015-01-19 10:23:54 -06:00
src/main/ls Update ls.implicit.ly sbt settings 2012-03-10 10:30:38 +13:00
.gitignore + akka-cluster-metrics: new akka module 2015-01-19 10:23:54 -06:00
build.sbt =pro upgrade to latest sbt and add first auto plugins 2014-11-30 15:34:59 +02:00
CONTRIBUTING.md Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
LICENSE Changes all occurances of Typesafe copyright to extend to 2015 2015-03-10 14:12:19 -07:00
README.md switch README from textile to markdown and freshen it up 2015-04-16 22:10:32 +02:00

Akka

We believe that writing correct concurrent & distributed, resilient and elastic 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 we raise the abstraction level and provide a better platform to build correct concurrent and scalable applications.

For resilience 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 akka.io. Join the akka-user mailing list. Follow @akkateam on twitter.

Gitter