Examples of SendWorkerAggregatorsRequest


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

   */
  private void flushAggregatorsToWorker(WorkerInfo worker) {
    byte[] aggregatorData =
        sendAggregatedValueCache.removeAggregators(worker.getTaskId());
    workerClient.sendWritableRequest(worker.getTaskId(),
        new SendWorkerAggregatorsRequest(aggregatorData,
            serviceWorker.getWorkerInfo().getTaskId()));
  }
View Full Code Here

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

   */
  private void flushAggregatorsToWorker(WorkerInfo worker) {
    byte[] data =
        sendReducedValuesCache.removeSerialized(worker.getTaskId());
    workerClient.sendWritableRequest(worker.getTaskId(),
        new SendWorkerAggregatorsRequest(data,
            serviceWorker.getWorkerInfo().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.