Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anybody know of a way to lock down individual threads within a Java process to specific CPU cores (on Linux)? I've done this in C, but can't find how to do this in Java. My instincts are that this will require a JNI call, but I was hoping someone here might have some insight or might have done it before.

Thanks!

share|improve this question
3  
As always with questions of this type: Why do you think this is necessary? – gimpf Feb 10 '10 at 16:10
See my answer below to Hassan's comment. Some threads are very I/O intensive, others are CPU intensive. If I'm shielding I/O interrupts to a particular core, I'd like the I/O intensive threads to be on cores on the same socket, and I'd like to shield the CPU-intensive threads from the I/O. – Dave Feb 10 '10 at 16:24
22  
@gimpf: as always with this type of "question questionning": SO is not about the "why", it's about the "how". CPU affinity exists for a reason, there's a reason there are utilities under both Linux and Windows to set a process's CPU affinity. The OP's question is a perfectly valid question that wants no "why" but a "how". – SyntaxT3rr0r Feb 10 '10 at 17:22
5  
@WizardOfOdds: I doubt that the "why" is forbidden on SO, and as Java is usually not the first programming language for concurrency-related performance tweaks, I think a sanity check is valid. – gimpf Feb 10 '10 at 21:24
Right now I need the answer to this question in order to implement NUMA optimisations. – Tim Cooper Oct 10 '12 at 0:51

6 Answers

up vote 25 down vote accepted

You can't do this in pure java. But if you really need it -- you can use JNI to call native code which do the job. This is the place to start with:

http://ovatman.blogspot.com/2010/02/using-java-jni-to-set-thread-affinity.html

http://blog.toadhead.net/index.php/2011/01/22/cputhread-affinity-in-java/

UPD: After some thinking, I've decided to create my own class for this: ThreadAffinity.java It's JNA-based, and very simple -- so, if you want to use it in production, may be you should spent some time making it more stable, but for benchmarking and testing it works well as is.

UPD 2: There is another library for working with thread affinity in java. It uses same method as previously noted, but has another interface

share|improve this answer
+1 Works! Awesome! Note the comment I left in the first blog - you need #define _GNU_SOURCE above all the includes. – Erick Robertson Nov 7 '11 at 18:22
1  
+1: I have turned this functionality into a library which uses JNI or JNA depending on what is available. It also has a low latency timer and support busy waiting with the PAUSE asm instruction. github.com/peter-lawrey/Java-Thread-Affinity – Peter Lawrey Feb 9 '12 at 9:14
   
@PeterLawrey That's great, thanks! (assuming it works which I have yet to verify). There are some issues with your library (mostly documentation and a bug), though; how can I contact you about that? – Raphael Mar 1 '12 at 11:12
Best to log bugs this way github.com/peter-lawrey/Java-Thread-Affinity/issues so they don't get forgotten – Peter Lawrey Mar 1 '12 at 11:55
This is really the best way to do it, although my way below works too. – Dave Apr 20 '12 at 22:15
show 1 more comment

I know it's been a while, but if anyone comes across this thread, here's how I solved this problem. I wrote a script that would do the following:

  1. "jstack -l "
  2. Take the results, find the "nid"'s of the threads I want to manually lock down to cores.
  3. Taskset those threads.
share|improve this answer
Out of interest, I thought taskset only worked on processes not individual threads. What is the syntax for doing it to a thread? – Matt Apr 22 '11 at 16:45

IMO, this will not be possible unless you use native calls. JVM is supposed to be platform independent, any system calls done to achieve this will not result in a portable code.

share|improve this answer
4  
I'm not concerned about portability. – Dave Feb 10 '10 at 16:21
4  
@questzen: and what if the system call is made only if the Java program is found to be run on an OS supporting said call? The code would still be portable but simply not set any CPU affinity on other OSes. This is the one thing that always crack me up: people screaming "non portable code" as soon as you do some JNI or some Runtime.exec(). I've got program that do both and that work on Linux, Windows and OS X. – SyntaxT3rr0r Feb 10 '10 at 17:23
It's not about whether to use or not use native calls but about whether the platform supports this "out of the box". @questzen is right that the JVM will not abstract access to this because it's not very platform neutral. You might be able to find third party libraries that will do it. – PSpeed Feb 10 '10 at 21:49

It's not possible (at least with plain Java).

You can use thread pools to limit the amount of threads (and therefore cores) used for different types of work, but there is no way to specify a core to use.

There is even the (small) possibility that your Java runtime doesn't support native threading for your OS or hardware. In this case, green threads are used and only one core will be used for the whole JVM.

share|improve this answer

The JVM takes care of your threads ... binding threads would more likely cause performance degradation than improvements --i.e., you have absolutely no control over data locality -- why would you want to bind a thread to some core ? Also the Java way of doing things is thread pools -- so even if you had controll over data locality and you had bound your threads cores. If you make use of the pools your tasks will fly around to different threads.

share|improve this answer
I've got a couple of threads that are very I/O intensive, and some that are very CPU intensive. In C it was critical to isolate them from each other. Is this not the case with Java? I can't imagine how it can know that, so I can't imagine performance is better with a generic scheduling scheme than one in which I can give it some guidance/prior knowledge. – Dave Feb 10 '10 at 16:22
Have two layers then IMO, one for the C threads and one for the JAVA. – Hassan Syed Feb 10 '10 at 16:25
Sorry for the confusion - in the past I've worked in C, and this is what I've done. Now I have to work in Java, and I'm hoping to accomplish something similar. For the time being, C is not an option. – Dave Feb 10 '10 at 16:28
I doubt you can solve this problem without managing your IO threads externally. – Hassan Syed Feb 10 '10 at 16:41
2  
I fear if your I/O routines are that intensive that you may run into memory bottle necks, etc. long before thread affinity becomes a critical element. Java can move objects around in memory to support its needs and this can kill the kind of stuff we really cared about in high-performance C/assembly code. If you move even your buffer management to native code then you might work around this... and have an 'in' into dealing with thread affinity as well. But some native code will be required either from you or a third party library. – PSpeed Feb 10 '10 at 21:55
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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