go gc prioritizing low latency and simplicity
play

Go GC: Prioritizing Low Latency and Simplicity Rick Hudson Google - PowerPoint PPT Presentation

Go GC: Prioritizing Low Latency and Simplicity Rick Hudson Google Engineer QCon San Francisco Nov 16, 2015 My Codefendants: The Cambridge Runtime Gang


  1. Go GC: Prioritizing Low Latency and Simplicity Rick Hudson Google Engineer QCon San Francisco Nov 16, 2015

  2. My Codefendants: The Cambridge Runtime Gang https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Sato_Tadanobu_with_a_goban.jpeg/500px-Sato_Tadanobu_with_a_goban.jpeg Google Confidential and Proprietary

  3. Go: A Language for Scalable Concurrency Lightweight threads (Goroutines) Channels for communication GC for scalable APIs Simple Foreign Function Interface Simplicity: The Key to Success Google Confidential and Proprietary

  4. Go: A Language for Scalable Open Source Projects Do Less, Enable More Learning Implementation Tooling Reading Understanding Sharing Google Confidential and Proprietary

  5. Go: A Runtime for Scalable Applications This is the story of Go’s garbage collector Image by Renee French Google Confidential and Proprietary

  6. Making Go Go: Establish A Virtuous Cycle HW++ News Flash: 2X Transistors != 2X Frequency More transistors == more cores Software++ Only if software uses more cores HW++ Software++ Long term Establish a virtuous cycle Hardware++ Short term Software++ Hardware++ Increase Go Adoption Software++ #1 Barrier: GC Latency Google Confidential and Proprietary

  7. When is the best time to do a GC? When nobody is looking. Using camera to track eye movement When subject looks away do a GC. Recovering https://upload.wikimedia.org/wikipedia/commons/3/35/Computer_Workstation_Variables.jpg Google Confidential and Proprietary

  8. Pop up a network wait icon Waiting https://commons.wikimedia.org/wiki/File:WIFI_icon.svg#globalusage Google Confidential and Proprietary

  9. e l t t i L Or A V Trade Throughput for Reduced GC Latency Google Confidential and Proprietary

  10. Latency Nanosecond 1: Grace Hopper Nanosecond 11.8 inches Microsecond 5.4: Time light travels 1 mile in vacuum Millisecond 1: Read 1 MB sequentially from SSD 20: Read 1 MB from disk 50: Perceptual Causality (cursor response threshold) 50+: Various network delays Google Confidential and Proprietary

  11. Saccades (ms) 30 Reading 200 Involuntary Eye Blink 300 ms

  12. GC 101 Root Scan Phase Heap Stacks/Registers Globals Google Confidential and Proprietary

  13. Mark Phase Stacks/Registers Globals Righteous Concurrent GC struggles with Evil Application changing pointers Google Confidential and Proprietary

  14. Sweep Phase Stacks/Registers Globals Google Confidential and Proprietary

  15. Go isn’t Java: GC Related Go Differences Go Java Thousands of Goroutines Tens of Java Threads Synchronization via channels Synchronization via objects/locks Runtime written in Go Runtime written in C Leverages Go same as users Control of spatial locality Objects linked with pointers Objects can be embedded Interior pointers (&foo.field) Simpler foreign function interface Let’s Build a GC for Go Google Confidential and Proprietary

  16. 1.4 Stop the World GC GC Application Application Google Confidential and Proprietary

  17. 1.5 Concurrent GC 1 ms 3 ms Application Application Assist Assist GC GC Application Application Google Confidential and Proprietary

  18. GC Algorithm Phases GC disabled Off Pointer writes are just memory writes: *slot = ptr Collect pointers from globals and goroutine stacks Stack scan Stacks scanned at preemption points WB on Mark objects and follow pointers until pointer queue is empty Mark Write barrier tracks pointer changes by mutator Rescan globals/changed stacks, finish marking, shrink stacks, … STW Mark termination Literature contains non-STW algorithms: keeping it simple for now Reclaim unmarked objects as needed Sweep Adjust GC pacing for next cycle Rinse and repeat Off Correctness proofs in literature (see me) Google Confidential and Proprietary

  19. Garbage Benchmark 9 8 GC Pause (Lower is better) 7 6 Seconds 5 4 3 2 1 0 Heap Size ( Gigabytes ) Google Confidential and Proprietary

  20. Garbage Benchmark 2x Live heap size Google Confidential and Proprietary

  21. GOGC knob: Space-Time Trade off More heap space: less GC time, and vice-versa Implementing a one knob GC is a challenge

  22. Splay: Increasing Heap Size == Better Performance Execution Time (Lower is Better) GOGC=200 Heap Size ( Megabytes ): Live heap kept constant Google Confidential and Proprietary

  23. JSON: Increasing Heap Size == Better Performance Execution Time (Lower is Better) GOGC=200 Heap Size ( Megabytes ) Google Confidential and Proprietary

  24. Onward: We’re not done yet…. Tell people that GC latency is not a barrier to Go’s adoption Tune for even lower latency higher throughput more predictability Tune for user’s applications Fight devils reported by users Increase Go Adoption Establish Virtuous Cycle Google Confidential and Proprietary

  25. Questions

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