efficient and reliable lock free memory reclamation
play

Efficient and Reliable Lock-Free Memory Reclamation Based on - PowerPoint PPT Presentation

Efficient and Reliable Lock-Free Memory Reclamation Based on Reference Counting Anders Gidenstam, Marina Papatriantafilou, Hkan Sundell and Philippas Tsigas Distributed Computing and Systems group, Department of Computer Science and


  1. Efficient and Reliable Lock-Free Memory Reclamation Based on Reference Counting Anders Gidenstam, Marina Papatriantafilou, Håkan Sundell and Philippas Tsigas Distributed Computing and Systems group, Department of Computer Science and Engineering, Chalmers University of Technology

  2. Outline � Introduction � The Problem � Lock-free synchronization � Our solution � Idea � Properties � Experiments � Conclusions 2005 2 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  3. The Lock-Free Memory Reclamation Problem � Concurrent shared data structure � Dynamic use of shared memory � Concurrent and overlapping operations by threads or processes Base A B C 2005 3 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  4. The Lock-Free Memory Reclamation Problem Thread X Local variables Base A B C 2005 4 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  5. The Lock-Free Memory Reclamation Problem Thread X X has de-referenced the link (pointer) to B Base A B C 2005 5 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  6. The Lock-Free Memory Reclamation Problem Another thread, Y, finds and deletes Thread X (removes) B from the active structure Thread Y B Base A C 2005 6 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  7. The Lock-Free Memory Reclamation Problem Property I: A (de-)referenced node is not reclaimed Thread X Thread Y wants to reclaim(/free) B ? Thread Y B Base A C 2005 7 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  8. The Lock-Free Memory Reclamation Problem Property II: Links in a (de-)referenced node should always be de-referencable. Thread X The nodes B and C ? are deleted from the active structure. B C Base A D 2005 8 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  9. The Lock-Free Memory Reclamation Problem Solutions? � Garbage collection? � Reference counting? Needs to be lock-free! Thread X 1 1 B C 1 2 Base A D 2005 9 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  10. Lock-free synchronization � A lock-free shared data structure � Allows concurrent operations without enforcing mutual exclusion (i.e. no locks) � Guarantees that at least one operation always makes progress � Avoids: • Blocking, deadlock and priority inversion � Hardware synchronization primitives � Built into CPU and memory system • Typically: atomic read-modify-write instructions Examples � • Test-and-set, Compare-and-Swap, Load-Linked / Store-Conditional 2005 10 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  11. Previous solutions � Lock-free Reference Counting � Valois + Michael & Scott 1995 � Detlefs et al. 2001 Slow 1 1 1 � Herlihy et al. 2002 B C A � Remaining issues � A slow thread might prevent reclamation � Cyclic garbage � Implementation practicality issues � Reference-count field MUST remain forever (Valois + Michael & Scott) � Needs double word CAS (Detlefs et al.) � Needs double width CAS (Herlihy, 2002) � Large overhead 2005 11 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  12. Our approach – The basic idea � Combine the best of � Hazard pointers (Michael 2002) • Tracks references from threads • Fast de-reference • Upper bound on the amount of unreclaimed deleted nodes • Compatible with standard memory allocators � Reference counting • Tracks references from links in shared memory • Manages links within dynamic nodes • Safe to traverse links (also) in deleted nodes � Practical � Uses only single-word Compare-And-Swap 2005 12 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  13. The basic idea � API Hazard pointers (Thread X) � DeRefLink � ReleaseRef Deletion list � CompareAndSwapRef Thread X � StoreRef � NewNode � DeleteNode 1 1 1 Base A B C 2005 13 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  14. The basic idea � API Hazard pointers (Thread X) � DeRefLink(Base) � ReleaseRef Deletion list � CompareAndSwapRef Thread X � StoreRef R � NewNode � DeleteNode 1 1 1 Base A B C 2005 14 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  15. The basic idea � API Hazard pointers (Thread X) � DeRefLink � ReleaseRef(R) Deletion list � CompareAndSwapRef Thread X � StoreRef R � NewNode � DeleteNode 1 1 1 Base A B C 2005 15 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  16. The basic idea � API Hazard pointers (Thread X) � DeRefLink � ReleaseRef Deletion list � CompareAndSwapRef Thread X � StoreRef � NewNode 0 � DeleteNode D new 1 1 1 Base A B C 2005 16 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  17. The basic idea � API Hazard pointers (Thread X) � DeRefLink C � ReleaseRef Deletion list � CompareAndSwapRef Thread X � StoreRef(new.next, R) � NewNode 0 C R � DeleteNode D new 1 1 2 Base A B C 2005 17 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  18. The basic idea � API Hazard pointers (Thread X) � DeRefLink A B � ReleaseRef Deletion list � CompareAndSwapRef(prev.next, old, new) Thread X � StoreRef A prev � NewNode 1 � DeleteNode D B old new 1 0 2 Base A B C 2005 18 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  19. The basic idea � API Hazard pointers (Thread X) � DeRefLink � ReleaseRef Deletion list � CompareAndSwapRef Thread X � StoreRef A prev � NewNode 1 � DeleteNode(old) D _ old new 1 0 2 Base A B C 2005 19 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  20. Breaking chains of garbage � Clean-up deleted nodes Hazard pointers (Thread Y) � Update links to point to live nodes Deletion list � Performed on nodes in Thread X • Own deletion list • All deletion lists 0 1 B C 1 1 2 Base A D E 2005 20 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  21. Breaking chains of garbage � Clean-up deleted nodes Hazard pointers (Thread Y) � Update links to point to live nodes Deletion list � Performed on nodes in Thread X • Own deletion list • All deletion lists 0 0 B C 1 1 3 Base A D E 2005 21 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  22. Bound on unreclaimed nodes � A deleted node can be reclaimed when � The reference count is zero and � No hazard pointer is pointing to it and � There is no ongoing clean-up of this node � With a rate relative to the number of threads of � Scanning hazard pointers � Cleaning up nodes as needed � Then the maximum size of each deletion list depends on � The number of hazard pointers � The number of links per node � The number of threads 2005 22 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  23. Experimental evaluation � Lock-free deque (Sundell and Tsigas 2004) (deque – double-ended queue) � The algorithm needs traversal of deleted nodes � Time for 10000 random operations/thread � Tested memory reclamation schemes � Reference counting, Valois et al. � The new algorithm � Systems � 4 processor Xeon PC / Linux (UMA) � 8 processor SGI Origin 2000 / IRIX (NUMA) 2005 23 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  24. Experimental evaluation 2005 24 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  25. Experimental evaluation 2005 25 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  26. Conclusions � First lock-free memory reclamation scheme that � Only uses atomic primitives available in contemporary architectures � Guarantees safety of • Local and • Global references � Has an upper bound on the amount of deleted but unreclaimed nodes � Allows arbitrary reuse of reclaimed memory 2005 26 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  27. Questions? � Contact Information: � Address: Anders Gidenstam, Computer Science & Engineering, Chalmers University of Technology, SE-412 96 Göteborg, Sweden � Email: andersg @ cs.chalmers.se � Web: http://www.cs.chalmers.se/~dcs http://www.cs.chalmers.se/~andersg � Implementation http://www.noble-library.org/ 2005 27 Anders Gidenstam, Distributed Computing and Systems, Chalmers

  28. Conclusions � First lock-free memory reclamation scheme that � Only uses atomic primitives available in contemporary architectures � Guarantees safety of • Local and • Global references � Has an upper bound on the amount of deleted but unreclaimed nodes ( Bound: N * N * (k + L_max + a + 1) ) � Allows arbitrary reuse of reclaimed memory 2005 28 Anders Gidenstam, Distributed Computing and Systems, Chalmers

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