Uploaded image for project: 'Lustre'
  1. Lustre
  2. LU-12043

improve Lustre single thread read performances

Details

    • Improvement
    • Resolution: Fixed
    • Minor
    • Lustre 2.14.0
    • None
    • 9223372036854775807

    Description

      There are several efforts here and there which try to improve the performances of single
      thread read performances.

      this ticket is opened to track a simple enough patch to improve the performances as much
      as possible.

      Here is whole history:

      Currently, for sequential read IO, We grow up window
      size very quickly, and once we cached @max_readahead_per_file
      pages. For following command:

      dd if=/mnt/lustre/file of=/dev/null bs=1M

      We will do something like following:
      ...
      64M bytes cached.
      fast io for 16M bytes
      readahead extra 16M to fill up window.
      fast io for 16M bytes
      readahead extra 16M to fill up window.
      ....

      In this way, we could only use fast IO for 16M bytes and
      then fall through non-fast IO mode. this is also reason
      that why increasing @max_readahead_per_file don't give us
      performances up, since this value only changes how much
      memory we cached in memory, during my testing whatever
      I changed the value, i could only get 2GB/s for single thread
      read.

      Actually, we could do this better, if we have used
      more than 16M bytes readahead pages, submit another readahead
      requests in the background. and ideally, we could always
      use fast IO..I did a quick test with fake-IO on my limited
      PC server:

      Without patch VS Patched:
      ~2.0GB/S vs ~3.0 GB/s

      So we could gain at least 50% performance up, i supposed
      We could get more maybe more than 4GB/S with patch.

      Attachments

        Issue Links

          Activity

            [LU-12043] improve Lustre single thread read performances

            Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35217/
            Subject: LU-12043 llite: fix to submit complete read block with ra disabled
            Project: fs/lustre-release
            Branch: master
            Current Patch Set:
            Commit: 7e8efb339b0958146eb294fc9d961688f5d16079

            gerrit Gerrit Updater added a comment - Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35217/ Subject: LU-12043 llite: fix to submit complete read block with ra disabled Project: fs/lustre-release Branch: master Current Patch Set: Commit: 7e8efb339b0958146eb294fc9d961688f5d16079

            All patches has been merged.

            wshilong Wang Shilong (Inactive) added a comment - All patches has been merged.

            Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/34849/
            Subject: LU-12043 llite: move tunable params to sysfs_memparse()
            Project: fs/lustre-release
            Branch: master
            Current Patch Set:
            Commit: 59a3d7237df82ac2ce14b6779577584163f9122b

            gerrit Gerrit Updater added a comment - Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/34849/ Subject: LU-12043 llite: move tunable params to sysfs_memparse() Project: fs/lustre-release Branch: master Current Patch Set: Commit: 59a3d7237df82ac2ce14b6779577584163f9122b

            Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: https://review.whamcloud.com/37620
            Subject: LU-12043 llite: move tunable params to sysfs_memparse()
            Project: fs/lustre-release
            Branch: master
            Current Patch Set: 1
            Commit: 9fa91e61e5daccc9bba90b9c65c9fb054715b778

            gerrit Gerrit Updater added a comment - Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: https://review.whamcloud.com/37620 Subject: LU-12043 llite: move tunable params to sysfs_memparse() Project: fs/lustre-release Branch: master Current Patch Set: 1 Commit: 9fa91e61e5daccc9bba90b9c65c9fb054715b778

            Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35559/
            Subject: LU-12043 llite,readahead: don't always use max RPC size
            Project: fs/lustre-release
            Branch: b2_12
            Current Patch Set:
            Commit: 57d2dd820ed430009a6146180d11c5e2b04b5426

            gerrit Gerrit Updater added a comment - Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35559/ Subject: LU-12043 llite,readahead: don't always use max RPC size Project: fs/lustre-release Branch: b2_12 Current Patch Set: Commit: 57d2dd820ed430009a6146180d11c5e2b04b5426

            Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35438/
            Subject: LU-12043 llite: extend readahead locks for striped file
            Project: fs/lustre-release
            Branch: master
            Current Patch Set:
            Commit: cfbeae97d736152e5bdf8f3e759a260f6ee903d8

            gerrit Gerrit Updater added a comment - Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35438/ Subject: LU-12043 llite: extend readahead locks for striped file Project: fs/lustre-release Branch: master Current Patch Set: Commit: cfbeae97d736152e5bdf8f3e759a260f6ee903d8

            Yup, still two patches not landed yet.

            https://review.whamcloud.com/35217
            LU-12043 llite: fix bad performance with readahead disabled

            https://review.whamcloud.com/35438
            LU-12043 llite: extend readahead locks for striped file

            I think second one will be landed soon, while the first one need be some refreshed.

            wshilong Wang Shilong (Inactive) added a comment - Yup, still two patches not landed yet. https://review.whamcloud.com/35217 LU-12043 llite: fix bad performance with readahead disabled https://review.whamcloud.com/35438 LU-12043 llite: extend readahead locks for striped file I think second one will be landed soon, while the first one need be some refreshed.

            Are there any patches still not landed under this ticket, wshilong ?

            pfarrell Patrick Farrell (Inactive) added a comment - Are there any patches still not landed under this ticket, wshilong ?

            Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35216/
            Subject: LU-12043 llite: don't miss every first stride page
            Project: fs/lustre-release
            Branch: master
            Current Patch Set:
            Commit: 29d8eb5ee7dff422294c9ee3d0f34f1370cec800

            gerrit Gerrit Updater added a comment - Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35216/ Subject: LU-12043 llite: don't miss every first stride page Project: fs/lustre-release Branch: master Current Patch Set: Commit: 29d8eb5ee7dff422294c9ee3d0f34f1370cec800

            Minh Diep (mdiep@whamcloud.com) uploaded a new patch: https://review.whamcloud.com/35559
            Subject: LU-12043 llite,readahead: don't always use max RPC size
            Project: fs/lustre-release
            Branch: b2_12
            Current Patch Set: 1
            Commit: eccd7b3873e5395fc4087dec6b09acb91cadc1ef

            gerrit Gerrit Updater added a comment - Minh Diep (mdiep@whamcloud.com) uploaded a new patch: https://review.whamcloud.com/35559 Subject: LU-12043 llite,readahead: don't always use max RPC size Project: fs/lustre-release Branch: b2_12 Current Patch Set: 1 Commit: eccd7b3873e5395fc4087dec6b09acb91cadc1ef

            Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35215/
            Subject: LU-12043 llite: make sure readahead cover current read
            Project: fs/lustre-release
            Branch: master
            Current Patch Set:
            Commit: 8fbef5ee761920faa3c84f142f56934d6266a409

            gerrit Gerrit Updater added a comment - Oleg Drokin (green@whamcloud.com) merged in patch https://review.whamcloud.com/35215/ Subject: LU-12043 llite: make sure readahead cover current read Project: fs/lustre-release Branch: master Current Patch Set: Commit: 8fbef5ee761920faa3c84f142f56934d6266a409

            People

              wshilong Wang Shilong (Inactive)
              wshilong Wang Shilong (Inactive)
              Votes:
              1 Vote for this issue
              Watchers:
              14 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: