Can MRS Run Multiple Flume Tasks at a Time?
The Flume client supports multiple independent data flows. You can configure and link multiple sources, channels, and sinks in the properties.properties configuration file. These components can be linked to form multiple flows.
The following is an example of configuring two data flows in a configuration file:
server.sources = source1 source2server.sinks = sink1 sink2server.channels = channel1 channel2#dataflow1server.sources.source1.channels = channel1server.sinks.sink1.channel = channel1#dataflow2server.sources.source2.channels = channel2server.sinks.sink2.channel = channel2
Parent topic: Big Data Service Development