CS510 Concurrent Systems Tyler Fetters

22
CS510 Concurrent Systems Tyler Fetters

description

CS510 Concurrent Systems Tyler Fetters. A Methodology for Implementing Highly Concurrent Data Objects. Agenda. Definitions Author Biography Overview Small Objects Class Exercise Large Objects Summary & Contributions. Definitions. Non-Blocking Wait-Free Concurrent Objects - PowerPoint PPT Presentation

Transcript of CS510 Concurrent Systems Tyler Fetters

Page 1: CS510 Concurrent Systems Tyler Fetters

CS510 Concurrent Systems

Tyler Fetters

Page 2: CS510 Concurrent Systems Tyler Fetters

A Methodology for Implementing Highly

Concurrent Data Objects

Page 3: CS510 Concurrent Systems Tyler Fetters

Agenda• Definitions• Author Biography• Overview• Small Objects• Class Exercise• Large Objects• Summary & Contributions

Page 4: CS510 Concurrent Systems Tyler Fetters

Definitions• Non-Blocking• Wait-Free• Concurrent Objects• load_linked (LL)• store_conditional (SC)• Small Object• Large Object• Linearizable

Page 5: CS510 Concurrent Systems Tyler Fetters

Author Biography

Ph.D. in CS from MITProfessor:

Carnegie Mellon UniversityBrown University

Awards:2003 & 2012 Dijkstra Prize2004 Godel Prize2013 W. Wallace McDowell Award

Page 6: CS510 Concurrent Systems Tyler Fetters

Overview•Provide a framework for transforming sequential data structures into concurrent ones

•Requires writing operations as stylized sequential operations

•Increase ease of reasoning

•Uses LL and SC as core primitives (said to be “universal”, in terms of their ability to reach consensus in a wait-free manner for a unlimited number of threads)

Page 7: CS510 Concurrent Systems Tyler Fetters

Overview Cont.•Implement data objects as stylized sequential programs without explicit synchronization*

•Apply synchronization and memory management techniques

•This transformation will “in theory” transform any sequential object into a non-blocking or wait-free concurrent object.

Page 8: CS510 Concurrent Systems Tyler Fetters

Overview Cont.Linearizability is used as a basic correctness of the implementation

This doesn’t mean a concurrent version which allows other values to occur is incorrect.

Thus, non-linearizable algorithm are not necessarily incorrect.

Page 9: CS510 Concurrent Systems Tyler Fetters

Small ObjectsAt a high level:

Reads memory pointer using load_linked

Copies version into

another block

Applies sequential

operation to the copy

Calls store_conditional

to swing the pointer from the old to the new

On success transformation

complete

On failure retry

Page 10: CS510 Concurrent Systems Tyler Fetters

Small Objects Cont. - Codeint Pqueue_deq(Pqueue_type **Q){

...while(1){

old_pqueue = load_linked(Q);old_version = &old_pqueue->version;new_version = &new_pqueue->version;first = old_pqueue->check[1];copy(old_version, new_version);last = old_pqueue->check[0];if (first == last){ result = pqueue_deq(new_version); if (store_conditional(Q, new_version))break;}

}new_pqueue = old_pqueue;return result;

}

Preventing the race condition!

Copy the old, new data.

If the check values do not match, loop again. We failed.

If the check values DO match, now we can perform our dequeue operation!

Try to publicize the new heap via store_conditional, which could fail and we loop back.

Lastly, copy the old concurrent object pointer to the new concurrent pointer.

Return our priority queue result.

Page 11: CS510 Concurrent Systems Tyler Fetters

Small Objects Cont. – Back Off...

if (first == last){ result = pqueue_deq(new_version); if (store_conditional(Q, new_version )) break;}if (max_delay < DELAY_LIMIT) max_delay = 2 * max_delay;delay = random() % max_delay;for (i = 0; i < delay; i++);

} /* end while*/new_pqueue = old_pqueue;return result;

}

When the consistency check or the store_conditional fails, introduce back-off for a random amount of time!

Page 12: CS510 Concurrent Systems Tyler Fetters

Small Objects Cont. - Performance

Small Object, Non-Blocking (back-off)

Small Object, Non-Blocking (naive)

