Speakers list agenda

Turbo Charge CPU Utilization in Fork/Join Using the ManagedBlocker

11:15 - 12:15, 17th of May (Wednesday) 2017/ TECH PLUS STAGE
for Standard Passes+ only

 

Fork/Join is a framework for parallelizing calculations using recursive decomposition, also called divide and conquer. These algorithms occasionally end up duplicating work, especially at the beginning of the run. We can reduce wasted CPU cycles by implementing a reserved caching scheme. Before a task starts its calculation, it tries to reserve an entry in the shared map. If it is successful, it immediately begins. If not, it blocks until the other thread has finished its calculation. Unfortunately this might result in a significant number of blocked threads, decreasing CPU utilization. In this talk we will demonstrate this issue and offer a solution in the form of the ManagedBlocker. Combined with the Fork/Join, it can keep parallelism at the desired level.

Author: Dr Heinz Kabutz writes the popular "The Java Specialists' Newsletter" read by tens of thousands of enthusiastic fans in over 140 countries. To sign up, visit http://www.javaspecialists.eu

TOPICS:
Java

Dr Heinz Kabutz

Java Champion