Groovy, Callable and ExecutorService

Suppose you want submit job to ExecutorService. The Baroque versionYou could create a class that implements Callable:class MyJob implements Callable<Integer>{ @Override Integer call() throws Exception { return 42 }}and give it to …

Suppose you want submit job to ExecutorService.

The Baroque version

You could create a class that implements Callable:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
class MyJob implements Callable<Integer>{
@Override
Integer call() throws Exception {
return 42
}
}
class MyJob implements Callable<Integer>{ @Override Integer call() throws Exception { return 42 } }
class MyJob implements Callable<Integer>{
    @Override
    Integer call() throws Exception {
        return 42
    }
}

and give it to the executor service:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
def 'submit callable as MyJob object'() {
expect:
executorService.submit(new MyJob()).get() == 42
}
def 'submit callable as MyJob object'() { expect: executorService.submit(new MyJob()).get() == 42 }
def 'submit callable as MyJob object'() {
    expect:
    executorService.submit(new MyJob()).get() == 42
}

The response is, as expected, 42.

Map as Callable version

You want to use this job only in one place so why not inline this class:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
def 'submit callable as map'() {
expect:
executorService.submit([call: { 42 }] as Callable).get() == 42
}
def 'submit callable as map'() { expect: executorService.submit([call: { 42 }] as Callable).get() == 42 }
def 'submit callable as map'() {
    expect:
        executorService.submit([call: { 42 }] as Callable).get() == 42
}

The response is again 42.

Groovy closure version

Why not use closure instead of map?

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
def 'submit callable as closure'(){
expect:
executorService.submit { 42 }.get() == 42
}
def 'submit callable as closure'(){ expect: executorService.submit { 42 }.get() == 42 }
def 'submit callable as closure'(){
    expect:
        executorService.submit { 42 }.get() == 42
}

The response is … null.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
Condition not satisfied:
executorService.submit { 42 }.get() == 42
| | | |
| | | false
| | null
| java.util.concurrent.FutureTask@21de60b4
java.util.concurrent.Executors$FinalizableDelegatedExecutorService@1700915
Condition not satisfied: executorService.submit { 42 }.get() == 42 | | | | | | | false | | null | java.util.concurrent.FutureTask@21de60b4 java.util.concurrent.Executors$FinalizableDelegatedExecutorService@1700915
Condition not satisfied:
executorService.submit { 42 }.get() == 42
|               |             |      |
|               |             |      false
|               |             null
|               java.util.concurrent.FutureTask@21de60b4
java.util.concurrent.Executors$FinalizableDelegatedExecutorService@1700915

 

Why? It is because Groovy treats this closure as Runnable, not Callable and Future#get returns null when task is complete.

Groovy closure version with cast

We have to cast our closure before submiting to executor service:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
def 'submit callable as closure with cast'() {
when:
int result = executorService.submit({ return 42 } as Callable<Integer>).get()
then:
result == 42
}
def 'submit callable as closure with cast'() { when: int result = executorService.submit({ return 42 } as Callable<Integer>).get() then: result == 42 }
def 'submit callable as closure with cast'() {
    when:
        int result = executorService.submit({ return 42 } as Callable<Integer>).get()
    then:
        result == 42
}

The response is, as expected, again 42.

What interesting, the same test with inlined result variable fails… Strange… It could be Spock framework error.

Source code is available here.

You May Also Like

EhCache config with BeanUtils

BeanUtils allows you to set Bean properties.If you have configuration stored in a Map it's tempting to use BeanUtils to automagically setup EhCache configuration.Sadly this class has mixed types in setters and getter and thus BeanUtils that use Introsp...

Distributed scans with HBase

HBase is by design a columnar store, that is optimized for random reads. You just ask for a row using rowId as an identifier and you get your data instantaneously. Performing a scan on part or whole table is a completely different thing. First of all, it is sequential. Meaning it is rather slow, because it doesn't use all the RegionServers at the same time. It is implemented that way to realize the contract of Scan command - which has to return results sorted by key. So, how to do this efficiently?HBase is by design a columnar store, that is optimized for random reads. You just ask for a row using rowId as an identifier and you get your data instantaneously. Performing a scan on part or whole table is a completely different thing. First of all, it is sequential. Meaning it is rather slow, because it doesn't use all the RegionServers at the same time. It is implemented that way to realize the contract of Scan command - which has to return results sorted by key. So, how to do this efficiently?