Package org.apache.giraph.worker

Examples of org.apache.giraph.worker.WorkerAggregatorUsage


    }
    finishedSuperstepStats = serviceWorker.setup();
    if (collectInputSuperstepStats(finishedSuperstepStats)) {
      return;
    }
    WorkerAggregatorUsage aggregatorUsage =
      prepareAggregatorsAndGraphState();
    List<PartitionStats> partitionStatsList = new ArrayList<PartitionStats>();
    int numComputeThreads = conf.getNumComputeThreads();

    // main superstep processing loop
View Full Code Here


  /**
   * Prepare aggregators and worker context for superstep cycles.
   * @return aggregator metadata object
   */
  private WorkerAggregatorUsage prepareAggregatorsAndGraphState() {
    WorkerAggregatorUsage aggregatorUsage =
      serviceWorker.getAggregatorHandler();
    updateSuperstepGraphState(aggregatorUsage);
    workerContextPreApp();
    return aggregatorUsage;
  }
View Full Code Here

TOP

Related Classes of org.apache.giraph.worker.WorkerAggregatorUsage

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.