Package eu.stratosphere.nephele.profiling.impl.types

Examples of eu.stratosphere.nephele.profiling.impl.types.InternalProfilingData


    // Process the received profiling data
    final Iterator<InternalProfilingData> dataIterator = profilingDataContainer.getIterator();
    while (dataIterator.hasNext()) {

      final InternalProfilingData internalProfilingData = dataIterator.next();

      if (internalProfilingData instanceof InternalExecutionVertexThreadProfilingData) {
        dispatchThreadData(timestamp, (InternalExecutionVertexThreadProfilingData) internalProfilingData);
      } else if (internalProfilingData instanceof InternalInstanceProfilingData) {
        dispatchInstanceData(timestamp, (InternalInstanceProfilingData) internalProfilingData);
      } else if (internalProfilingData instanceof InternalInputGateProfilingData) {
        dispatchInputGateData(timestamp, (InternalInputGateProfilingData) internalProfilingData);
      } else if (internalProfilingData instanceof InternalOutputGateProfilingData) {
        dispatchOutputGateData(timestamp, (InternalOutputGateProfilingData) internalProfilingData);
      } else {
        LOG.error("Received unknown profiling data: " + internalProfilingData.getClass().getName());
      }
    }
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.nephele.profiling.impl.types.InternalProfilingData

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.