How do I execute two tasks simultaneously and wait for the results in Groovy?
Asked Answered
P

1

6

I have a large processing task which I believe is ripe for being made more efficient with concurrency and parallelism.

I had a look at the GPars docs and I found them quite confusing so I hope people here can help.

The first task I would like to do in parallel currently looks like this:

def providerOneProgrammes = providerOneProgrammeService.getProgrammes(timeWindow)
def providerTwoProgrammes = providerTwoProgrammeService.getProgrammes(timeWindow)

both return a list of objects and both can be run in parallel.

I would like to execute them together and then wait for them to finish before processing the return lists (I will then look for matches between the lists but I'll come to that later).

Thanks

Rakesh

Pryor answered 17/7, 2012 at 19:30 Comment(0)
R
14

The simplest way to take advantage of GPars here is with callAsync. Here's a simple example:

@Grab(group='org.codehaus.gpars', module='gpars', version='1.0-beta-2')

import groovyx.gpars.GParsPool

def providerOneProgrammeService(timeWindow) {
    println "p1 starts"
    Thread.sleep(4000)
    println "p1 still going"
    Thread.sleep(4000)
    println "p1 ends"
    return "p1 return value"
}

def providerTwoProgrammeService(timeWindow) {
    println "p2 starts"
    Thread.sleep(5000)
    println "p2 still going"
    Thread.sleep(5000)
    println "p2 still going"
    Thread.sleep(5000)
    println "p2 ends"
    return "p2 return value"
}

def results = []
GParsPool.withPool {
    results << this.&providerOneProgrammeService.callAsync("arg1")
    results << this.&providerTwoProgrammeService.callAsync("arg2")
}
println "done ${results*.get()}"
Rigger answered 17/7, 2012 at 22:29 Comment(7)
groovy did not like the results.*get() syntax. Calling with out the * causes an exception.Pryor
Sorry, that should be results*.get(). I've fixed the answer.Rigger
thanks for the example, its enough to get me started exploring GPars.Pryor
I could be wrong but on page 15 of the gpars guide it says adding to a collection like your example is a BAD thing. Can you confirm?Pryor
That example (images.eachParallel {thumbnails << it.thumbnail}) appends to the collection from multiple threads. My example runs the appends synchronously. Only the provider... methods themselves get run asynchronously. It might be less confusing when you note that the return value from callAsync is a Future which just acts as a placeholder for the result until get is called.Rigger
what if the two lists are different? I don't actually want them merged together.Pryor
Why do you need this results[] list? Does it help with synchronization?Cognition

© 2022 - 2024 — McMap. All rights reserved.