pagerankvm
play

PageRankVM A PageRank Based Algorithm with Anti-Collocation - PowerPoint PPT Presentation

PageRankVM A PageRank Based Algorithm with Anti-Collocation Constraints for Virtual Machine Placement in Cloud Datacenters Zhuozhao Li Haiying Shen Cole Miles University of Virginia July 3, 2018 1 / 19 Virtual Machine Placement In a cloud


  1. PageRankVM A PageRank Based Algorithm with Anti-Collocation Constraints for Virtual Machine Placement in Cloud Datacenters Zhuozhao Li Haiying Shen Cole Miles University of Virginia July 3, 2018 1 / 19

  2. Virtual Machine Placement In a cloud datacenter, one wants to satisfy demands for varying types of virtual machines while utilizing as few physical machines as possible. . . . ? . . . 2 / 19

  3. Virtual Machine Placement Problem Statement Model both VMs and PMs as vectors, where each dimension is a different resource.   CPU Example: Write machine resources as Memory     Disk           1 2 4         VMs = 1 3 PMs = 4        ,      2 2 4         3 / 19

  4. Virtual Machine Placement Problem Statement Model both VMs and PMs as vectors, where each dimension is a different resource.   CPU Example: Write machine resources as Memory     Disk           1 2 4         VMs = 1 3 PMs = 4        ,      2 2 4         � � � � , 3 / 19

  5. Virtual Machine Placement Anti-Collocation Constraints In addition, we want to satisfy sets of anti-collocation constraints on certain resources. Solution Treat anti-collocation constrained resources as multiple dimensions in the resource vector 4 / 19

  6. Virtual Machine Placement Anti-Collocation Constraints In addition, we want to satisfy sets of anti-collocation constraints on certain resources. Solution Treat anti-collocation constrained resources as multiple dimensions in the resource vector Permuting same ≡ resource type OK: 4 / 19

  7. Virtual Machine Placement Vector Bin Packing The problem of allocating VMs to physical machines in datacenters is analogous to the vector bin packing problem VMs . . . Pack . . . PMs 5 / 19

  8. Virtual Machine Placement Vector Bin Packing The problem of allocating VMs to physical machines in datacenters is analogous to the vector bin packing problem VMs . . . Pack . . . PMs Issue: Vector Bin Packing is an NP-Hard problem! 5 / 19

  9. Virtual Machine Placement Vector Bin Packing - Differences However, the VM packing problem deviates from standard vector bin packing in a few ways ◮ Don’t know full set of vectors to pack at a single time ◮ Vectors are pulled from a fixed, known set we decide upon ◮ Allowed to permute some dimensions of the vector (CPU cores) 6 / 19

  10. Previous Solutions Try to maximize PM usage or minimize PM variance ◮ First Fit - Assign VM to first PM it fits into ◮ First Fit Decreasing Sum - Assign VM to the PM whose resource utilization is highest ◮ CompVM (Dot Product) ◮ Integer Linear Programming 7 / 19

  11. Previous Solutions Try to maximize PM usage or minimize PM variance ◮ First Fit - Assign VM to first PM it fits into ◮ First Fit Decreasing Sum - Assign VM to the PM whose resource utilization is highest ◮ CompVM (Dot Product) ◮ Integer Linear Programming Do not account for resource imbalances Unusable resources! 7 / 19

  12. Previous Solutions Try to maximize PM usage or minimize PM variance ◮ First Fit - Assign VM to first PM it fits into ◮ First Fit Decreasing Sum - Assign VM to the PM whose resource utilization is highest ◮ CompVM (Dot Product) ◮ Integer Linear Programming Assigns VMs to complementary PMs, but is not aware of the set of VM types or the best final PM state 7 / 19

  13. Previous Solutions Try to maximize PM usage or minimize PM variance ◮ First Fit - Assign VM to first PM it fits into ◮ First Fit Decreasing Sum - Assign VM to the PM whose resource utilization is highest ◮ CompVM (Dot Product) ◮ Integer Linear Programming Too slow for large problem instances 7 / 19

  14. Desired Solution Goal Minimize the number of wasted resources in each dimension. ◮ Needs to be efficient at assignment time ◮ Capable of handling anti-collocation constraints ◮ Minimizes the total number of PMs used 8 / 19

  15. PageRankVM Profile Graph Idea Describe each possible state of a PM as a profile . Link these together into a graph based on possible transitions between states. Example Let VMs = { [1 , 1 , 1 , 1] , [1 , 2 , 1 , 1] , [1 , 1 , 2 , 2] } . � � , , Let PMs = { [4 , 4 , 4 , 4] } . � � 9 / 19

  16. PageRankVM Profile Graph

  17. PageRankVM Profile Graph

  18. PageRankVM Profile Graph

  19. PageRankVM Profile Graph

  20. PageRankVM Profile Graph Same profile!

  21. PageRankVM Profile Graph

  22. PageRankVM Profile Graph

  23. PageRankVM Profile Graph

  24. PageRankVM Profile Graph

  25. PageRankVM Profile Graph 10 / 19

  26. Desired Metric Qualities 11 / 19

  27. Desired Metric Qualities Want to rank each profile based on ◮ how connected it is to higher-utilization profiles ◮ how flexible the profile is to accommodating various VM types 11 / 19

  28. Desired Metric Qualities Want to rank each profile based on ◮ how connected it is to higher-utilization profiles ◮ how flexible the profile is to accommodating various VM types = ⇒ PageRank! 11 / 19

  29. PageRank Initialize PageRanks uniformly PR ( p i ; 0) = 1 N At each time step update as PR ( p i ; t +1) = 1 − d PR ( p j ; t ) � + d L ( p j ) N p j ∈ M ( p i ) 12 / 19

  30. PageRank On Our Profile Graph 13 / 19

  31. PageRank 0 . 018 On Our Profile Graph 0 . 034 0 . 018 0 . 018 0 . 032 0 . 022 0 . 088 0 . 046 0 . 032 0 . 018 0 . 267 0 . 091 0 . 123 13 / 19

  32. PageRankVM At assignment time Out of your active PMs, assign the VM to the PM whose resulting profile has the highest PageRank. Activate more PMs if current set of PMs gets too full 14 / 19

  33. PageRankVM At assignment time Out of your active PMs, assign the VM to the PM whose resulting profile has the highest PageRank. Activate more PMs if current set of PMs gets too full Example ← PMs ← VM to place 14 / 19

  34. Experiments Simulation ◮ PM Usage ◮ VM Migrations ◮ Energy Consumption ◮ SLO Violations Real Testbed ◮ PM Usage ◮ VM Migrations ◮ SLO Violations 15 / 19

  35. Experiment Simulation Simulation performed on CloudSim using VM and PM types below. 16 / 19

  36. Experiment CloudSim 3000 VMs were allocated in batches of 1000. CPU utilization of VMs were given by two public traces. Results are averaged over 100 trials. PM Usage FF FFDSum CompVM PageRankVM FF FFDSum CompVM PageRankVM 2000 1200 Number of PMs Number of PMs 1000 1500 800 1000 600 400 500 200 0 0 1000 2000 3000 1000 2000 3000 Number of VMs Number of VMs (a) PlanetLab (b) Google Cluster VM Migrations FF FFDSum CompVM PageRankVM FF FFDSum CompVM PageRankVM 350 1200 Number of migrations Number of migrations 300 1000 250 800 200 600 150 400 100 200 50 0 0 1000 2000 3000 1000 2000 3000 Number of VMs Number of VMs (a) PlanetLab (b) Google Cluster 17 / 19

  37. Summary PageRankVM is a heuristic VM placement algorithm that: ◮ Reduces the total number of PMs needed to host VM demands ◮ Satisfies anti-collocation constraints by considering VM permutations ◮ Has very low placement-time cost 18 / 19

  38. Questions ? 19 / 19

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend