Package org.apache.giraph.comm.requests

Examples of org.apache.giraph.comm.requests.SendAggregatorsToOwnerRequest


   */
  private void flushAggregatorsToWorker(WorkerInfo worker) {
    byte[] aggregatorData =
        sendAggregatorCache.removeAggregators(worker.getTaskId());
    nettyClient.sendWritableRequest(
        worker.getTaskId(), new SendAggregatorsToOwnerRequest(aggregatorData,
          service.getMasterInfo().getTaskId()));
  }
View Full Code Here


   */
  private void flushAggregatorsToWorker(WorkerInfo worker) {
    byte[] data =
        sendGlobalCommCache.removeSerialized(worker.getTaskId());
    nettyClient.sendWritableRequest(
        worker.getTaskId(), new SendAggregatorsToOwnerRequest(data,
          service.getMasterInfo().getTaskId()));
  }
View Full Code Here

TOP

Related Classes of org.apache.giraph.comm.requests.SendAggregatorsToOwnerRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.