Hi, I have a compute task that needs to query the local data set several hundred times per task. Creating another task in a custom thread pool seems to be the preferred method of multithreading within an already running compute task, but I find the overhead a bit slow. I've tried running Scala futures within the task, which gives me the desired results, but I've noticed some unexpected behavior, like the task freezing (possibly thread pool starvation, I'm not sure). Is there a safe, efficient way to run futures within a task that I know are only going to operate only on the local data set? Thanks
-- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
