Search in sources :

Example 1 with CheckpointingClientImpl

use of edu.iu.dsc.tws.checkpointing.client.CheckpointingClientImpl in project twister2 by DSC-SPIDAL.

the class JMWorkerAgent method init.

/**
 * initialize JMWorkerAgent
 * wait until it connects to JobMaster
 * return false, if it can not connect to JobMaster
 */
private void init() {
    looper = new Progress();
    ClientConnectHandler connectHandler = new ClientConnectHandler();
    rrClient = new RRClient(jmAddress, jmPort, null, looper, thisWorker.getWorkerID(), connectHandler);
    driverAgent = new JMDriverAgent(rrClient, thisWorker.getWorkerID());
    statusUpdater = new JMWorkerStatusUpdater(rrClient, thisWorker.getWorkerID(), config);
    // protocol buffer message registrations
    ResponseMessageHandler handler = new ResponseMessageHandler();
    rrClient.registerResponseHandler(JobMasterAPI.RegisterWorker.newBuilder(), handler);
    rrClient.registerResponseHandler(JobMasterAPI.RegisterWorkerResponse.newBuilder(), handler);
    rrClient.registerResponseHandler(JobMasterAPI.JobScaled.newBuilder(), handler);
    rrClient.registerResponseHandler(JobMasterAPI.AllJoined.newBuilder(), handler);
    // create checkpointing client
    this.checkpointClient = new CheckpointingClientImpl(rrClient, CheckpointingContext.getRequestTimeout(config));
    workerController = new JMWorkerController(config, thisWorker, numberOfWorkers, restartCount, rrClient, this.checkpointClient);
    // try to connect to JobMaster
    tryUntilConnected(CONNECTION_TRY_TIME_LIMIT);
    if (!rrClient.isConnected()) {
        throw new RuntimeException("JMWorkerAgent can not connect to Job Master. Exiting .....");
    }
    // initialize checkpointing client
    this.checkpointClient.init();
}
Also used : Progress(edu.iu.dsc.tws.common.net.tcp.Progress) CheckpointingClientImpl(edu.iu.dsc.tws.checkpointing.client.CheckpointingClientImpl) RRClient(edu.iu.dsc.tws.common.net.tcp.request.RRClient)

Aggregations

CheckpointingClientImpl (edu.iu.dsc.tws.checkpointing.client.CheckpointingClientImpl)1 Progress (edu.iu.dsc.tws.common.net.tcp.Progress)1 RRClient (edu.iu.dsc.tws.common.net.tcp.request.RRClient)1