Package org.apache.hadoop.chukwa.extraction.demux

Source Code of org.apache.hadoop.chukwa.extraction.demux.PostProcessorManager

/*
* 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.hadoop.chukwa.extraction.demux;

import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;

import org.apache.hadoop.chukwa.conf.ChukwaConfiguration;
import org.apache.hadoop.chukwa.extraction.CHUKWA_CONSTANT;
import org.apache.hadoop.chukwa.extraction.database.DatabaseLoader;
import org.apache.hadoop.chukwa.util.DaemonWatcher;
import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.fs.PathFilter;
import org.apache.log4j.Logger;

public class PostProcessorManager implements CHUKWA_CONSTANT{
  static Logger log = Logger.getLogger(PostProcessorManager.class);
 
  protected static HashMap<String, String> dataSources = new HashMap<String, String>();
  public static int errorCount = 0;
 
  protected int ERROR_SLEEP_TIME = 60;
  protected ChukwaConfiguration conf = null;
  protected FileSystem fs = null;
  protected volatile boolean isRunning = true;
 
  final private static PathFilter POST_PROCESS_DEMUX_DIR_FILTER = new PathFilter() {
    public boolean accept(Path file) {
      return file.getName().startsWith("demuxOutputDir");
    }    
  };

 
  public PostProcessorManager() throws Exception {
    conf = new ChukwaConfiguration();
    init();
  }
 
  public PostProcessorManager(ChukwaConfiguration conf) throws Exception {
    this.conf = conf;
    init();
  }
 
  protected void init() throws IOException, URISyntaxException {
    String fsName = conf.get(WRITER_HDFS_FILESYSTEM_FIELD);
    fs = FileSystem.get(new URI(fsName), conf);
  }
 
  public static void main(String[] args) throws Exception {
    DaemonWatcher.createInstance("PostProcessorManager");
   

   
    PostProcessorManager postProcessorManager = new PostProcessorManager();
    postProcessorManager.start();
  }
 
  public void shutdown() {
    this.isRunning = false;
  }
 
  public void start() {
   
    String chukwaRootDir = conf.get(CHUKWA_ROOT_DIR_FIELD, "/chukwa/");
    if ( ! chukwaRootDir.endsWith("/") ) {
      chukwaRootDir += "/";
    }
    log.info("chukwaRootDir:" + chukwaRootDir);
   
    String postProcessDir = conf.get(CHUKWA_POST_PROCESS_DIR_FIELD, chukwaRootDir +DEFAULT_CHUKWA_POSTPROCESS_DIR_NAME);
    if ( ! postProcessDir.endsWith("/") ) {
      postProcessDir += "/";
    }
   
    String chukwaRootReposDir = conf.get(CHUKWA_ROOT_REPOS_DIR_FIELD, chukwaRootDir +DEFAULT_REPOS_DIR_NAME);
    if ( ! chukwaRootReposDir.endsWith("/") ) {
      chukwaRootReposDir += "/";
    }
    dataSources = new HashMap<String, String>();
    String[] datasources = conf.getStrings("postProcessorManager.dbloader.ds");
    if (datasources == null || datasources.length == 0) {
      log.warn("Cannot read postProcessorManager.dbloader.ds from configuration, bail out!");
      DaemonWatcher.bailout(-1);
    }
    for(String ds: datasources) {
      dataSources.put(ds.trim(), "");
      log.info("Add " + ds + " to PostProcessorManager");
    }

   
    Path postProcessDirectory = new Path(postProcessDir);
    while (isRunning) {
     
      if (errorCount >= 4 ) {
        // it's better to exit, Watchdog will re-strat it
        log.warn("Too many error - bail out!");
        DaemonWatcher.bailout(-1);
      }
     
      try {
        FileStatus[] demuxOutputDirs = fs.listStatus(postProcessDirectory,POST_PROCESS_DEMUX_DIR_FILTER);
        List<String> directories = new ArrayList<String>();
        for (FileStatus fstatus : demuxOutputDirs) {
          directories.add(fstatus.getPath().getName());
        }
       
        if (demuxOutputDirs.length == 0) {
          try { Thread.sleep(10*1000);} catch(InterruptedException e) { /* do nothing*/}
          continue;
        }
       
        Collections.sort(directories);
       
        System.out.println(directories);
       
        String directoryToBeProcessed = null;
        long start = 0;
       
        for(String directory : directories) {
          directoryToBeProcessed = postProcessDirectory + "/"+ directory;
         
          log.info("PostProcess Start, directory:" + directoryToBeProcessed);
          start = System.currentTimeMillis();
         
          if ( processDemuxOutput(directoryToBeProcessed) == true) {
            if (movetoMainRepository(directoryToBeProcessed,chukwaRootReposDir) == true) {
              deleteDirectory(directoryToBeProcessed);
            }else {
              log.warn("Error in movetoMainRepository for :" + directoryToBeProcessed);
              throw new RuntimeException("");
            }
           
          } else {
            log.warn("Error in processDemuxOutput for :" + directoryToBeProcessed);
            throw new RuntimeException("");
          }
          log.info("PostProcess Stop, directory:" + directoryToBeProcessed);
          log.info("processDemuxOutput Duration:" + (System.currentTimeMillis() - start));
        }
      
      } catch (Throwable e) {
        errorCount ++;
        log.warn(e);
        try { Thread.sleep(ERROR_SLEEP_TIME * 1000); }
        catch (InterruptedException e1) {/*do nothing*/ }
      }
    }
  }
 
  public boolean processDemuxOutput(String directory) throws IOException {
    long start = System.currentTimeMillis();
    DatabaseLoader.loadData(fs,directory, dataSources);
    log.info("loadData Duration:" + (System.currentTimeMillis() - start));
   
    return true;
  }
 
  public boolean movetoMainRepository(String sourceDirectory,String repoRootDirectory) throws Exception {
    String[] args = {sourceDirectory,repoRootDirectory};
    long start = System.currentTimeMillis();
    MoveToRepository.main(args);
    log.info("movetoMainRepository Duration:" + (System.currentTimeMillis() - start));
    return true;
  }
 
  public boolean deleteDirectory(String directory) throws IOException {
   return fs.delete(new Path(directory), true);
  }
 
}
TOP

Related Classes of org.apache.hadoop.chukwa.extraction.demux.PostProcessorManager

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.