All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.pig.backend.hadoop.executionengine.HJob Maven / Gradle / Ivy

There is a newer version: 0.9.2-cdh4b1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.pig.backend.hadoop.executionengine;

import java.io.OutputStream;
import java.util.Iterator;
import java.util.Properties;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.pig.LoadFunc;
import org.apache.pig.PigException;
import org.apache.pig.backend.executionengine.ExecException;
import org.apache.pig.backend.executionengine.ExecJob;
import org.apache.pig.backend.hadoop.datastorage.ConfigurationUtil;
import org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators.POStore;
import org.apache.pig.data.Tuple;
import org.apache.pig.impl.PigContext;
import org.apache.pig.impl.io.FileSpec;
import org.apache.pig.impl.io.ReadToEndLoader;
import org.apache.pig.tools.pigstats.PigStats;


public class HJob implements ExecJob {

    private final Log log = LogFactory.getLog(getClass());

    protected JOB_STATUS status;
    protected PigContext pigContext;
    protected FileSpec outFileSpec;
    protected Exception backendException;
    protected String alias;
    protected POStore poStore;
    private PigStats stats;

    public HJob(JOB_STATUS status,
                PigContext pigContext,
                POStore store,
                String alias) {
        this.status = status;
        this.pigContext = pigContext;
        this.poStore = store;
        this.outFileSpec = poStore.getSFile();
        this.alias = alias;
    }

    public HJob(JOB_STATUS status,
            PigContext pigContext,
            POStore store,
            String alias,
            PigStats stats) {
        this.status = status;
        this.pigContext = pigContext;
        this.poStore = store;
        this.outFileSpec = poStore.getSFile();
        this.alias = alias;
        this.stats = stats;
    }

    @Override
    public JOB_STATUS getStatus() {
        return status;
    }

    @Override
    public boolean hasCompleted() throws ExecException {
        return true;
    }

    @Override
    public Iterator getResults() throws ExecException {
        final LoadFunc p;

        try{
             LoadFunc originalLoadFunc =
                 (LoadFunc)PigContext.instantiateFuncFromSpec(
                         outFileSpec.getFuncSpec());

             p = (LoadFunc) new ReadToEndLoader(originalLoadFunc,
                     ConfigurationUtil.toConfiguration(
                     pigContext.getProperties()), outFileSpec.getFileName(), 0);

        }catch (Exception e){
            int errCode = 2088;
            String msg = "Unable to get results for: " + outFileSpec;
            throw new ExecException(msg, errCode, PigException.BUG, e);
        }

        return new Iterator() {
            Tuple   t;
            boolean atEnd;

            @Override
            public boolean hasNext() {
                if (atEnd)
                    return false;
                try {
                    if (t == null)
                        t = p.getNext();
                    if (t == null)
                        atEnd = true;
                } catch (Exception e) {
                    log.error(e);
                    t = null;
                    atEnd = true;
                    throw new Error(e);
                }
                return !atEnd;
            }

            @Override
            public Tuple next() {
                Tuple next = t;
                if (next != null) {
                    t = null;
                    return next;
                }
                try {
                    next = p.getNext();
                } catch (Exception e) {
                    log.error(e);
                }
                if (next == null)
                    atEnd = true;
                return next;
            }

            @Override
            public void remove() {
                throw new RuntimeException("Removal not supported");
            }

        };
    }

    @Override
    public Properties getConfiguration() {
        return pigContext.getProperties();
    }

    @Override
    public PigStats getStatistics() {
        //throw new UnsupportedOperationException();
        return stats;
    }

    @Override
    public void completionNotification(Object cookie) {
        throw new UnsupportedOperationException();
    }

    @Override
    public void kill() throws ExecException {
        throw new UnsupportedOperationException();
    }

    @Override
    public void getLogs(OutputStream log) throws ExecException {
        throw new UnsupportedOperationException();
    }

    @Override
    public void getSTDOut(OutputStream out) throws ExecException {
        throw new UnsupportedOperationException();
    }

    @Override
    public void getSTDError(OutputStream error) throws ExecException {
        throw new UnsupportedOperationException();
    }

    public void setException(Exception e) {
        backendException = e;
    }

    @Override
    public Exception getException() {
        return backendException;
    }

    @Override
    public String getAlias() throws ExecException {
        return alias;
    }

    /**
     * @return the poStore
     */
    @Override
    public POStore getPOStore() {
        return poStore;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy