摘要:
Flume有三个组件:Source、Channel 和 Sink。在源码中对应同名的三个接口。When a Flume source receives an event, it stores it into one or more channels. The channel is a passive store that keeps the event until it’s consumed by a Flume sink.public interface Source extends LifecycleAware, NamedComponent { /** * Specifies wh... 阅读全文