AFAIK nope, Akka micro kernel was deprecated, I think Akka completely moved to a "toolkit/framework" approach, I have a system running micro-services with some shared generic actors and a single configuration with seed nodes, all using the good old Java main method per micro-service, each micro-service runs on its own JVM and a common.jar is shared between the modules for shared messages Java classes.
I had to create my own shard and balancer mechanism for some type of micro-service all based on cluster events, DevOps created the executables using Ansible scripts to create supervisord micro-services and Maven app-assembler to generate the main executable by resolving the dependencies of such micro-service with release policies in place and uniform versions of each micro-service, when a version is rolled up it is done at Maven parent project so all micro-services roll a version. There is two types of maintenance: - Add/remove node of a supervisor type to the cluster which doesn't require the cluster to be restarted. - Upgrade to a version which due to JVM class loader implications and serializable class versions we restart the cluster at this phase. For the 2nd type of maintenance we could had gone the Json route but in the end it gets messy and it is not as fast IMHO as native types using Kryo, it is a decision that can be made prior implementation but there will be always a trade of. Hope that helps, Guido. On Friday, December 4, 2015 at 10:46:32 AM UTC, [email protected] wrote: > > Hi, > > If I have a bare bone Akka cluster running on n nodes with a fixed > configuration. > I am cosidering to build a system where one could deploy dynamically > akka-jars to this cluster. > These akka-jars should be isolated as much as possible from each other. > (Maybe through different classloaders) > > Does the akka echo system offer any thing here. > I skimmed through the 2.4 docs but couldn't find much on this subject? > > Many Greetings > john > -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
