public class FlumeUtils
extends java.lang.Object
Constructor and Description |
---|
FlumeUtils() |
Modifier and Type | Method and Description |
---|---|
static JavaReceiverInputDStream<SparkFlumeEvent> |
createPollingStream(JavaStreamingContext jssc,
java.net.InetSocketAddress[] addresses,
StorageLevel storageLevel)
Creates an input stream that is to be used with the Spark Sink deployed on a Flume agent.
|
static JavaReceiverInputDStream<SparkFlumeEvent> |
createPollingStream(JavaStreamingContext jssc,
java.net.InetSocketAddress[] addresses,
StorageLevel storageLevel,
int maxBatchSize,
int parallelism)
Creates an input stream that is to be used with the Spark Sink deployed on a Flume agent.
|
static JavaReceiverInputDStream<SparkFlumeEvent> |
createPollingStream(JavaStreamingContext jssc,
java.lang.String hostname,
int port)
Creates an input stream that is to be used with the Spark Sink deployed on a Flume agent.
|
static JavaReceiverInputDStream<SparkFlumeEvent> |
createPollingStream(JavaStreamingContext jssc,
java.lang.String hostname,
int port,
StorageLevel storageLevel)
Creates an input stream that is to be used with the Spark Sink deployed on a Flume agent.
|
static ReceiverInputDStream<SparkFlumeEvent> |
createPollingStream(StreamingContext ssc,
scala.collection.Seq<java.net.InetSocketAddress> addresses,
StorageLevel storageLevel)
Creates an input stream that is to be used with the Spark Sink deployed on a Flume agent.
|
static ReceiverInputDStream<SparkFlumeEvent> |
createPollingStream(StreamingContext ssc,
scala.collection.Seq<java.net.InetSocketAddress> addresses,
StorageLevel storageLevel,
int maxBatchSize,
int parallelism)
Creates an input stream that is to be used with the Spark Sink deployed on a Flume agent.
|
static ReceiverInputDStream<SparkFlumeEvent> |
createPollingStream(StreamingContext ssc,
java.lang.String hostname,
int port,
StorageLevel storageLevel)
Creates an input stream that is to be used with the Spark Sink deployed on a Flume agent.
|
static JavaReceiverInputDStream<SparkFlumeEvent> |
createStream(JavaStreamingContext jssc,
java.lang.String hostname,
int port)
Creates a input stream from a Flume source.
|
static JavaReceiverInputDStream<SparkFlumeEvent> |
createStream(JavaStreamingContext jssc,
java.lang.String hostname,
int port,
StorageLevel storageLevel)
Creates a input stream from a Flume source.
|
static JavaReceiverInputDStream<SparkFlumeEvent> |
createStream(JavaStreamingContext jssc,
java.lang.String hostname,
int port,
StorageLevel storageLevel,
boolean enableDecompression)
Creates a input stream from a Flume source.
|
static ReceiverInputDStream<SparkFlumeEvent> |
createStream(StreamingContext ssc,
java.lang.String hostname,
int port,
StorageLevel storageLevel)
Create a input stream from a Flume source.
|
static ReceiverInputDStream<SparkFlumeEvent> |
createStream(StreamingContext ssc,
java.lang.String hostname,
int port,
StorageLevel storageLevel,
boolean enableDecompression)
Create a input stream from a Flume source.
|
public static ReceiverInputDStream<SparkFlumeEvent> createStream(StreamingContext ssc, java.lang.String hostname, int port, StorageLevel storageLevel)
ssc
- StreamingContext objecthostname
- Hostname of the slave machine to which the flume data will be sentport
- Port of the slave machine to which the flume data will be sentstorageLevel
- Storage level to use for storing the received objectspublic static ReceiverInputDStream<SparkFlumeEvent> createStream(StreamingContext ssc, java.lang.String hostname, int port, StorageLevel storageLevel, boolean enableDecompression)
ssc
- StreamingContext objecthostname
- Hostname of the slave machine to which the flume data will be sentport
- Port of the slave machine to which the flume data will be sentstorageLevel
- Storage level to use for storing the received objectsenableDecompression
- should netty server decompress input streampublic static JavaReceiverInputDStream<SparkFlumeEvent> createStream(JavaStreamingContext jssc, java.lang.String hostname, int port)
hostname
- Hostname of the slave machine to which the flume data will be sentport
- Port of the slave machine to which the flume data will be sentjssc
- (undocumented)public static JavaReceiverInputDStream<SparkFlumeEvent> createStream(JavaStreamingContext jssc, java.lang.String hostname, int port, StorageLevel storageLevel)
hostname
- Hostname of the slave machine to which the flume data will be sentport
- Port of the slave machine to which the flume data will be sentstorageLevel
- Storage level to use for storing the received objectsjssc
- (undocumented)public static JavaReceiverInputDStream<SparkFlumeEvent> createStream(JavaStreamingContext jssc, java.lang.String hostname, int port, StorageLevel storageLevel, boolean enableDecompression)
hostname
- Hostname of the slave machine to which the flume data will be sentport
- Port of the slave machine to which the flume data will be sentstorageLevel
- Storage level to use for storing the received objectsenableDecompression
- should netty server decompress input streamjssc
- (undocumented)public static ReceiverInputDStream<SparkFlumeEvent> createPollingStream(StreamingContext ssc, java.lang.String hostname, int port, StorageLevel storageLevel)
hostname
- Address of the host on which the Spark Sink is runningport
- Port of the host at which the Spark Sink is listeningstorageLevel
- Storage level to use for storing the received objectsssc
- (undocumented)public static ReceiverInputDStream<SparkFlumeEvent> createPollingStream(StreamingContext ssc, scala.collection.Seq<java.net.InetSocketAddress> addresses, StorageLevel storageLevel)
addresses
- List of InetSocketAddresses representing the hosts to connect to.storageLevel
- Storage level to use for storing the received objectsssc
- (undocumented)public static ReceiverInputDStream<SparkFlumeEvent> createPollingStream(StreamingContext ssc, scala.collection.Seq<java.net.InetSocketAddress> addresses, StorageLevel storageLevel, int maxBatchSize, int parallelism)
addresses
- List of InetSocketAddresses representing the hosts to connect to.maxBatchSize
- Maximum number of events to be pulled from the Spark sink in a
single RPC callparallelism
- Number of concurrent requests this stream should send to the sink. Note
that having a higher number of requests concurrently being pulled will
result in this stream using more threadsstorageLevel
- Storage level to use for storing the received objectsssc
- (undocumented)public static JavaReceiverInputDStream<SparkFlumeEvent> createPollingStream(JavaStreamingContext jssc, java.lang.String hostname, int port)
hostname
- Hostname of the host on which the Spark Sink is runningport
- Port of the host at which the Spark Sink is listeningjssc
- (undocumented)public static JavaReceiverInputDStream<SparkFlumeEvent> createPollingStream(JavaStreamingContext jssc, java.lang.String hostname, int port, StorageLevel storageLevel)
hostname
- Hostname of the host on which the Spark Sink is runningport
- Port of the host at which the Spark Sink is listeningstorageLevel
- Storage level to use for storing the received objectsjssc
- (undocumented)public static JavaReceiverInputDStream<SparkFlumeEvent> createPollingStream(JavaStreamingContext jssc, java.net.InetSocketAddress[] addresses, StorageLevel storageLevel)
addresses
- List of InetSocketAddresses on which the Spark Sink is running.storageLevel
- Storage level to use for storing the received objectsjssc
- (undocumented)public static JavaReceiverInputDStream<SparkFlumeEvent> createPollingStream(JavaStreamingContext jssc, java.net.InetSocketAddress[] addresses, StorageLevel storageLevel, int maxBatchSize, int parallelism)
addresses
- List of InetSocketAddresses on which the Spark Sink is runningmaxBatchSize
- The maximum number of events to be pulled from the Spark sink in a
single RPC callparallelism
- Number of concurrent requests this stream should send to the sink. Note
that having a higher number of requests concurrently being pulled will
result in this stream using more threadsstorageLevel
- Storage level to use for storing the received objectsjssc
- (undocumented)