| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of NamedComponent in org.apache.flume | 
|---|
| Subinterfaces of NamedComponent in org.apache.flume | |
|---|---|
|  interface | ChannelA channel connects a Sourceto aSink. | 
|  interface | ChannelSelectorAllows the selection of a subset of channels from the given set based on its implementation policy. | 
|  interface | EventDrivenSourceA Sourcethat does not need an external driver to poll for
 events to ingest; it provides its own event-driven
 mechanism to invoke event processing. | 
|  interface | PollableSourceA Sourcethat requires an external driver to poll to determine
 whether there are events that are available to ingest
 from the source. | 
|  interface | SinkA sink is connected to a Channel and consumes its contents, sending them to a configured destination that may vary according to the sink type. | 
|  interface | SourceA source generates and calls methods on the configured ChannelProcessorto persist those events into the
 configured channels. | 
| Uses of NamedComponent in org.apache.flume.agent.embedded | 
|---|
| Classes in org.apache.flume.agent.embedded that implement NamedComponent | |
|---|---|
|  class | EmbeddedSourceSimple source used to allow direct access to the channel for the Embedded Agent. | 
| Uses of NamedComponent in org.apache.flume.channel | 
|---|
| Classes in org.apache.flume.channel that implement NamedComponent | |
|---|---|
|  class | AbstractChannel | 
|  class | AbstractChannelSelector | 
|  class | BasicChannelSemanticsAn implementation of basic Channelsemantics, including the
 implied thread-local semantics of theTransactionclass,
 which is required to extendBasicTransactionSemantics. | 
|  class | MemoryChannelMemoryChannel is the recommended channel to use when speeds which writing to disk is impractical is required or durability of data is not required. | 
|  class | MultiplexingChannelSelector | 
|  class | PseudoTxnMemoryChannelA capacity-capped Channelimplementation that supports in-memory
 buffering and delivery of events. | 
|  class | ReplicatingChannelSelectorReplicating channel selector. | 
|  class | SpillableMemoryChannelSpillableMemoryChannel will use main memory for buffering events until it has reached capacity. | 
| Uses of NamedComponent in org.apache.flume.channel.file | 
|---|
| Classes in org.apache.flume.channel.file that implement NamedComponent | |
|---|---|
|  class | FileChannelA durable Channelimplementation that uses the local file system for
 its storage. | 
