Package org.apache.howl.mapreduce

Examples of org.apache.howl.mapreduce.HowlOutputCommitter


  public void storeSchema(ResourceSchema schema, String arg1, Job job) throws IOException {
    if( job.getConfiguration().get("mapred.job.tracker", "").equalsIgnoreCase("local") ) {
      //In local mode, mapreduce will not call HowlOutputCommitter.cleanupJob.
      //Calling it from here so that the partition publish happens.
      //This call needs to be removed after MAPREDUCE-1447 is fixed.
      new HowlOutputCommitter(null).cleanupJob(job);
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.howl.mapreduce.HowlOutputCommitter

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.