|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.flume.source.AbstractSource
org.apache.flume.source.kafka.KafkaSource
public class KafkaSource
A Source for Kafka which reads messages from a kafka topic. zookeeperConnect: Kafka's zookeeper connection string. Required
groupId: the group ID of consumer group. Required
topic: the topic to consume messages from. Required
maxBatchSize: Maximum number of messages written to Channel in one batch. Default: 1000
maxBatchDurationMillis: Maximum number of milliseconds before a batch (of any size) will be written to a channel. Default: 1000
kafka.auto.commit.enable: If true, commit automatically every time period. if false, commit on each batch. Default: false
kafka.consumer.timeout.ms: Polling interval for new data for batch. Low value means more CPU usage. High value means the time.upper.limit may be missed. Default: 10 Any property starting with "kafka" will be passed to the kafka consumer So you can use any configuration supported by Kafka 0.8.1.1
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface org.apache.flume.PollableSource |
|---|
PollableSource.Status |
| Constructor Summary | |
|---|---|
KafkaSource()
|
|
| Method Summary | |
|---|---|
void |
configure(Context context)
We configure the source and generate properties for the Kafka Consumer Kafka Consumer properties are generated as follows: 1. |
PollableSource.Status |
process()
Attempt to pull an item from the source, sending it to the channel. |
void |
start()
Starts a service or component. |
void |
stop()
Stops a service or component. |
| Methods inherited from class org.apache.flume.source.AbstractSource |
|---|
getChannelProcessor, getLifecycleState, getName, setChannelProcessor, setName, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.apache.flume.Source |
|---|
getChannelProcessor, setChannelProcessor |
| Methods inherited from interface org.apache.flume.lifecycle.LifecycleAware |
|---|
getLifecycleState |
| Methods inherited from interface org.apache.flume.NamedComponent |
|---|
getName, setName |
| Constructor Detail |
|---|
public KafkaSource()
| Method Detail |
|---|
public PollableSource.Status process()
throws EventDeliveryException
PollableSourceAttempt to pull an item from the source, sending it to the channel.
When driven by an EventDrivenSourceRunner process is guaranteed
to be called only by a single thread at a time, with no concurrency.
Any other mechanism driving a pollable source must follow the same
semantics.
process in interface PollableSourceREADY if one or more events were created from the source.
BACKOFF if no events could be created from the source.
EventDeliveryException - If there was a failure in delivering to
the attached channel, or if a failure occurred in acquiring data from
the source.public void configure(Context context)
configure in interface Configurablecontext - public void start()
LifecycleAwareStarts a service or component.
Implementations should determine the result of any start logic and effect
the return value of LifecycleAware.getLifecycleState() accordingly.
start in interface LifecycleAwarestart in class AbstractSourcepublic void stop()
LifecycleAwareStops a service or component.
Implementations should determine the result of any stop logic and effect
the return value of LifecycleAware.getLifecycleState() accordingly.
stop in interface LifecycleAwarestop in class AbstractSource
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||