Fork-Join means to split the work into fragments and join the results together. You can split the work into components and schedule each component to a thread pool joining the results when all components complete. You can recursively decompose an aggregate structure into identical tasks and join the ...
3
votes
3answers
57 views
Does Java 7 fork/join guarantees executing thread in seperate CPU
Recently, I came to know about the Java 7 fork/join framework - what I learned is that it could be useful for divide-and-conquer like problems.
My question is, does the framework guarantees executing ...
0
votes
1answer
34 views
Daemon threads in ForkJoinPool
According to Java Doc 7:
Because ForkJoinPool uses threads in daemon mode, there is typically
no need to explicitly shutdown such a pool upon program exit
Are there no other advantages?
Is a ...
1
vote
4answers
71 views
Writing Files using Executor in Java
I have a List<Map<String,String>> ie; List of Maps. Each Map has File Name as Key and File Content as Value.
I have more than 25 Lakh Maps in above List. My requirement is to iterate ...
2
votes
1answer
89 views
Can ForkJoinPool be made any faster than ExecutorService in this case?
As long as I give ForkJoinPool one extra thread in the pool it performs equally faster as ExecutorService. Following are the three classes used: Main, RunnableTask and ForkJoinTask. Running on a 16 ...
4
votes
1answer
214 views
Java 7's fork/join framework does not use all available CPU power
I'm using Java's fork-join framework to deal with a CPU- intensive calculation.
I've tweaked the "sequential threshold" (used to determine whether to create subtasks or do the work) a bit, but to my ...
0
votes
1answer
56 views
Replacement for setMaximumPoolSize on ForkJoinPool
I noticed that since Scala 2.9.*, the setMaximumPoolSize method appears to have disappeared from ForkJoinPool and it looks like it does what I want. Most discussion of limiting parallelism in Scala's ...
6
votes
1answer
156 views
Futures.awaitAll replacement in Scala 2.10
I need to spawn set of Futures and wait untill all of them complete either with failure or with some success.
The recent Scala 2.10 doesn't contain anything like that or I did miss something?
4
votes
1answer
178 views
scala.concurrent.forkjoin.ForkJoinPool vs java.util.concurrent.ForkJoinPool
Why ForkJoinPool was forked for Scala?
Which implementation and for which case is preferred?
1
vote
1answer
147 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
37 views
Is there an equivalent of isQuiescent in non-fork-join executor services in Java?
I have made two implementations of my problem in ForkJoin and FixedSizeThreadPool and I want to compare their performances. In my problem, each task will create some sub-tasks and will submit them to ...
-2
votes
3answers
868 views
Exception in thread “main” java.lang.OutOfMemoryError: Java heap space on eclipse
I am trying to execute this program using fork and join framework. When I feed a JPEG image of smaller size to this program it works fine, but when I give the image of size more than 4 MB it throws ...
0
votes
1answer
97 views
What is level of parallelism in the Java ForkJoinPool?
I was studying the oracle docs about the Fork/Join framework when i came across this constructor of ForkJoinPool : ForkJoinPool(int parallelism). The docs said that this was the level of parallelism, ...
2
votes
2answers
450 views
System Verilog fork confusion, statements executed between fork and begin
See the simplified example code here:
process job[num_objs];
// assume also, arr_obj1s (array of type obj1) and
// arr_obj2s (array of type obj2) are arrays of size
// num_objs, ...
1
vote
1answer
88 views
fork-join, compute() method is crashing after some time
I have written a little program that opens an UDP socket and receives some UDP packets.
What I tried is that each packet is handled (order of the bytes is changed) by an own thread using fork-join, ...
-1
votes
1answer
255 views
How can I show that in Java Fork/Join framework work-stealing occurs?
I would like to improve my fork/join little example to show that during Java Fork/Join framework execution work stealing occurs.
What changes I need to do to following code? Purpose of example: just ...
1
vote
3answers
153 views
Java ForkJoin Multi-threaded is slower than single thread
I was trying out the Java ForkJoin framework and wrote a simple test program that sets the pixels of an image to random colors. E.g. it generates pseudo-noise.
But while testing performance I found ...
3
votes
0answers
176 views
SystemVerilog fork/join w/ “run()” type functions and SystemC
Sorry in advance this question is not very code-specific, and I believe has to do more with convention than a solution that is technically right or wrong. Possibly it can be done more than one way.
I ...
2
votes
0answers
182 views
Stuck on recursive Fork/Join
I have a method that returns a set of Points, I'm certain that the for loop portion of this method could be split into a RecursiveTask that returns a set of points for each thread.
I've tried a ...
1
vote
1answer
62 views
Java 7 ForkJoin freezes when it has to fork
Background: I'm running simulations of escape panic, how people escape from rooms, buildings corridors etc. For large populations there is a large number of computation as each person needs to ...
0
votes
1answer
93 views
Reusing task objects in fork/join in Java 7
I would like to use Java fork join to solve a recursive problem, but I don't want to create a new task instance explicitly for each recursion step. The reason is that too many tasks is equal to too ...
0
votes
0answers
86 views
Fork Join mechanism in Java 7
Does the scheduling mechanism implemented in Fork Join necessarily entail that if at any point of time there are free cores available, threads will definitely be scheduled on those free cores?
0
votes
0answers
30 views
Java 7 forking and joining
I have a main thread from which I want to spawn 2 threads to parse two different xml's. I want to know if Java 7 fork-join should be used in this scenario or the traditional way that is how we used to ...
1
vote
2answers
835 views
JDK 7 fork/join simple example [closed]
Can someone provide a simple example of fork/join feature in JDK 7.
I looked at the example provided by Oracle and it is bit confusing
1
vote
2answers
184 views
Resources: Parallelism in Java for OpenGL realtime applications
I recently went to a lecture on the benefits of Parallelism in regards to tapping the power of multicore processors more efficiently for real time 3d graphics applications. This discussion was about ...
6
votes
2answers
905 views
Java fork/join framework logic
This came up as a "side effect" to an an answer on another question today. It's more about curiosity than about an actual problem.
Java SE 7 offers what Oracle calls "the fork/join framework". It is ...
1
vote
1answer
771 views
scala/akka performance versus java 7 fork/join
I am new to Scala/Akka, although I am very well familiar with the concept of actor-based modeling. I am trying to parallelize an existing code for better performance, and I have two versions: one in ...
2
votes
0answers
243 views
Performance problems using new fork join framework of jdk 7
I'm using the new forkjoin framework of jdk 7.
I got a task, which has to be performed multiple times with different parameters.
This task extends RecursiveTask. there are more than 100 tasks to ...
1
vote
1answer
784 views
Java 7: Fork/Join Example - Did I get this right?
I am getting my hands dirty with Java 7 concurrency and parallelism feature - Fork/Join Framework.
I am trying to display the list of all directories under a given path. Can some one tell me if I got ...
0
votes
0answers
169 views
ForkJoinPool with blocked IO
The javadoc of ForkJoinPool mentions the following:
A ForkJoinPool is constructed with a given target parallelism level; by default, equal to the number of available processors. The pool attempts ...
2
votes
4answers
232 views
Is fork / join multithreaded?
If I have 2 CPUs and schedule 1000 tasks for the fork / join framework to work on, will the tasks be executed in a maximum of 2 at a time, or will more tasks be executed in parallel on the same CPU? ...
5
votes
1answer
235 views
Does OmnithreadLibrary support “work stealing”?
Work stealing is for example available in the Fork / Join framework on the Java platform. (See How is the fork/join framework better than a thread pool?) - is something similar possible with the ...
3
votes
4answers
208 views
Creating a custom java.util.concurrent.ForkJoinTask<V>
I am currently evaluating various concurrency solutions to solve a business problem. The use case is akin to the "embarassingly-parallel" algorithim.
Basically for a single user request, we need to ...
14
votes
3answers
511 views
java Fork/Join clarification about stack usage
I read about the implementation of the Fork/Join framework that was introduced in Java 7 and I just wanted to check that I understand how the magic works.
As I understand, when a thread forks, it ...
2
votes
1answer
175 views
Why akka.jsr166y.ForkJoinPool is deprecated in Akka 2.0.2?
Is it mean that it will move to Scala 2.10 or jsr166y will be released separately? ...or something else?
3
votes
2answers
621 views
What determines the number of threads a Java ForkJoinPool creates?
As far as I had understood ForkJoinPool, that pool creates a fixed number of threads (default: number of cores) and will never create more threads (unless the application indicates a need for those by ...
2
votes
1answer
217 views
A detail about the Fork-Join Framework
In Doug Lea's paper "A Java Fork/Join Framework":
http://gee.cs.oswego.edu/dl/papers/fj.pdf
In 2.1 Work-Stealing he says:
When a worker thread encounters a join operation, it processes other
...
1
vote
1answer
140 views
What is the difference between get() and invoke() in Java 7's ForkJoinTask?
Here is the javadoc for both:
get(): Waits if necessary for the computation to complete, and then
retrieves its result.
invoke(): Commences performing this task,
awaits its completion if necessary, ...
6
votes
2answers
455 views
ForkJoinPool seems to waste a thread
I'm comparing two variations on a test program. Both are operating with a 4-thread ForkJoinPool on a machine with four cores.
In 'mode 1', I use the pool very much like an executor service. I toss a ...
1
vote
1answer
115 views
ReentrantReadWriteLock delegation to parent thread
I want to submit tasks to a ForkJoinPool or ParallelArray from a thread holding a write lock. Access to our domain model is protected by checks that the current thread holds the relevant lock. To ...
7
votes
1answer
1k views
calling ExecutorService.shutDown() in java
i am starting to learn the ExecutorService class. The documentation (and tutorials online) say to always call ExecutorService.shutDown() to reclaim resources. however, the documentation also says that ...
3
votes
2answers
247 views
Inline Assignment as a way to ensure read orderings
In the ForkJoinPool class in Java7, there is a comment regarding the implementation which states:
Methods signalWork() and scan() are the main bottlenecks so are especially heavily ...
2
votes
1answer
286 views
Calculating factorial via DnC
I am trying to implement Factorial function via divide and conquer strategy. I used the ForkJoin framework to fork each recursive task to speed up the computation.
But I found that its not speeding ...
0
votes
1answer
400 views
Better way to handle Uncaught Exceptions in ForkJoinPool Tasks/action
What is the better way to handle exceptions(uncaught) while using ForkJoinPool to submit tasks (RecursiveAction or RecursiveTask)?
ForkJoinPool accepts a Thread.UncaughtExceptionHandler to handle ...
1
vote
1answer
616 views
Java 7 ForkJoinTask and Akka 2.0
Is there any plan to leverage java 7 util.concurrent's ForkJoin APIs or, expose similar API in Akka?
-2
votes
1answer
46 views
Why am I having higher latency in the sort the first time around? [closed]
I was trying java threading for a simple sort. I see the running time for the algorithm is very high the first time around. NT being threaded and T being non-threaded.
Duration NT - 1115027000
...
0
votes
1answer
128 views
How to use more than one Compute methods in ForkJoin Framework of Javaello
I need simpler problem to solve. I need to solve parallel summation of 1000 random X values and 1000 random Y values. I am using Parallel ForkJoin framework of java. With the the usage of single ...
0
votes
2answers
937 views
Fork/Join Parallel Patterns
Always been a tad weak around with threads and just going through Steven Toub's Parallel Computing book.
On Page 39 there are examples of Fork/Join patterns below
static T[] ...
4
votes
3answers
601 views
Is Java's fork-and-join thread pool is good for executing IO bound task?
in my application, I have to solve a problem by executing many network-io bound task and sometime one io bound task and be divided into smaller io bound tasks. These tasks are currently getting ...
2
votes
2answers
1k views
Use fork-and-join in JDK6
As I understand jdk7 has the support for fork-and-join, Can I use fork-and-join in JDK6 without upgraging to JDK7.0?
24
votes
7answers
4k views
How is the fork/join framework better than a thread pool?
What are the benefits of using the new fork/join framework over just simply splitting the big task into N subtasks in the beginning, sending them to a cached thread pool (from Executors) and waiting ...
