on selecting the right optimizations for virtual machine
play

On Selecting the Right Optimizations for Virtual Machine Migration - PowerPoint PPT Presentation

On Selecting the Right Optimizations for Virtual Machine Migration Senthil Nathan N , Umesh Bellur, Purushottam Kulkarni Systems and Networks Group (SynerG) Department of Computer Science and Engineering Indian Institute of Technology Bombay


  1. On Selecting the Right Optimizations for Virtual Machine Migration Senthil Nathan N , Umesh Bellur, Purushottam Kulkarni Systems and Networks Group (SynerG) Department of Computer Science and Engineering Indian Institute of Technology Bombay April 2, 2016 Virtual Execution Environments (VEE) 2016

  2. Pre-Copy Live Migration source PM destination PM copying VM's main memory VM VM memory pages Storage Area Network Stores VM's disk image VM is executing: Memory pages are transferred iteratively IIT Bombay 2/22

  3. Pre-Copy Live Migration source PM destination PM copying VM's main memory VM VM memory pages Storage Area Network Stores VM's disk image VM is executing: Memory pages are transferred iteratively pages dirtied pages dirtied remaining pages & in iter #1 in iter #(n-1) hardware state VM source PM iter #1 iter #2 iter #n stop VM's execution destination PM VM downtime migration time IIT Bombay 2/22

  4. Pre-Copy Live Migration source PM destination PM copying VM's main memory VM VM memory pages Storage Area Network Stores VM's disk image VM is executing: Memory pages are transferred iteratively pages dirtied pages dirtied remaining pages & in iter #1 in iter #(n-1) hardware state VM source PM iter #1 iter #2 iter #n stop VM's execution destination PM VM downtime migration time migration time(VM hosting file server) = 5 minutes IIT Bombay 2/22

  5. Existing Optimization Components for Pre-Copy Live Migration Page Dirty Characteristics page delta ( del ). 1 frequently/hot dirty pages ( hdp ). 2 Page Content Characteristics zero pages ( zp ) & sub zero pages ( szp ). 1 duplicate pages ( dup ) & sub duplicate pages ( sdup ). 2 word-level duplicates ( wld ). 3 We identifed a new component: False Dirty Page ( fdp ) IIT Bombay 3/22

  6. False Dirty Pages (fdp) Before Starting an Iteration During an Iteration User Space retrieve dirty reset dirty mark all pages of Transfer pages that are marked in & Migration bitmap bitmap VM as read only the received dirty bitmap Process Kernel Space 1. w rite VM’s read only page Hypervisor 2. set the dirty bit 3. mark the page writable An iteration can transfer a page that is already dirted during current iteration. 1 What happens if this page never get dirtied again before the next iteration? 2 An unmodified page is transferred: False Dirty Page. IIT Bombay 4/22

  7. Existing Optimizations Account for Techniques dirty characteristics content characteristics fdp del hdp zp szp dup sdup wld Delta Compression � � Page Skip � � Full Page Deduplication � � � Sub Page Deduplication � � � � � � Data Compression � � � False Dirty Page ( fdp ) is overlooked in existing study Question of Interest Which is the best technique in terms of performance & cost? 1 Does optimization’s performance depend on application behaviour? 2 What combinations of optimizations are more appropriate? 3 Can the combinations of optimizations reduce the resource cost? 4 fdp helps in answering these questions IIT Bombay 5/22

  8. Page Skip ITER. #1 ------------ ALL PAGES are scheduled to transfer in iter #1 Send List Collect n pages & transfer locate all pages dirtied during this transfer time IIT Bombay 6/22

  9. Page Skip ITER. #1 ITER. #1 ------------ ------------ ALL PAGES are scheduled to transfer in iter #1 ALL PAGES are scheduled to transfer in iter #1 Send List Send List Collect n pages & transfer Collect n pages & transfer locate all pages dirtied during this transfer time locate all pages dirtied during this transfer time denotes dirtied pages during the transfer of 'n' pages Send List Collect n pages & transfer dirtied pages yet to be transferred are skipped IIT Bombay 6/22

  10. Page Skip ITER. #1 ITER. #1 ------------ ------------ ALL PAGES are scheduled to transfer in iter #1 ALL PAGES are scheduled to transfer in iter #1 Send List Send List Collect n pages & transfer Collect n pages & transfer locate all pages dirtied during this transfer time locate all pages dirtied during this transfer time denotes dirtied pages during the transfer of 'n' pages Send List Collect n pages & transfer dirtied pages yet to be transferred are skipped Send List Collect <=n pages & transfer ITER. #2 ------------ Dirted pages during the transfer of 'n' pages ALL dirtied PAGES during iter #1 Send List ..... ..... ..... Collect n pages & transfer Eligible pages for skip: Pages dirtied in both iteration 1 and 2 IIT Bombay 6/22

  11. Our 3 Goals To perform a comprehensive empirical study to understand and compare 1 between performance and cost of different migration optimization techniques. To understand the relationship between application behavior and the 2 payback of different optimizations. To investigate the feasibility of combining optimizations so as to get the 3 maximum improvement in migration performance for unit resource cost. IIT Bombay 7/22

  12. Experimental Setup and Workloads Used for Evaluation source Table : Workloads: Web Services PM1 1 Gbps Workloads Remark Controller NFS VM logger Mediawiki, DVD webserver and Store, RUBiS database server migration switch load generator load generator NTP OLTPBench epinions, twitter, PM2 seats, voter, tpcc, Issue commands for VM tatp, ycsb VM creation, VM migration, logger CPU – Xentop Page dirtying rate, Network - /proc/net/dev HTTP file server 100s of files each Changing resource availability Page Dirty – shadow page destination with different sizes 42 applications, 7 different migration rates. 42 × 7 = 294 measured values. Table : Workloads: Multimedia, Biotech, Mining, MPI Workloads Remark gcc kernel compile with multiple threads File compression compress 8 GB data set with tar Linpack linear equation solver Nu-Minebench (data mining) ECLAT, HOP, ScalParC, UtilityMine Mummer gnome sequence alignment Parsec (multimedia tools) bodytrack, ferret, fluidanimate, freqmine, vips, and x264 Dacapo (java benchmarks) avrora, eclipse, fop, h2, jython, luindex, lusearch, pmd, sun- flow, tomcat, tradebeans, tradesoap, and xalan IIT Bombay 8/22

  13. Expectations on Optimization Performance Performance of Delta Compression & Page Skip ∝ Additional Network Traffic Generated Additional Traffic: MB 2000 additional network traffic 1500 1000 500 0 0 10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160 170 180 190 200 210 220 230 240 250 260 270 280 290 Migration ID d Performance of Deduplication ∝ Additional Network Traffic & the Amount of Zero, Duplicate Pages Performance of Data Compression ∝ Total Network Traffic & the Amount of Zero, Word Level Dup. IIT Bombay 9/22

  14. Methodology Apply each optimization individually on 294 migration instances. 1 If expectation fails, identify the reason (i.e., application behavior). 2 Compare performance & cost of each optimization and find 3 appropriate combinations. IIT Bombay 10/22

  15. Goal 1: Performance and Cost Trade-Off Techniques Increase in CPU at Avg. traffic reduction source PM destination PM Page Skip 20 % 1 x 1 x Data Compression 37 % 5 x 1.3 x Delta Compression 17 % 3.2 x 1.2 x Full Page Dedup. 17 % 11 x 1 x Sub Page Dedup. 20 % 13 x 1.2 x Page skip is the best optimization in terms of performance-cost tradeoff IIT Bombay 11/22

  16. Significant Traffic Reduction due to fdp & hdp 1 1 0.8 0.8 0.6 0.6 CDF CDF delta compression delta compression 0.4 0.4 page skip page skip full page deduplication full page deduplication 0.2 0.2 sub page deduplication (4) sub page deduplication (4) data compression 0 0 0 300 600 900 1200 0 300 600 900 1200 Traffic Reduction (MB) Traffic reduction (in MB) (a)Total traffic reduction (b)Traffic reduction (fdp+hdp) Observations: Reduction in network traffic Reduction due to data compression is significant. On average, 40% reduction due to False Dirty Pages (fdp). Approximately, 53% reduction due to Hot Dirty Pages (hdp). IIT Bombay 12/22

  17. Goal 2 : Co-relation Between Application Behavior and Optimization’s Performance Techniques Low performance when high dirty frequency, high disk read, memset(),free() Delta Compression Page Skip page dirty rate << migration rate and large writable set size Deduplication high dirty frequency and low dup+zp Data Compression low word level duplicates & zero content IIT Bombay 13/22

  18. Delta Compression: Impact of Application Behaviour IIT Bombay 14/22

  19. Delta Compression: Impact of Application Behaviour fdp ∝ 1 d f high d f = ⇒ improvement depedentent of page modification size. disk read , memset() , free() modified all 4 KB. IIT Bombay 14/22

  20. Goal 3 : Appropriate Combinations—Page Skip as Base Optimization Page Skip + Total Increase in CPU at Reduction in traffic (over skip) source PM destination PM Data Compression 21 % 4.7 x (-.3) 1.3 x Delta Compression 1.4 % 2.7 x (-.5) 1 x Full Page Dedup. 7 % 10.8 x (-.2) 1 x Sub Page Dedup. 9 % 13 x 1.2 x Page Skip + Data Compression is the best combination in terms of performance-cost tradeoff IIT Bombay 15/22

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