pipeline.add("readTask", task1);
pipeline.add("transformTask", task2);
pipeline.add("writeTask", task3);
// Join these tasks in order to know the order of execution of the tasks
pipeline.join(task1, task2);
pipeline.join(task2, task3);
// Execute the Pipeline
pipeline.execute();