Examples of SendAggregatorsToOwnerRequest


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

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

   */
  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
Copyright © 2018 www.massapi.com. 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.