Package co.cask.cdap.common.logging

Source Code of co.cask.cdap.common.logging.FlumeLogCollector

/*
* Copyright © 2014 Cask Data, Inc.
*
* 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 co.cask.cdap.common.logging;

import co.cask.cdap.common.conf.CConfiguration;
import co.cask.cdap.common.conf.Constants;
import org.apache.avro.ipc.NettyServer;
import org.apache.avro.ipc.Server;
import org.apache.avro.ipc.specific.SpecificResponder;
import org.apache.flume.source.avro.AvroSourceProtocol;
import org.apache.hadoop.conf.Configuration;
import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.net.InetSocketAddress;
import java.util.concurrent.Executors;

/**
* Collector for flume.
*/
public class FlumeLogCollector {

  private static final Logger LOG = LoggerFactory
      .getLogger(FlumeLogCollector.class);

  private CConfiguration config;
  private Configuration hConfig;

  public FlumeLogCollector(CConfiguration config, Configuration hConfig) {
    this.config = config;
    this.hConfig = hConfig;
    this.port = config.getInt(Constants.CFG_LOG_COLLECTION_PORT,
        Constants.DEFAULT_LOG_COLLECTION_PORT);
    this.threads = config.getInt(Constants.CFG_LOG_COLLECTION_THREADS,
        Constants.DEFAULT_LOG_COLLECTION_THREADS);
  }

  private Server server;
  private int threads;
  private int port;


  public void start() throws IOException {

    LOG.info("Starting up " + this);

    // this is all standard avro ipc. The key is to pass in Flume's avro
    // source protocol as the interface, and the FlumeAdapter as its
    // implementation.
    this.server = new NettyServer(
        new SpecificResponder(AvroSourceProtocol.class,
            new FlumeLogAdapter(config, hConfig)),
        new InetSocketAddress(this.port),
        // in order to control the number of netty worker threads, we
        // must create and pass in the server channel factory explicitly
        new NioServerSocketChannelFactory(
            Executors.newCachedThreadPool(),
            Executors.newCachedThreadPool(),
            this.threads));
    this.server.start();
    LOG.info("Log Collection Source started on port " + port + " with "
        + this.threads + " threads.");
  }

  public static void main(String[] args) {
    try {
      CConfiguration configuration = CConfiguration.create();
      Configuration hConfiguration = new Configuration();

      new FlumeLogCollector(configuration, hConfiguration).start();
    } catch (Exception e) {
      LOG.error("Failed to start Log Collection Source: " + e.getMessage(), e);
      System.err.println("Error: " + e.getMessage());
    }
  }

}
TOP

Related Classes of co.cask.cdap.common.logging.FlumeLogCollector

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.