The GPars project offers developers new intuitive and safe ways to handle Java or Groovy tasks concurrently, asynchronously, and distributed by utilizing the power of the Java platform and the flexibility of the Groovy language.

learn more… | top users | synonyms

1
vote
1answer
34 views

How to fold into a multi level map using gpars and map reduce

I have a collection of maps that looks something like this: def list = [ [key1: 'ABC', key2: 3, value: 1.01], [key1: 'ABC', key2: 4, value: 1.02], [key1: 'ABC', key2: 4, value: 1.03], ...
1
vote
1answer
61 views

GPars: return of eachParallel{}

I want to do alot of stuff with each of those example strings and return Object of some other type here Integers, later some bigger class-objects. Here in this example I am trying something simple, ...
0
votes
1answer
37 views

Appropriate GPars import

Is it appropriate to use just the following import? import groovyx.gpars.* So that I can just do: import groovyx.gpars.* GParsPool.withPool { list = 1..10 list.each{print it + 1 + "\n"} } ...
0
votes
1answer
54 views

GPars: Waiting for actors to finish

I think I got this wrong from the docs. I have two actors, XMLActor and HttpActor. XMLActor reads xmlFiles and then sends a message to HTTPActor to process. XMLActor will finish way sooner than ...
1
vote
1answer
144 views

Fork/Join example with GPars

I found an example for fork/join in GPars here: Fork/Join import static groovyx.gpars.GParsPool.runForkJoin import static groovyx.gpars.GParsPool.withPool withPool() { println """Number of ...
0
votes
1answer
41 views

Asynchronous Functions

Is there a difference between Asynchronous Invocation and Composable Asynchronous Functions? In the first case you use async() or callAsync() and in the other case you use asyncFun(). But where is the ...
1
vote
2answers
51 views

Data Parallelism with GPars

I found this example here Data Parallelism GParsPool.withPool() { Closure longLastingCalculation = {calculate()} Closure fastCalculation = longLastingCalculation.async() Future ...
0
votes
1answer
38 views

Grape or normal import

Does it make a difference, how to integrate GPars in my projects? Can I either do @Grab(group='org.codehaus.gpars', module='gpars', version='1.0.0') or just (provided I have all the required jars ...
0
votes
1answer
84 views

Parallel with withPool

I found an example on how to use withPool. It says I just need to add the word Parallel to Groovy's methods like collect, find, each, put it into withPool and it executes the code parallel. import ...
0
votes
1answer
43 views

Actor Exception

I just want to send some messages between 2 actors in Groovy. I receive the first messages abc, but get then the following exception: An exception occurred in the Actor thread Actor Thread 1 ...
1
vote
2answers
109 views

Compare Java and GPars

I'm trying to find a comparable code snippet for both Java and GPars to visualize, how much easier GPars is. Does the following code do the same in both cases? I don't mean the output only, but also ...
3
votes
2answers
183 views

Grails, GPars and data persistence

Something is not getting flushed. A simplified example of what's happening: def testDemo() { def person = new Person(...) person.save(flush: true) println "Number of people after save: ...
3
votes
1answer
39 views

GPars lock returning null

When I try to lock a line in my table, sometimes null is returned. What does that mean? I verify that the domain instance was not null before the lock: println state state = State.lock(state.id) ...
1
vote
1answer
145 views

Trying to use GPars with IntelliJ and grails

I have been having a lot of trouble using an external JAR, GPars, in an IntelliJ Grails project. I think it is a problem with specifying the dependency. I am using GPars-1.0.0. I saved it in the ...
0
votes
1answer
68 views

GPars - proper way to terminate a parallel collection early

What is the best way to terminate a parallel collection (in the case of either an exception thrown by one of the threads, or an interrupt initiated by the user)? In either case, I could easily set ...
0
votes
2answers
131 views

How know with GPars that all threads have finished when an exception is thrown?

In the case of a thread throwing an exception, how can I wait until all threads that did not throw an exception have finished (so the user doesn't launch again until everything has stopped)? I use ...
3
votes
1answer
215 views

Groovy/Grails GPARS: How to execute 2 calculations parallel?

I'm new to the GPARS-library and implementing it in our software at the moment. It's no problem for me to use it instead of the normal groovy-methods like [..].each{..} -> ...
0
votes
2answers
89 views

Groovy - GPars - Active Object - Active Method which returns a value

In Groovy, I need to implement an ActiveObject instance called MyCounter so that the following code would pass: final MyCounter counter = new MyCounter() counter.incrementBy 10 counter.incrementBy 20 ...
1
vote
1answer
74 views

GPars forkOffChild exception handling

I'm using GPars' fork/join. When I throw an exception after calling forkOffChild, it gets buried. For example: def myRecursiveClosure = { boolean top -> try { if (!top) { ...
1
vote
2answers
76 views

GPars report status on large number of async functions and wait for completion

I have a parser, and after gathering the data for a row, I want to fire an aync function and let it process the row, while the main thread continues on and gets the next row. I've seen this post: How ...
0
votes
1answer
59 views

GPARs async functions and passing references that are being updated by another thread

I am using GPARs asynchronous functions to fire off a process as each line in a file is parsed. I am seeing some strange behavior that makes me wonder if I have an issue with thread safety. Let's ...
1
vote
1answer
59 views

Using GPars to process nodes in a tree with caching of the processed nodes

I am processing a tree, and would like to speed it up using GPARs. I've used it for simple things but haven't delved into the more complex options. Assume that I am processing different branches of ...
0
votes
1answer
74 views

How to about Gpars runForkJoin and forkOffChild methods

I'm trying to work with these methods with no success and i`ll be happy if someone can help me. I'm using groovy and i have 2 maps of strings. I want to match between the strings of the 2 maps with ...
1
vote
1answer
76 views

GORM GPARS Integration Test

I am trying to integration-test the Gorm pessimistic lock, and simulating with multithreading the access from many servers simultaneously, but in each thread I don't get the results expected. This is ...
0
votes
0answers
88 views

Using gpars for efficient collection of results

I need help understanding how to make this usage of gpars the most efficient. I understand the risk of trying to create a list outside the gpars loop, then having all the threads update it. But ...
2
votes
1answer
350 views

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

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 ...
2
votes
1answer
58 views

Are GPars Actors fault tolerant

Actors in GPars have their own message queue (mail box). Say an actor is having 15 pending messages and suddenly system goes down(say due to power failure). What will happen to those 15 messages. Will ...
0
votes
1answer
39 views

Does GPars actors model uses user thread or native OS threads

I know when there is no message to process an actor does not consume thread and attaches itself to a thread only when message arrives. However my question is when an actors is attached to a thread ...
0
votes
1answer
49 views

GPars Process the huge list doing the fix size parallelisation on its portions

I'm looking for the GPars functionality which allows to separate the big task in sequencially executed portions of parallized subtasks sets. i.e. iterating the Array size of K, doing the sequencial ...
2
votes
2answers
62 views

What is the significance of “loop()” method in Actors body - GPars

In Actors body we need to write react() method inside loop() method. I want to know how this loop method is different from "for" or "while" loop? GPars documentation says "loop() cooperates with ...
2
votes
1answer
129 views

How can I get IntelliJ IDEA to recognize the GPars DSL?

According to the GPars User Guide, IntelliJ IDEA is supposed to be able to recognize the GPars DSL right out of the box as soon as the GPars jar is added to the project. Since Groovy 1.8, GPars is now ...
0
votes
1answer
96 views

Why DataFlow variables can only be assigned once

I am exploring GPars(Groovy Parallel System) library these days and I came across DataFlow variables. The documentation says Dataflow variables can only be assigned once. However I could not find a ...
0
votes
1answer
276 views

GPars with Groovy, when is explicit synchronization required with collectParallel()?

Assume the following parallel process in Groovy/Gpars.... def result GParsPool.withPool(5){ result = idList.collectParallel{processItem(it)} } If result is just an array list, and, assuming no ...
0
votes
1answer
260 views

Groovy GPars, need index for each thread launched

Using GPars with Groovy, I launch 3 threads to do some work in parallel... GParsPool.withPool(3){ result = myList.collectParallel{ processItem(it) } } This works fine, but I need an ...
5
votes
2answers
212 views

What is the GPars default pool size?

I thought this would have been an easy thing to find but I've failed. If I use GPars in my Groovy application and I don't specify a pool size how many threads will be created? Is there a default pool ...
1
vote
1answer
222 views

gpars withExistingPool

I am trying to use gpars GParsPool.withExistingPool in gpars 0.12 It expects a jsr166y.ForkJoinPool but looks like in the jsr166y jar I have, there is no way to create that class(?). The only ones I ...
1
vote
0answers
68 views

Indexing an entity in an actor thread using Grails searchable

I am using the Grails searchable plugin to index an entity with a custom text representation. I want this entity to be indexed in an actor (using GPars) that will be triggered asynchronously once the ...
1
vote
1answer
420 views

Grails GPARS upgrade

I am using Grails 1.4.0.M1 and I am trying to upgrade the version of gpars to use with my app. So I added in BuildConfig.groovy: dependencies{ build 'org.codehaus.gpars:gpars:0.11' } This ...
0
votes
2answers
776 views

Groovy GPars how to sleep a thread by thread number/count?

I have currently a problem with GPars, i would like to start about 30 thread but i want to wait 1second after each thread start. My code currently looks something like this (Groovy/Grails): ...
1
vote
2answers
210 views

Grails + Gpars.memoize().. how to do memoization?

I can't seem to figure out how to do memoization in Grails. According to the GPars docs it should be as simple as def c = { x -> x*2 }.memoize() or ... .gmemoize() But all i seem to get is ...
1
vote
1answer
216 views

ConcurrentException/NullPointerException in GParsPool runForkJoin

For a little context, i'm trying to solve Project Euler problem 31 using excellent GParsPool Fork/Join support. For that, i've written the foolowing code : import groovyx.gpars.* import ...