Tagged Questions
Fork-Join is a name for concurrent algorithms to solve hierarchical (recursive, divide-and-conquer) problems.
17
votes
4answers
3k views
Coordinating parallel execution in node.js
The event-driven programming model of node.js makes it somewhat tricky to coordinate the program flow.
Simple sequential execution gets turned into nested callbacks, which is easy enough (though a ...
13
votes
1answer
3k views
Using scala actor framework as fork-join computation?
Is it possible, in theory, to use the Scala Actor Framework to do a kind of asynchronous divide-and-conquer computation similarly to JDK 7's Fork-Join framework? If so, how could I express an FJ ...
8
votes
4answers
241 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 ...
8
votes
1answer
1k views
Difference between Fork/Join and Map/Reduce
What is the key difference between Fork/Join and Map/Reduce?
Do they differ in the kind of decomposition and distribution (data vs. computation)?
7
votes
3answers
838 views
Resources on the upcoming fork-join framework
I'm looking for well organized information sources about how the upcoming jsr166y (fork-join, fences) and extras166y (ParallelArray, etc.) can be used - something from tutorial to expert level.
6
votes
3answers
325 views
Java fork join algorithm analysis
I am doing a study (as part of a course requirement) on the new Fork-Join framework in Java 7 and analyze the performance improvement compared to the conventional threading mechanism. What are the ...
5
votes
3answers
931 views
2
votes
2answers
46 views
How to implement forkjoin for a series of action which is done in for loop for now
I have a list of senders for them I have to parallely send mails individually.Currently I am iterating over the list construct the body (as it is different for different people) and then sending them. ...
2
votes
1answer
818 views
Executing a simple task on another thread in scala
I was wondering if there was a way to execute very simple tasks on another thread in scala that does not have a lot of overhead?
Basically I would like to make a global 'executor' that can handle ...
1
vote
3answers
118 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 ...
1
vote
3answers
102 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?
1
vote
1answer
128 views
Intereseting Fork/Join or Divide and Conquer Examples
We want to showcase the new JDK7 Fork/Join Framework on a conference workshop. For this we are currently searching for an interesting example what can be done with the framework.
There are obvious ...
1
vote
1answer
108 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 ...
1
vote
2answers
168 views
File I/O across processes in Linux?
So, I've got a Linux process where I'm trying to manage some files on a tape. I have the following code that attempts to extract a file, catalog.xml, from the current archive on the tape and copy it ...
1
vote
2answers
354 views
Memory visibility in Fork-join
Brian Goetz's wrote a nice article on fork-join at http://www.ibm.com/developerworks/java/library/j-jtp03048.html. In it, he lists a merge sort algorithm using the fork-join mechanism, in which he ...
1
vote
1answer
409 views
Concurrent directory traversal algorithm hang problem
I have created a concurrent, recursive directory traversal and file processing program, which sometimes hangs after all parallel computations have finished but the 'primary' thread never continues ...
0
votes
1answer
50 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?
0
votes
0answers
19 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
72 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[] ...
0
votes
0answers
25 views
How to model the task bookkeeping of a Fork Join Queue?
The bookkeeping of tasks in a Fork-Join Queue is a heavy job. I'd like to implement an abstract framework and am looking for research in this field. Specifically theoretical models that allow to set ...
0
votes
0answers
90 views
Why does my fork/join deadlock?
Consider the following snipped of code, which calculates the size of all paths given.
def pathSizes = []
paths.each { rootPath ->
pathSizes.addAll(
withPool { pool ->
...
0
votes
1answer
93 views
how can I add branch to parallel activity dynamically
I have an state machine implemented using wwf which is going to handle an indent flow.
Imagine that we have an indent registered by user and we want to send enquiry to different vendors.
the number of ...
0
votes
3answers
399 views
c fork,exec,getpid problem
I'm new to c language and Linux. I have a problem related to fork(),getpid()and exec()function.
I wrote a c program using fork() call the code of my program is following"
code:
#include ...
0
votes
1answer
178 views
Is there any backport-util for fork join framework for Java 1.5?
when concurrency utils were introduced there was backport-util. For Java 1.6 there is an implementation for fork/join framework ...
0
votes
0answers
105 views
What is ForkJoinPool Async mode
What does Async mode of ForkJoinPool mean? Javadoc mentions that it makes queues (is it per-thread queue?) FIFO instead of LIFO. What does it mean in practice?
0
votes
2answers
258 views
How do java fork -join frameworks allocate tasks onto a processor?
Can anyone explain how java fork-join frameworks allocate tasks to a processor. Can we control it ?
0
votes
3answers
162 views
Profile java parallel/sequential sorting
Does anyone know good way to profile a sorting algorithm in java(sequential and fork join) ?
because the running time is too short (sorting list size 5000..), System.nanoTime() seems not work ...
-2
votes
1answer
33 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
...
-5
votes
1answer
99 views
I want to know from the following question that whether the fork returns either 0 or 1, and what can be the internal function of fork()? [closed]
Consider the following code which uses fork():
int main()
{
int i = 0;
if (fork())
{
int j;
for (j = 0;j < 10; j++) { puts( "x" ); }
exit();
}
else {
...