deterministic container resource management in derivative
play

Deterministic Container Resource Management in Derivative Clouds - PowerPoint PPT Presentation

Deterministic Container Resource Management in Derivative Clouds Chandra Prakash, Prashanth, Umesh Bellur, Purushottam Kulkarni Department of Computer Science and Engineering Indian Institute of Technology Bombay 19 th April, 2018 International


  1. Deterministic Container Resource Management in Derivative Clouds Chandra Prakash, Prashanth, Umesh Bellur, Purushottam Kulkarni Department of Computer Science and Engineering Indian Institute of Technology Bombay 19 th April, 2018 International Conference on Cloud Engineering Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 1 / 26

  2. Derivative cloud Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 2 / 26

  3. Dual control over resources ◮ Hypervisor and guest OS both control the same resources ◮ Hypervisor not aware of containers requirements Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 3 / 26

  4. Hypervisor mechanism under consideration ◮ Ballooning is used to achieve memory overcommitment 1 ◮ vCPU scaling is used to reduce scheduling overheads in over committed situation 2 1C. A. Waldspurger, "Memory resource management in vmware esx server," ACM SIGOPS Operating Systems Review, vol. 36, no. SI, pp. 181-194, 2002. 2L. Cheng, J. Rao, and F. Lau, "vscale: automatic and efficient processor scaling for smp virtual machines," in Proceedings of the 11th European Conference on Computer Systems, ACM, 2016. Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 4 / 26

  5. Undesirable effects due to ballooning Happens Desired Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 5 / 26

  6. Existing memory reclamation in containers ◮ Memory provisioning knobs: Hard-Limit and Soft-Limit ◮ exceed : difference between memory usage and Soft-Limit ◮ SMR ( Soft Memory Reclaimed ): memory reclaimed from local LRU ◮ GLR ( Global LRU Reclaimed ): memory reclaimed from global LRU Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 6 / 26

  7. Existing memory reclamation in containers Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 7 / 26

  8. Impact of ballooning Set-up ◮ Memory reclamation rate: 2 GB every 30 seconds (generated from host after 100 seconds) Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 8 / 26

  9. Impact of ballooning Default configuration of four containers Container Hard-limit(GB) Soft-limit(GB) Key size (# records) Redis-Low 2 0.5 500K Redis-High 4 1 1000K Mongo-Low 2 0.5 500K Mongo-High 4 1 1000K 3.5 3 Memory usage ratio 2.5 2 1.5 1 MongoDB ratio 0.5 Redis ratio Desired ratio 0 0 50 100 150 200 250 300 350 400 Time (sec) Memory usage ratio Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 9 / 26

  10. Impact of ballooning ◮ Existing knobs (limits) do not guarantee proportionate memory allocation during memory pressure situations 3.5 3 Memory usage ratio 2.5 2 1.5 1 MongoDB ratio 0.5 Redis ratio Desired ratio 0 0 50 100 150 200 250 300 350 400 Time (sec) Memory usage ratio Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 10 / 26

  11. CPU provisioning Issues Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 11 / 26

  12. Impact of vCPU scaling Experimental setup VM configuration 7 vCPUs and 8GB Memory Number of containers inside VM 3 CPU allocation ratio 1:1:4 Benchmark Sysbench vCPU scaling down frequency 1 vCPU every 120s (vCPU1,2,3,&4) vCPU mapping using cpuset.cpus C1: vCPU1, C2: vCPU2, C3: vCPU3,4,5,&6 400 400 Container1 Container1 Container2 Container2 Avg. %CPU utilization Avg. %CPU utilization Container3 Container3 300 300 200 200 100 100 0 0 1-120 121-240 241-360 361-480 481-600 1-120 121-240 241-360 361-480 481-600 Time Range(S) Time Range(S) CPU utilization without pinning CPU utilization with pinning Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 12 / 26

  13. Impact of vCPU scaling ◮ Pinning and scaling = ⇒ non-deterministic CPU utilization ◮ Desired goal: achieve pinning benefits + maintain CPU share 400 400 Container1 Container1 Container2 Container2 Avg. %CPU utilization Avg. %CPU utilization Container3 Container3 300 300 200 200 100 100 0 0 1-120 121-240 241-360 361-480 481-600 1-120 121-240 241-360 361-480 481-600 Time Range(S) Time Range(S) CPU utilization without pinning CPU utilization with pinning Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 13 / 26

  14. Summary of issues in nesting setup ◮ Ballooning may fail to satisfy container requirements ◮ vCPU scaling may not respect cpu share with cpu pinning Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 14 / 26

  15. Our approach ◮ Native cloud provider can be public or private ◮ We can’t control or change hypervisor in case of public cloud ◮ We provide solution at guest OS level Default approach Our approach Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 15 / 26

  16. Proposed memory policies Proportionate memory allocation ◮ Allocate memory according to credit share of containers Application-specific differentiated memory reclamation ◮ Protect memory sensitive container(s) from memory reclamation Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 16 / 26

  17. Proposed CPU policies Maximize dedicated vCPU while maintaining allocation ratio ◮ To get maximum benefits of pinning Provide pinned vCPU(s) to a subset of containers ◮ Based on application nature or user requirement Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 17 / 26

  18. Contribution ◮ Modified the memory reclamation logic in memory cgroup subsystem ◮ Provided an additional definition of exceed ◮ Performed several modifications in Linux kernel » Added extra parameters in memory and cpu cgroups » Added control to maximize SMR » Provided knob to control reclamation chunk size ◮ Created a cpuset calculator in user space Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 18 / 26

  19. Modified memory reclamation » exceed = memory_usage – proportionate_share Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 19 / 26

  20. Effectiveness of memory policies ◮ Ratio of memory weights: 1:2 3.5 3 Memory pressure 3 exceed of all ≰ 0 2.5 2.5 Memory usage ratio Memory usage ratio 2 2 1.5 1.5 Memory pressure 1 exceed of all ≤ 0 1 MongoDB ratio 0.5 MongoDB ratio 0.5 No memory pressure Redis ratio Redis ratio Desired ratio Desired ratio 0 0 0 50 100 150 200 250 300 350 400 0 50 100 150 200 250 300 350 400 Time (sec) Time (sec) Memory usage ratio (default) Memory usage ratio (with control) ◮ Able to maintain memory usage ratio when exceed of all containers become less than or equal zero (after 300 second) Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 20 / 26

  21. Application specific reclamation 1800 TPC-C: default 1400 TPC-C: with control 1600 Throughput (op/sec) YCSB: default Memory usage (MB) 1200 YCSB: with control 1400 Free Memory 1000 1200 1000 800 800 600 600 400 400 200 200 YCSB: default YCSB: with control 0 0 0 100 200 300 400 500 600 0 100 200 300 400 500 600 Time (sec) Time (sec) Memory usage YCSB throughput ◮ Memory is not reclaimed from YCSB application container (memory sensitive) and it’s throughput remains intact Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 21 / 26

  22. vCPU reallocation design Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 22 / 26

  23. Effectiveness of vCPU reallocation Experimental setup VM configuration 7 vCPUs and 8GB Memory Number of containers inside VM 3 CPU allocation ratio 1:4:5 Benchmark Sysbench & Twitter VCPU scaling down frequency 1 vCPU every 120s (vCPU1,2,3,& 4) 400 3500 Container1 Container2 Avg. %CPU utilization Container3 Throughput (op/sec) 3000 300 2500 2000 200 1500 1000 100 500 With pinning Without pinning 0 0 1-120 121-240 241-360 361-480 481-600 0 100 200 300 400 500 600 Time (sec) Time Range(S) CPU utilization by each container Twitter throughput with scaling down vCPUs ◮ Able to maintain CPU share along with pinning Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 23 / 26

  24. Conclusion & future work Conclusion: ◮ Quantified the impact of hypervisor actions on containers running inside VM ◮ Proposed user-defined policies to mitigate the impact of hypervisor actions ◮ Demonstrated the effectiveness of memory and CPU policies empirically Future work: ◮ Design an efficient algorithm for container placement in derivative (nested) setup Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 24 / 26

  25. Thank you Questions??? Email id: chandrap@cse.iitb.ac.in Chandra Prakash Deterministic Container Resource Management in Derivative Clouds 25 / 26

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