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

org.apache.flume.api.RpcClient Maven / Gradle / Ivy

There is a newer version: 4.15.0-HBase-1.5
Show newest version
/*
 * 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.api;

import java.util.List;

import org.apache.flume.Event;
import org.apache.flume.EventDeliveryException;
import org.apache.flume.FlumeException;

/**
 * 

Public client interface for sending data to Flume.

* *

This interface is intended not to change incompatibly for Flume 1.x.

* *

Note: It is recommended for applications to construct * {@link RpcClient} instances using the {@link RpcClientFactory} class, * instead of using builders associated with a particular implementation class. *

* * @see org.apache.flume.api.RpcClientFactory */ public interface RpcClient { /** * Returns the maximum number of {@link Event events} that may be batched * at once by {@link #appendBatch(List) appendBatch()}. */ public int getBatchSize(); /** *

Send a single {@link Event} to the associated Flume source.

* *

This method blocks until the RPC returns or until the request times out. *

* *

Note: If this method throws an * {@link EventDeliveryException}, there is no way to recover and the * application must invoke {@link #close()} on this object to clean up system * resources.

* * @param event * @return * @throws EventDeliveryException when an error prevents event delivery. */ public void append(Event event) throws EventDeliveryException; /** *

Send a list of {@linkplain Event events} to the associated Flume source. *

* *

This method blocks until the RPC returns or until the request times out. *

* *

It is strongly recommended that the number of events in the List be no * more than {@link #getBatchSize()}. If it is more, multiple RPC calls will * be required, and the likelihood of duplicate Events being stored will * increase.

* *

Note: If this method throws an * {@link EventDeliveryException}, there is no way to recover and the * application must invoke {@link #close()} on this object to clean up system * resources.

* * @param events List of events to send * @return * @throws EventDeliveryException when an error prevents event delivery. */ public void appendBatch(List events) throws EventDeliveryException; /** *

Returns {@code true} if this object appears to be in a usable state, and * it returns {@code false} if this object is permanently disabled.

* *

If this method returns {@code false}, an application must call * {@link #close()} on this object to clean up system resources.

*/ public boolean isActive(); /** *

Immediately closes the client so that it may no longer be used.

* *

Note: This method MUST be called by applications * when they are done using the RPC client in order to clean up resources.

* *

Multi-threaded applications may want to gracefully stop making * RPC calls before calling close(). Otherwise, they risk getting * {@link EventDeliveryException} thrown from their in-flight calls when the * underlying connection is disabled.

*/ public void close() throws FlumeException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy