utility that helps user to create a DAG starting with DataSourceTask
user should pass in a DataSource
here is an example to build a DAG that reads from Kafka source followed by word count
val source = new KafkaSource()
val sourceProcessor = DataSourceProcessor(source, 1)
val split = Processor[Split](1)
val sum = Processor[Sum](1)
val dag = sourceProcessor ~> split ~> sum
utility that helps user to create a DAG starting with DataSourceTask user should pass in a DataSource
here is an example to build a DAG that reads from Kafka source followed by word count