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

I want to use akka for below mentioned requirement - User request will come to my server, when user request received, based on user profile, no. of vendor API will be called. Let say for this user, 6 vendor is active. Here, I want 3 vendor API business logic execution to be done on remote server and 3 vendor API business logic execution at same server (main) where user request come. Once remote server business logic execution done result will be returned to main server and remote server result and main server result will be combined and will sent back to user.

Here,

  • 1st, I will create ActorSystem.
  • 2nd, will create Supervisor Actor.
  • 3rd, will create Worker Actor. No. of worker actor creation will be dependent on the no. of active vendor API for a user.
  • 4th, will create a listener Actor.

I want to use akka configuration for above mentioned flow and want to include whatever possible configuration can be added in config that we will add in akka config.

    /**Creating actor system **/
    ActorSystem _system = ActorSystem.create("SearchScenarios", ConfigFactory.load().getConfig("Scenario"));

    /** Creating supervisor actor **/       
            ActorRef supervisorActor = _system.actorOf(new Props(
            new UntypedActorFactory() {
                public UntypedActor create() {
                    return new SuperVisorActor(NumOfAPIsActive);
                }
            }), "supervisor");

    supervisorActor.tell(msg);

public class SuperVisorActor extends UntypedActor {

private int iNumOfAPIsActive = 0;
private ActorRef objWorkerActorRef;

public SuperVisorActor (int iNumOfAPIsActive) {
    this.iNumOfAPIsActive = iNumOfAPIsActive;
    objWorkerActorRef = this.getContext().actorOf(new Props(WorkerActor.class).withRouter(new FromConfig()), "myRandomRouterActor");
    //objWorkerActorRef = this.getContext().actorOf(new Props(WorkerActor.class).withRouter(new RoundRobinRouter(this.iNumOfAPIsActive)), "workerActor");
}

private static SupervisorStrategy strategy = new AllForOneStrategy(10,
        Duration.parse("10 second"), new Function<Throwable, Directive>() {
    public Directive apply(Throwable t) {
        if (t instanceof ArithmeticException) {
            return resume();
        } else if (t instanceof NullPointerException) {
            return restart();
        } else if (t instanceof IllegalArgumentException) {
            return stop();
        } else {
            return escalate();
        }
    }
});

@Override
public SupervisorStrategy supervisorStrategy() {
    return strategy;
}

@Override
public void onReceive(Object msg) throws Exception {

        System.out.println(String.format("Received Message '%s' in Actor %s", msg, getSelf().path()));

        objWorkerActorRef.tell(msg, getSelf());

}

}

application.conf

Scenario{
akka.actor.deployment {
  /supervisor/myRandomRouterActor {
    router = random
    nr-of-instances = 5
  }
}
akka {
    loglevel = DEBUG
    actor {     
        provider = "akka.remote.RemoteActorRefProvider"    

        debug {
            receive = on
            autoreceive = on
            lifecycle = on
        } 
    }
    remote {
        transport = "akka.remote.netty.NettyRemoteTransport"
        netty {
            hostname = "127.0.0.1"
            port = 2552
        }
    }
}

}

Here, I have configured for ActorSystem, Router and supervisor. Is it ok to configure as mentioned above or I have to configure separately for ActorSystem, Router and supervisor.

How the remote should be configured, if I have 5 servers and i want to distribute the loads on available servers for vendor XML API business logic execution. Here, I have to explore akka cluster for this or this can be done via remote ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.