Package com.cloudera.flume.core

Source Code of com.cloudera.flume.core.DemuxSink

/**
* Licensed to Cloudera, Inc. under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  Cloudera, Inc. 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 com.cloudera.flume.core;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import com.cloudera.flume.handlers.debug.NullSink;
import com.cloudera.flume.reporter.ReportEvent;
import com.cloudera.util.MultipleIOException;
import com.google.common.base.Preconditions;

/**
* This takes events and splits them based on the value of an attribute
*/
public class DemuxSink<S extends EventSink> extends EventSink.Base {

  String field;
  Map<byte[], S> split;
  final EventSink fallthrough;

  public DemuxSink(String field, Map<byte[], S> split, EventSink fallthrough) {
    Preconditions.checkNotNull(field);
    Preconditions.checkNotNull(split);
    Preconditions.checkNotNull(fallthrough);
    this.field = field;
    this.split = split;
    this.fallthrough = fallthrough;
  }

  public DemuxSink(String field, Map<byte[], S> split) {
    this(field, split, new NullSink());
  }

  @Override
  public void append(Event e) throws IOException, InterruptedException {
    byte[] val = e.get(field);
    S handler = split.get(val);

    if (handler == null) {
      fallThrough(val, e);
      return;
    }

    handler.append(e);
    super.append(e);
  }

  public void fallThrough(byte[] val, Event e) throws IOException,
      InterruptedException {
    // default is pass to fallthrough sink
    fallthrough.append(e);
    super.append(e);
  }

  @Override
  public void close() throws IOException, InterruptedException {
    List<IOException> exs = new ArrayList<IOException>();

    for (S snk : split.values()) {
      try {
        snk.close();
      } catch (IOException ioe) {
        exs.add(ioe);
      }
    }

    if (!exs.isEmpty()) {
      throw MultipleIOException.createIOException(exs);
    }
  }

  @Override
  public void open() throws IOException, InterruptedException {
    List<IOException> exs = new ArrayList<IOException>();

    for (S snk : split.values()) {
      try {
        snk.open();
      } catch (IOException ioe) {
        exs.add(ioe);
      }
    }

    if (!exs.isEmpty()) {
      throw MultipleIOException.createIOException(exs);
    }
  }

  @Override
  public void getReports(String namePrefix, Map<String, ReportEvent> reports) {
    super.getReports(namePrefix, reports);
    int count = 0;
    for (S snk : split.values()) {
      snk.getReports(namePrefix + getName() + "." + count + ".", reports);
      count++;
    }
    fallthrough.getReports(namePrefix + getName() + ".fallthrough.", reports);
  }

}
TOP

Related Classes of com.cloudera.flume.core.DemuxSink

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.