Batch Cascade application
Posted by
Puneet Kinra-2 on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Batch-Cascade-application-tp18260.html
Hi
I am working on batch application i which once the data is get loaded into the Memory
second job should only run once first job is finished.
boolean contactHistoryLoading=bonusPointBatch.contactHistoryLoading(jsonFileReader,cache);
if(contactHistoryLoading)
{
bonusPointBatch.transcationLoading(jsonFileReader, cache);
}
but in the plan it is show only two operators ideally it show 4 operators
2 from each job.
--