Using java IO, it seems like forking a new process gives better ability for a process B to read data written by process A to file than what you could get if thread A wrote to a file that thread B is trying to read (within the same process).

It seems like the rules are not comparable to the memory model. So what file-based concurrency works ? References would be appreciated.

link|improve this question

69% accept rate
How did you came to conclusion "forking a new process gives better ability for a process B to read data"? Is it consistent across all operating systems? – Gladwin Burboz Feb 18 '10 at 22:41
It works that way on Linux 2.6.32, and by quite a wide margin. That's all I know. – krosenvold Feb 18 '10 at 22:45
2  
Can you provide a sample program that demonstrates this discrepancy? – Anon. Feb 18 '10 at 22:49
Anon: Check out this post incodewetrustinc.blogspot.com/2010/02/concurrency-in-maven.html – krosenvold Feb 19 '10 at 8:52
feedback

2 Answers

Any observations like this bound to be operating system specific, and may be specific to different versions of the operating system (kernel). What you are hitting here is probably related to the way that the OS implements threads, and thread scheduling. The Java platform provides little in the way of tuning for this kind of thing.

IMO, if you need better performance, you probably should not be using a file as a data transfer channel between two threads in the same JVM. Code your application to detect that the threads are colocated in the same JVM and use (say) Java Pipe streams.

link|improve this answer
feedback

Maybe it could have to do with thread and process blocking.

When a process wants a resource (writing/reading a file) it blocks untils the S.O. fulfills the requirement and return something to the process.

If you are not using hyperthreading a process with two threads will block both threads for fullfilling each one of the tasks. But if you separate them, maybe the S.O. can optimize access and paralelize the read/write better.

(just guessing :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.