All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flume.sink.hbase.AsyncHbaseEventSerializer Maven / Gradle / Ivy

/*
 * 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.flume.sink.hbase;

import java.util.List;

import org.apache.flume.Event;
import org.apache.flume.conf.Configurable;
import org.apache.flume.conf.ConfigurableComponent;
import org.hbase.async.AtomicIncrementRequest;
import org.hbase.async.PutRequest;

/**
 * Interface for an event serializer which serializes the headers and body
 * of an event to write them to hbase. This is configurable, so any config
 * params required should be taken through this.
 * The table should be valid on the column family. An implementation
 * of this interface is expected by the {@linkplain AsyncHBaseSink} to serialize
 * the events.
 */
public interface AsyncHbaseEventSerializer extends Configurable,
ConfigurableComponent {

  /**
   * Initialize the event serializer.
   * @param table - The table the serializer should use when creating
   * {@link org.hbase.async.PutRequest} or
   * {@link org.hbase.async.AtomicIncrementRequest}.
   * @param cf - The column family to be used.
   */
  public void initialize(byte[] table, byte[] cf);

  /**
   * @param Event to be written to HBase.
   */
  public void setEvent(Event event);

  /**
   * Get the actions that should be written out to hbase as a result of this
   * event. This list is written to hbase.
   * @return List of {@link org.hbase.async.PutRequest} which
   * are written as such to HBase.
   *
   *
   */
  public List getActions();

  /**
   * Get the increments that should be made in hbase as a result of this
   * event. This list is written to hbase.
   * @return List of {@link org.hbase.async.AtomicIncrementRequest} which
   * are written as such to HBase.
   *
   *
   */
  public List getIncrements();

  /**
   * Clean up any state. This will be called when the sink is being stopped.
   */
  public void cleanUp();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy