Package org.apache.oozie.action.hadoop

Examples of org.apache.oozie.action.hadoop.OozieActionConfiguratorException


public class SampleOozieActionConfigurator implements OozieActionConfigurator {

    @Override
    public void configure(JobConf actionConf) throws OozieActionConfiguratorException {
        if (actionConf.getUser() == null) {
            throw new OozieActionConfiguratorException("No user set");
        }
        if (actionConf.get("examples.root") == null) {
            throw new OozieActionConfiguratorException("examples.root not set");
        }
        if (actionConf.get("output.dir.name") == null) {
            throw new OozieActionConfiguratorException("output.dir.name not set");
        }

        actionConf.setMapperClass(SampleMapper.class);
        actionConf.setReducerClass(SampleReducer.class);
        actionConf.setNumMapTasks(1);
View Full Code Here

TOP

Related Classes of org.apache.oozie.action.hadoop.OozieActionConfiguratorException

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.