Page 13: CS510 Concurrent Systems Tyler Fetters

Small Objects Cont. – Wait Free• Operation combining – before trying to do

work to the concurrent object, a thread records what it is trying to do.

• Then reads what all other threads are doing and tries to complete the work for them

• Once it does all of their work it then does it’s own.

• Gain failure tolerance at the cost of efficiency.

Page 14: CS510 Concurrent Systems Tyler Fetters

Small Objects Cont. – Wait Free

Use Operation combining to transform the block-free object into a wait free

Process starts an operation.

Record the call in Invocation.

Upon completion of the operation, record the result in Result.

Page 15: CS510 Concurrent Systems Tyler Fetters

...announce[P].op_name = DEQ_CODE;new_toggle = announce[P].toggle = !announce[P].toggle;if (max_delay> 1) max_delay = max_delay >> 1;

while(((*Q)->responses[P].toggle != new_toggle) || ((*Q)->responses[P].toggle != new_toggle)){old_pqueue = load_linked(Q);old_version = &old_pqueue->version;new_version = &new_pqueue->version;first = old_pqueue->check[1];memcopy(old_version, new_version, sizeof(pqueue_type));last = old_pqueue->check[0];if (first == last){ result = pqueue_deq(new_version); apply(announce, Q); if (store_conditional(Q, new_version )) break;}if (max_delay < DELAY_LIMIT) max_delay = 2 * max_delay;delay = random() % max_delay;for (i = 0; i < delay; i++);

}new_pqueue = old_pqueue;return result;

}

Small Objects Cont. – Wait Free

Record the process name.

Flip the toggle bit.

apply pending operations to the NEW version.

Page 16: CS510 Concurrent Systems Tyler Fetters

Small Objects Cont. – Wait FreeSmall Object, Non-Blocking

(back-off)Small Object, Wait Free (back-off)

Page 17: CS510 Concurrent Systems Tyler Fetters

Class Exercise

Sequential Code for Removing Head node to the head of a Linked List

Apply synchronization and memory management techniques

Add Exponential Back-off for performance

Page 18: CS510 Concurrent Systems Tyler Fetters

Typedef Res {boolean non_empty;int ret_val;

}

Res linkList_removeHead(LinkList_type * l){node * temp;Res value;value->non_empty = falseif (l->head != null) {

value->non_empty = true;temp = l->head->next;value->ret_value = head->value;head = temp;

}return value;

}

Class Exercise

Page 19: CS510 Concurrent Systems Tyler Fetters

Class ExerciseRes LinkList_removeHead(LinkList_type **L){

...while(1){

old_linkList = load_linked(L);old_version = &old_linkList->version;new_version = &new_linkList->version;first = old_linkList->check[1];copy(old_version, new_version);last = old_linkList->check[0];if (first == last){ result = linkList_removeHead(new_version); if (store_conditional(L, new_version))break;}

if (max_delay < DELAY_LIMIT) max_delay = 2 * max_delay;delay = random() % max_delay;for (i = 0; i < delay; i++);}new_linkList = old_linkList;return result;

}

Page 20: CS510 Concurrent Systems Tyler Fetters

Large ObjectsPer-process pool of memory

3 states: committed, allocated and freedOperations:

set_alloc moves block from committed (freed?) to allocated and returns address

set_free moves block to freedset_prepare marks blocks in allocated as

consistentset_commit sets committed to union of freed

and committedset_abort sets freed and allocated to the

empty set

Page 21: CS510 Concurrent Systems Tyler Fetters

Summary & Contributions

Foundation for transforming sequential implementations (small and large) to concurrent operations

•Possible to be performed by a compiler•Maintains a “reasonable” level of performance•Utilizing LL and SC as base primitives•Addresses the issue of conceptual complexity (thoughts?)

Page 22: CS510 Concurrent Systems Tyler Fetters

Sources•A Methodology for Implementing Highly Concurrent Data Objects – Slides from Tina Swenson – 2010

•http://en.wikipedia.org/wiki/Maurice_Herlihy

•http://cs.brown.edu/~mph/

•http://web.cecs.pdx.edu/~walpole/class/cs510/papers/10.pdf