1 / 23

Exploiting Deadline Flexibility in Grid Workflow Rescheduling

Exploiting Deadline Flexibility in Grid Workflow Rescheduling. Wei Chen Alan Fekete Young Choon Lee. Agenda. Introduction Deadline Guaranteed Rescheduling Workflow Scheduling Task Rescheduling Performance Study Conclusion. 1. 2. 3. 4. 5. Computational Grid and Workflow Application.

zander
Download Presentation

Exploiting Deadline Flexibility in Grid Workflow Rescheduling

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Exploiting Deadline Flexibility in Grid Workflow Rescheduling Wei Chen Alan Fekete Young Choon Lee

  2. Agenda • Introduction • Deadline Guaranteed Rescheduling • Workflow Scheduling • Task Rescheduling • Performance Study • Conclusion

  3. 1 2 3 4 5 Computational Grid and Workflow Application • Computational Grid: • Heterogeneous Computing Site (Resource Instance) • Advance Reservation • Workflow Application • Directed Acyclic Graph (DAG) • Job (V, E), where V is the set of tasks and E is directed edges represent precedence constraints between corresponding tasks

  4. Grid Workflow Scheduling • List scheduling heuristics • Heterogeneous Earliest-Finish-Time (HEFT) • Greedy Best-First Strategy • It lacks an overall consideration in scheduling different workflow jobs

  5. Agenda • Introduction • Deadline Guaranteed Rescheduling • Workflow Scheduling • Task Rescheduling • Performance Study • Conclusion

  6. The Approach we build on: Deadline Guaranteed Rescheduling (DGR) • Deadline-based scheduling: it allows each job to come with a deadline, and from this, each task of the job can be placed more flexibly (not only at the earliest possible timeslot) • A rescheduling mechanism: the tasks of an earlier job might be rearranged to other time slots or resource instances, giving extra resource availability for more urgent tasks

  7. An Example of Scheduling and Rescheduling Workflow Jobs (A) 1 R1 R2 R3 R1 R2 R3 R1 R2 R3 A 1 A 1 A 1 2 3 B 1 B 1 A 2 A 2 4 A 3 A 3 A 3 B 2 B 2 B 3 5 B 3 A 2 A 2 B 4 A 4 A 4 A 4 (B) 1 Deadline (B) B 4 2 3 A 5 A 5 A 5 Deadline (A) 4 (a) (b) (c)

  8. The Key Points of Our Approach • First, our approach loosely distributes tasks along the time axis according to the deadline of the workflow job, but not squeezes them on the earliest finish time. It is more flexible in rescheduling to allow urgent tasks get required resource availability. • Second, our approach is not to reconsider schedules of the whole job again. Each task is rescheduled within a time slot boundary so that it does not affect the current schedules of all its predecessors and successors. This simplifies the complexity of our algorithm. • Third, our rescheduling can be made not only in time dimension (another time slot), but also in space dimension (different resource instances). This increases the flexibility in rescheduling. • Our rescheduling is to rearrange advance reservations of tasks before they are submitted for execution. This approach does not incur the cost in task migration.

  9. Agenda • Introduction • Deadline Guaranteed Rescheduling • Workflow Scheduling • Task Rescheduling • Performance Study • Conclusion

  10. Task Deadlines • Weighted DAG • An advisable deadline for each task • The deadline of a workflow job can be guaranteed if all of its tasks are finished before their deadlines. These advisable deadlines reasonably balance the time for each task based on their workload proportions.

  11. Scheduling Algorithm Input a DAG Output scheduling of the job calculate deadlines for each task; rank tasks into a priority list for each task in the list do schedule task within its deadline if it fails then schedule task in the earliest finish time if this finish time > job’s deadline then break the loop end if end for if scheduling is not done then rollback schedules have been made for each task in the list do schedule task in the earliest finish time if this finish time > job’s deadline then reject the job end for end if

  12. Agenda • Introduction • Deadline Guaranteed Rescheduling • Workflow Scheduling • Task Rescheduling • Performance Study • Conclusion

  13. Time Slot Boundary • The time slot boundary is calculated when a task tries to be rescheduled on a specific resource instance • At the moment, the actual schedules of the task’s predecessors and successors are known • Since the target resource is specified, the actual network bandwidths between the resource instance and that of the task’s predecessors or successors are also known

  14. Bipartite Graph Matching • We make all tasks one part of nodes T (no matter which workflow job the task belongs to), and all resource instances the other part R. • Every task is linked with all its satisfiable resources. The arrow of the line shows whether the task has been scheduled on (or matched with) a resource instance, which is represented by an arrow pointing to the task. T R T R T R 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 (a) (b) (c)

  15. Rescheduling Algorithm Input a task Output scheduling of the task push the task into an empty stack S while S is not empty pop a task from S for each satisfiable resource of the task do calculate EST and LFT if it can be scheduled in the boundary then return: the scheduling else if a task can be removed then push it into S end if end for end while return: scheduling fails

  16. Agenda • Introduction • Deadline Guaranteed Rescheduling • Workflow Scheduling • Task Rescheduling • Performance Study • Conclusion

  17. Experiment Setup • Heterogeneous Grid • 1,000 heterogeneous computing sites • Different setting in resource properties, computation capacity and speed • Computing sites are fully connected by varying network bandwidths • Workflow Jobs • various sizes and parallelism degrees • both computation intensive and communication intensive ones • some are more urgent than others

  18. Acceptance Rate

  19. Resource Utilization

  20. Running Time of Algorithms

  21. Agenda • Introduction • Deadline Guaranteed Rescheduling • Workflow Scheduling • Task Rescheduling • Performance Study • Conclusion

  22. Conclusion • A deadline-based strategy to schedule and reschedule workflow jobs; individual tasks can be rescheduled, based on the requirements of later jobs as they arrive. • The approach satisfies Grid users as more jobs can be finished before their deadlines, and it also benefits the Grid owner by improving resource utilization. • By using appropriate heuristics, the cost of the scheduling decision-making is quite acceptable and scalable to a large number of tasks scheduled in the system.

  23. Thanks Questions

More Related