-
Enhancement
-
Resolution: Fixed
-
P4
-
None
-
None
-
JMC 8.0 Sprint 3, JMC 8.0 Sprint 4, JMC 8.0 Sprint 5, JMC 8.0 Sprint 6, JMC 8.0 Sprint 7 - Last Enh
The current model creation uses CompletableFuture which is thread agnostic and does not trigger thread interrupts when cancelling. This means when consecutive selection states are fired (user selects MemoryPage and then selects Method Profiling page), even though the previous CompletableFuture is cancelled, the thread (executing TraceTreeUtils.createTree) continues until completion with the results discarded immediately after. Together with the FixedThreadPool of size 1, this becomes a bottleneck on larger sets of items as the next execution is delayed until the previous one completes.
It would help to (safely) interrupt the calculation immediately to remove this bottleneck and not have wasted execution.
To keep in mind when resolving this is that 1 to 4 selection state events are immediately & consecutively fired on a "single" user action, with sometimes different item sets for each.