What to do if bo value in vmstat is too high

vmstat

I don't know what to do about high bo values is vmtstat.
bi is 0 but bo is about 6000. So I don't know what that means and what to do. The application running on server is hanging. I don't know if it is because of that bo value. But if it is, what should I do?

Server is a 32 core AMD Opteron 2.4 GHz and has 256 GB of RAM.

The top command output is something like that:

Cpu(s):  0.5%us,  0.1%sy,  0.0%ni, 96.5%id,  2.9%wa,  0.0%hi,  0.0%si,  0.0%st
Mem:  264284404k total, 261750208k used,  2534196k free,  2923280k buffers
Swap: 266338296k total,    11624k used, 266326672k free, 247120176k cached
  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND
30009 db2inst1  25   0 6636m 754m 638m S 16.1  0.3   7938:49 db2sysc
11217 root      18   0 1324m 1.1g  49m S  1.0  0.4   5441:39 java
22270 db2fenc1  15   0 93976  14m 6828 S  1.0  0.0   5:29.50 db2fmp32
24419 root      15   0 13004 1376  820 R  1.0  0.0   0:00.49 top
22269 db2fenc1  15   0 93976  14m 6832 S  0.3  0.0   5:09.12 db2fmp32
    1 root      15   0 10348  700  584 S  0.0  0.0   0:12.16 init
    2 root      RT  -5     0    0    0 S  0.0  0.0   0:12.48 migration/0
    3 root      34  19     0    0    0 S  0.0  0.0   0:00.93 ksoftirqd/0

Best Answer

Some application is writing out data 6000 blocks per second. With a decent system that shouldn't be too much.

What that application is, we can't tell you since your post lacks a lot of information. You can see the per-application I/O statistics with the command iotop.

Related Topic