Package cascading.stats.tez

Source Code of cascading.stats.tez.TezStepStats

/*
* Copyright (c) 2007-2014 Concurrent, Inc. All Rights Reserved.
*
* Project and contact information: http://www.cascading.org/
*
* This file is part of the Cascading project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package cascading.stats.tez;

import java.io.IOException;
import java.util.Iterator;

import cascading.flow.FlowNode;
import cascading.flow.FlowStep;
import cascading.management.state.ClientState;
import cascading.stats.FlowNodeStats;
import cascading.stats.hadoop.BaseHadoopStepStats;
import org.apache.hadoop.conf.Configuration;
import org.apache.tez.common.counters.TezCounters;
import org.apache.tez.dag.api.client.DAGClient;
import org.apache.tez.dag.api.client.DAGStatus;

/**
*
*/
public abstract class TezStepStats extends BaseHadoopStepStats<DAGStatus, TezCounters>
  {
  /**
   * Constructor CascadingStats creates a new CascadingStats instance.
   *
   * @param flowStep
   * @param clientState
   */
  protected TezStepStats( FlowStep flowStep, ClientState clientState )
    {
    super( flowStep, clientState );

    Configuration config = (Configuration) flowStep.getConfig();

    this.counterCache = new TezCounterCache<DAGStatus>( this, config )
    {
    @Override
    protected DAGStatus getJobStatusClient()
      {
      return TezStepStats.this.getJobStatusClient();
      }

    protected TezCounters getCounters( DAGStatus statusClient ) throws IOException
      {
      return statusClient.getDAGCounters();
      }
    };

    Iterator<FlowNode> iterator = flowStep.getFlowNodeGraph().getOrderedTopologicalIterator();

    while( iterator.hasNext() )
      addNodeStats( new TezNodeStats( this, iterator.next(), clientState, config ) );
    }

  protected abstract DAGClient getDAGClient();

  /** Method captureDetail captures statistics task details and completion events. */
  @Override
  public synchronized void captureDetail()
    {
    DAGClient dagClient = getDAGClient();
    DAGStatus jobStatus = getJobStatusClient();

    if( dagClient == null || jobStatus == null )
      return;

    for( FlowNodeStats flowNodeStats : getFlowNodeStatsMap().values() )
      flowNodeStats.captureDetail();
    }
  }
TOP

Related Classes of cascading.stats.tez.TezStepStats

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.