Comment by 0c3ca83

5 days ago

Why would you use uring to read from an mmap? Couldn't you just memcpy?

To be more precise: i use that map to send assets out directly to clients from a zip file.

Its a new web server i am building and its the fastest way i could find out.

Just switching from epoll to liburing made the server ~45% faster too, its ridiculous. It can serve 10 gigabyte per second with a single thread, or around 10 million responses per second with h2 and 32 multiplexed requests.

I had to write a new http load generator for that since i couldn't find one which could generate enough load to saturate my server or be fast enough to withstand it.

  • 10 gb per second is pretty slow for a disk. You should be seeing much higher than that.

    • ??? The only configuration that will allow disk reads at 10 GB/s is if you're using PCIe 5.0. PCIe 4.0 or lower, and SATA will not drop out long before that.

      He's very clearly hauling data straight from the page cache.

Maybe they meant using IORING_OP_MADVISE with MADV_WILLNEED to bring ranges into memory?

  • The Linux-specific MADV_POPULATE_READ is much more reliable than MADV_WILLNEED if you want to implement read-ahead for a memory-mapped file.

    In my opinion, the POSIX advices specified for madvise are useless or even dangerous.

    On Linux, for precise control of memory-mapped files one should use only these 4 Linux-specific advices: MADV_COLD, MADV_PAGEOUT, MADV_POPULATE_READ & MADV_POPULATE_WRITE.

    These should be used within io_uring, so that they will be executed asynchronously.

    These have a well-documented meaning and using them carefully should be sufficient to reach optimum performance with mmap.