Recently, I've been working on the deployment of concurrent objects onto multicore. In a sample, I use BlockingQueue.take() method whose specification mentions that it is blocking. It means that the method does not release the enclosing thread's resources such that it can be re-used for other concurrent tasks. This is useful since the total number of live threads in a JVM instance is limited and if the application would need thousands of live threads, then it is vital to be able to re-use suspended threads. On the other hand, JVM uses a 1:1 mapping from application-level threads to OS-level threads in Java; i.e. each Java Thread instance becomes an underlying OS-level thread.
The current solution is based on java.util.concurrency in Java 1.5+. Still, we need worker threads that are such scalable to a large number. Now, I am interested to find the following answers:
- Is there any way to replace the implementation of
java.lang.Threadin JVM such that I can plug my own Thread implementation? - Is this only possible through tweaking C++ sections of the thread implementation in JVM and recompiling it?
- Is there any library to provide a way to replace the classical thread in Java?
- Again, in the same line, is there a library or a way to guide how some threads in Java can be mapped to only one thread in the OS-level?
I also found this discussing different implementations of JVM and I am not sure if they could help.
Thanks for your comments and ideas in advance.
await. Whenever an object is introduced into the queue, then you can ´signal´ any awaiting thread... this might not be as simple as it sounds, then again, it would be simpler than writing code for your own threads – chahuistle Jul 20 '11 at 22:46ExecutorServicealong with a repository of asynchronous messages stored in the object. The ES service constantlytake()s the next message from the repo and tries to run it. The problem is that we want to make the object use a single thread of execution, so when the thread fortake()is not released then we face this problem to have another separate thread for the actual execution of the message. Please let me know if more elaboration is needed. – nobeh Jul 21 '11 at 6:55await()releases the enclosing thread resources. By blocking, it is meant that we need to completely detach the thread to be re-used for another execution. – nobeh Jul 21 '11 at 6:57