Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what does "flush 253:0" in iotop file on RHEL

I have monitor the IO performance on RHEL via IOTOPs, and I find that there is one process named "flush 253:0" which is the most IO operator.

What does this "flush 253:0" mean? I search in google, not very accurate answer, it seems to be the root path of the system.

like image 274
user3003466 Avatar asked Sep 16 '14 02:09

user3003466


1 Answers

It's a kernel process that handles flushing dirty pages (that is your io-writes) from the page cache (that is, your actual file system writes are done asynchronously. This process writes the actual bytes to the drives). See also Cache and TLB Flushing Under Linux.

like image 86
Elliott Frisch Avatar answered Oct 23 '22 19:10

Elliott Frisch