a simple fast and scalable non blocking concurrent fifo
play

A Simple, Fast and Scalable Non-Blocking Concurrent FIFO Queue for - PowerPoint PPT Presentation

Chalmers University of Technology A Simple, Fast and Scalable Non-Blocking Concurrent FIFO Queue for Shared Memory Multiprocessor Systems Philippas Tsigas Yi Zhang Department of Computing Science Chalmers University of Technology 1


  1. Chalmers University of Technology A Simple, Fast and Scalable Non-Blocking Concurrent FIFO Queue for Shared Memory Multiprocessor Systems Philippas Tsigas Yi Zhang Department of Computing Science Chalmers University of Technology 1

  2. Chalmers University of Technology Talk Outline • Synchronization in shared memory multiprocessors • Non-blocking Queue – ABA Problem – Performance issues • Conclusions 2

  3. Chalmers University of Technology Mutual Exclusion • Traditional way for synchronization. • Performance degradation under high contention. – Network contention – Lock convoy • Complex (pessimistic) scheduling analysis – Priority inversion – Deadlock 3

  4. Chalmers University of Technology 4

  5. Chalmers University of Technology Non-blocking Synchronization • An alternative approach for synchronization • Lock-free and Wait-free • Better performance in multiprocessor systems – No lock convoy – No priority inversion – No deadlock 5

  6. Chalmers University of Technology Non-blocking Queue Previous Results • Designed for Asynchronous Shared Memory Multiprocessors • Previous work – Lamport (1983) – … … – Michael and Scott (1998) – … … 6

  7. Chalmers University of Technology Non-blocking Queue Our Results • The new non-blocking queue outperforms the best known alternative implementation. + the new solution to the ABA problem together with + the lazy pointer updating to improve performance + the algorithmic design of the queue as a cyclic array 7

  8. Chalmers University of Technology ABA or Pointer Recycling Problem • Occurs when read-modify-write is used in lock-free computing with CAS atomic primitive • Drawback of the CAS atomic primitive • A Lot of overhead introduced to solve it 8

  9. Chalmers University of Technology The Specification of CAS Boolean CAS(int *mem, register old, new) { temp = *mem; if (temp == old) { *mem = new; return (TRUE);} else return FALSE; } 9

  10. Chalmers University of Technology ABA Problem (Example) • Array-based Queue (Enqueue) 1. Loop 2. head = Queue.head 3. ... ... 4. if CAS(Queue.array[head],NULL,data) 5. ... ... 6. End loop 10

  11. Chalmers University of Technology ABA Problem (Example) • Array-based Queue (Dequeue) 1. Loop 2. tail = Queue.tail 3. ... ... 4. if CAS(Queue.array[tail],data,NULL) 5. ... ... 6. End loop 11

  12. Chalmers University of Technology ABA Problem (Example) Execution History (Empty Queue) • P1 • P2 � Enqueue 2 � Enqueue � ... ... (Preempted) � Dequeue � Enqueue 4 12

  13. Chalmers University of Technology ABA Problem Traditional Solution • Using version number – Splits word into two parts – Uses one part of the word as a version number – Increases the version number of the word whenever updating the word • Not a complete solution, ABA can still happen, when the version number runs out of space. 13

  14. Chalmers University of Technology ABA Problem Traditional Solution (Drawbacks) • The actual pointer length is smaller than the system pointer length – Programmers must manage the pointer (memory) themselves – Limits the memory that can be accessed • Tag operations introduce extra overhead 14

  15. Chalmers University of Technology ABA Problem Our Solution • Introduce a ghost copy of each value and turn ABA to ABA’B´A • For example, NULL means empty in the Queue implementation • Using NULL(0) and NULL(1) mean empty cell • Recycle the NULL values • More NULL values can be introduced. 15

  16. Chalmers University of Technology Queue using Cyclical Array 16

  17. Chalmers University of Technology ABA Problem Execution History (Empty Queue) • P1 • P2 � Enqueue 2 � Enqueue at pos A � ... ... (Preempted) � Dequeue at pos A � ... ... � Enqueue at pos A � ... ... � Dequeue at pos A � Enqueue 4 � 17

  18. Chalmers University of Technology Performance Issues of Synchronization • Network contention – Access to shared memory – Spinning on shared memory – Cache coherent protocols • Lock convoys 18

  19. Chalmers University of Technology Mutual Exclusion Based Solutions for Performance Issues • Avoiding network contention – Ticket lock – MCS Queue lock • Avoiding lock-convoy effect – Scheduler-conscious synchronization 19

  20. Chalmers University of Technology Non-blocking and Performance • Avoiding the performance problems of lock-convoy from the beginning • No much consideration about network contention 20

  21. Chalmers University of Technology Observations on Queue operations • CAS operations are network operations; they generate a lot of traffic • CAS operations are used when changing the head and tail of the queue • Head and tail of the queue do not have to always point to the actual head and tail of the queue in a non-blocking implementation (Does it?) 21

  22. Chalmers University of Technology Our Approach: Sketch • Let the head and tail pointers lag behind the actual head and tail • Use computation to calculate the actual head and tail • Trade-off between the computation time for finding the actual head/tail and the synchronization time for keeping head/tail lag not to lag much behind. 22

  23. Chalmers University of Technology Results on SUN Enterprise 10000 with Full Contention 23

  24. Chalmers University of Technology Results on SUN Enterprise 10000 with Full Contention 24

  25. Chalmers University of Technology Results on SGI Origin 2000 with Full Contention 25

  26. Chalmers University of Technology Conclusion • A new non-blocking concurrent FIFO queue queue algorithm is present. • A simple mechanism for easing ABA problem is proposed. • A mechanism to lower the contention of of non-blocking operations is introduced ed ew algorithm perform very well under UMA MA and ccNUMA machines. s. 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