Optimistic Concurrency with OPTIK
Title | Optimistic Concurrency with OPTIK |
Publication Type | Conference Paper |
Year of Publication | 2016 |
Authors | Guerraoui, Rachid, Trigonakis, Vasileios |
Conference Name | Proceedings of the 21st ACM SIGPLAN Symposium on Principles and Practice of Parallel Programming |
Publisher | ACM |
Conference Location | New York, NY, USA |
ISBN Number | 978-1-4503-4092-2 |
Keywords | Collaboration, composability, Human Behavior, Metrics, pattern locks, pubcrawl, Resiliency, Scalability |
Abstract | We introduce OPTIK, a new practical design pattern for designing and implementing fast and scalable concurrent data structures. OPTIK relies on the commonly-used technique of version numbers for detecting conflicting concurrent operations. We show how to implement the OPTIK pattern using the novel concept of OPTIK locks. These locks enable the use of version numbers for implementing very efficient optimistic concurrent data structures. Existing state-of-the-art lock-based data structures acquire the lock and then check for conflicts. In contrast, with OPTIK locks, we merge the lock acquisition with the detection of conflicting concurrency in a single atomic step, similarly to lock-free algorithms. We illustrate the power of our OPTIK pattern and its implementation by introducing four new algorithms and by optimizing four state-of-the-art algorithms for linked lists, skip lists, hash tables, and queues. Our results show that concurrent data structures built using OPTIK are more scalable than the state of the art. |
URL | http://doi.acm.org/10.1145/2851141.2851146 |
DOI | 10.1145/2851141.2851146 |
Citation Key | guerraoui_optimistic_2016 |