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

13,241

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.

Share:
13,241

Related videos on Youtube

user3003466
Author by

user3003466

Updated on June 04, 2022

Comments

  • user3003466
    user3003466 almost 2 years

    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.

  • user3003466
    user3003466 over 9 years
    Thanks for your reply! Do you know if try to reduce this value, which can we do optimization? Thanks.