chapter 9 1 9 3 linked lists the role of locking
play

Chapter 9.1-9.3 Linked Lists: The Role of Locking Magnus Andersson - PowerPoint PPT Presentation

Chapter 9.1-9.3 Linked Lists: The Role of Locking Magnus Andersson Introduction Fine-grained Synchronization Optimistic Synchronization Lazy Synchronization Non-blocking Synchronization Set on top of a Linked list public


  1. Chapter 9.1-9.3 Linked Lists: The Role of Locking Magnus Andersson

  2. Introduction • Fine-grained Synchronization • Optimistic Synchronization • Lazy Synchronization • Non-blocking Synchronization

  3. Set on top of a Linked list public interface Set<T> { boolean add(T x); boolean remove(T x); boolean contains(T x); }

  4. Linked list node private class Node { volatile T item; volatile int key; volatile Node next; } Sored on key Head item key next item key next item key next Tail

  5. Linked list node Head item key next item key next item key next Tail Removing item key next Head item key next item key next item key next Tail Adding

  6. Concurrent Reasoning Item B Abstract value Item C Item A Concrete representation Item Item Item Head key next key next key next Tail A B C

  7. Concurrent Reasoning • Invariants – Properties that hold from creation and onward – Always preserved by methods • In this case add , remove and contains could potentially break invariants – Why only these? • Private – Freedom from interference

  8. Concurrent Reasoning add(T x) contains(T x) remove(T x)

  9. Concurrent Reasoning add(T x) contains(T x) Contract remove(T x)

  10. Concurrent Reasoning • Representation invariant – Contract – Pre- and Post-conditions that everyone agrees on • Concrete representation must make sense for the given abstract values • In this case: – Sentinels may not be added or removed – Sorted by unique keys

  11. Concurrent Reasoning • Given a concrete representation, which set does it represent? – Abstraction map Item B Item C Abstraction map Item A Item Item Item Head key next key next key next Tail A B C • In this case: – All values reachable from the head

  12. Concurrent Reasoning • Consistency model – Linearizability • Single “operation” (atomic, critical section) Linearization point Invocation Thread, Method call Response – Stricter than sequential consistency • Some examples can be found at – http://kisalay.com/2011/04/26/linearizability-3/

  13. Concurrent Reasoning • Serializable – Parallel execution must appear to be executed serially – May reorganize tasks between threads “out -of- order” • Linearizablity – Stricter ordering between method calls on an object • Response -> Invocation order must be maintained • Chapter 3 in the book…

  14. Concurrent Reasoning • Non-blocking properties – lock-free ( “Some calls finishes after a number of steps ”) • Non-blocking • Allows for concurrent access without corruption – Though not without restrictions (read the friendly manual) • Even if one thread is suspended, others must be able to access uncorrupted data • Must retry on failure (unbounded) – wait-free ( “All calls finishes after a number of steps ”) • Bounded number of steps • Always make progress

  15. Concurrent Reasoning Non-Blocking Blocking All make Wait-free Starvation-free progress Some make Lock-free Deadlock-free progress

  16. Exercises 1. Give two examples of scenarios (not the ones from the chapter) where you think it would be practical and/or performant to use… – a) a wait-free method – b) a lock-free method 2. Where it makes sense to do so: From the assignments given by the other students this lecture – categorize each method implemented to one of the four blocking categories. Motivate your conclusions. Non-Blocking Blocking All make progress Wait-free Starvation-free Some make Lock-free Deadlock-free progress

  17. Fin

  18. Concurrent Reasoning [BACKUP] • Liveness and safety considerations – Safety property: “ Linearizability ” • “ Linearizability provides the illusion that each operation applied by concurrent processes takes effect instantaneously at some point between its invocation and its response, implying that the meaning of a concurrent object’s operations can be given by pre- and post-conditions. ” – M. P. Herlihy and J. M. Wing. Linearizability: a correctness condition for concurrent objects. TOPLAS, 12:463 – 492, 1990.

  19. Concurrent Reasoning [BACKUP] • Linearizability – Wikipedia has a fairly comprehensible explanation – http://en.wikipedia.org/wiki/Linearizability • Non-blocking properties – A good description can be found here: – http://www.justsoftwaresolutions.co.uk/threadin g/non_blocking_lock_free_and_wait_free.html

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