| Uses of NamedComponent in org.apache.flume.channel.jdbc | 
|---|
| Classes in org.apache.flume.channel.jdbc that implement NamedComponent | |
|---|---|
|  class | JdbcChannelA JDBC based channel implementation. | 
| Uses of NamedComponent in org.apache.flume.channel.kafka | 
|---|
| Classes in org.apache.flume.channel.kafka that implement NamedComponent | |
|---|---|
|  class | KafkaChannel | 
| Uses of NamedComponent in org.apache.flume.sink | 
|---|
| Classes in org.apache.flume.sink that implement NamedComponent | |
|---|---|
|  class | AbstractRpcSinkThis sink provides the basic RPC functionality for Flume. | 
|  class | AbstractSink | 
|  class | AvroSinkA Sinkimplementation that can send events to an RPC server (such as
 Flume'sAvroSource). | 
|  class | LoggerSinkA Sinkimplementation that logs all events received at the INFO level
 to the org.apache.flume.sink.LoggerSink logger. | 
|  class | NullSinkA Sinkimplementation that simply discards all events it receives. | 
|  class | RollingFileSink | 
|  class | ThriftSinkA Sinkimplementation that can send events to an RPC server (such as
 Flume'sThriftSource). | 
| Uses of NamedComponent in org.apache.flume.sink.elasticsearch | 
|---|
| Classes in org.apache.flume.sink.elasticsearch that implement NamedComponent | |
|---|---|
|  class | ElasticSearchSinkA sink which reads events from a channel and writes them to ElasticSearch based on the work done by https://github.com/Aconex/elasticflume.git. | 
| Uses of NamedComponent in org.apache.flume.sink.hbase | 
|---|
| Classes in org.apache.flume.sink.hbase that implement NamedComponent | |
|---|---|
|  class | AsyncHBaseSinkA simple sink which reads events from a channel and writes them to HBase. | 
|  class | HBaseSinkA simple sink which reads events from a channel and writes them to HBase. | 
| Uses of NamedComponent in org.apache.flume.sink.hdfs | 
|---|
| Classes in org.apache.flume.sink.hdfs that implement NamedComponent | |
|---|---|
|  class | HDFSEventSink | 
| Uses of NamedComponent in org.apache.flume.sink.hive | 
|---|
| Classes in org.apache.flume.sink.hive that implement NamedComponent | |
|---|---|
|  class | HiveSink | 
| Uses of NamedComponent in org.apache.flume.sink.irc | 
|---|
| Classes in org.apache.flume.sink.irc that implement NamedComponent | |
|---|---|
|  class | IRCSink | 
| Uses of NamedComponent in org.apache.flume.sink.kafka | 
|---|
| Classes in org.apache.flume.sink.kafka that implement NamedComponent | |
|---|---|
|  class | KafkaSinkA Flume Sink that can publish messages to Kafka. | 
| Uses of NamedComponent in org.apache.flume.sink.kite | 
|---|
| Classes in org.apache.flume.sink.kite that implement NamedComponent | |
|---|---|
|  class | DatasetSinkSink that writes events to a Kite Dataset. | 
| Uses of NamedComponent in org.apache.flume.sink.solr.morphline | 
|---|
| Classes in org.apache.flume.sink.solr.morphline that implement NamedComponent | |
|---|---|
|  class | MorphlineSinkFlume sink that extracts search documents from Flume events and processes them using a morphline Commandchain. | 
|  class | MorphlineSolrSinkFlume sink that extracts search documents from Flume events, processes them using a morphline Commandchain, and loads them into Apache Solr. | 
| Uses of NamedComponent in org.apache.flume.source | 
|---|
| Classes in org.apache.flume.source that implement NamedComponent | |
|---|---|
|  class | AbstractEventDrivenSourceBase class which ensures sub-classes will inherit all the properties of BasicSourceSemantics. | 
|  class | AbstractPollableSourceBase class which ensures sub-classes will inherit all the properties of BasicSourceSemantics in addition to: Ensuring when configure/start throw an exception process will not be called Ensure that process will not be called unless configure and start have successfully been called | 
|  class | AbstractSource | 
|  class | AvroSourceA Sourceimplementation that receives Avro events from clients that
 implementAvroSourceProtocol. | 
|  class | BasicSourceSemanticsAlternative to AbstractSource, which: Ensure configure cannot be called while started Exceptions thrown during configure, start, stop put source in ERROR state Exceptions thrown during start, stop will be logged but not re-thrown. Exception in configure disables starting | 
|  class | ExecSourceA Sourceimplementation that executes a Unix process and turns each
 line of text into an event. | 
|  class | MultiportSyslogTCPSource | 
|  class | NetcatSourceA netcat-like source that listens on a given port and turns each line of text into an event. | 
|  class | SequenceGeneratorSource | 
|  class | SpoolDirectorySource | 
|  class | StressSourceStressSource is an internal load-generating source implementation which is very useful for stress tests. | 
|  class | SyslogTcpSource | 
|  class | SyslogUDPSource | 
|  class | ThriftSource | 
| Uses of NamedComponent in org.apache.flume.source.avroLegacy | 
|---|
| Classes in org.apache.flume.source.avroLegacy that implement NamedComponent | |
|---|---|
|  class | AvroLegacySourceA Sourceimplementation that receives Avro events from Avro sink of
 Flume OG | 
| Uses of NamedComponent in org.apache.flume.source.http | 
|---|
| Classes in org.apache.flume.source.http that implement NamedComponent | |
|---|---|
|  class | HTTPSourceA source which accepts Flume Events by HTTP POST and GET. | 
| Uses of NamedComponent in org.apache.flume.source.jms | 
|---|
| Classes in org.apache.flume.source.jms that implement NamedComponent | |
|---|---|
|  class | JMSSource | 
| Uses of NamedComponent in org.apache.flume.source.kafka | 
|---|
| Classes in org.apache.flume.source.kafka that implement NamedComponent | |
|---|---|
|  class | KafkaSourceA Source for Kafka which reads messages from a kafka topic. | 
| Uses of NamedComponent in org.apache.flume.source.scribe | 
|---|
| Classes in org.apache.flume.source.scribe that implement NamedComponent | |
|---|---|
|  class | ScribeSourceFlume should adopt the Scribe entry LogEntryfrom existing
 Scribe system. | 
| Uses of NamedComponent in org.apache.flume.source.thriftLegacy | 
|---|
| Classes in org.apache.flume.source.thriftLegacy that implement NamedComponent | |
|---|---|
|  class | ThriftLegacySource | 
| Uses of NamedComponent in org.apache.flume.source.twitter | 
|---|
| Classes in org.apache.flume.source.twitter that implement NamedComponent | |
|---|---|
|  class | TwitterSourceDemo Flume source that connects via Streaming API to the 1% sample twitter firehose, continously downloads tweets, converts them to Avro format and sends Avro events to a downstream Flume sink. | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||