Currently my application periodically blocked in IO , and the output is very low . I use some command to trace the process.
By using jstack i found that the app is hanging at FileOutputStream.writeBytes.
By using strace -f -c -p pid to collect syscall info, i found that. For normal situation, it has both futex and write syscalls. But when it went unnormal, there are only futex syscalls. The app keeps calling futex but all failed and throw ETIMEDOUT, just like this:
<futex resumed> =-1 ETIMEDOUT (Connecton timed out)
futex(Ox7f823, FUTEX_WAKE_PRIVATE,1)=0
futex(Ox7f824, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME) =-1<unfinished>
<futex resumed> =-1 ETIMEDOUT (Connecton timed out)
futex(Ox7f823, FUTEX_WAKE_PRIVATE,1)=0
futex(Ox7f824, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME) =-1<unfinished>
This issue happens periodically ,and continues for mintues or hours, and go normal again.
Escipally, when blocked in IO, echo 3 > /proc/sys/vm/drop_caches always makes it go normal temporarily. I googled it and found some similiar proleam, listing below.
Some info about my system. OS:Redhat 6.1, kernal version 2.6.31
JDK:1.7.0_05
CPU:X5650, 24cores
Memory :24GB and 48GB
Maybe the kernel bug in futex_wait()?
You can read about it here: https://groups.google.com/forum/#!topic/mechanical-sympathy/QbmpZxp6C64