Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-22423

Index pages are preferentially evicted

    • Storage Execution
    • ALL
    • v3.4, v3.2

      • Create a collection consisting of 10 M documents each 1 kB in size
      • Start mongod with a cache size of 10 GB, a little too small to hold the data set (incl index and overhead)
      • Start reading documents at random

      Observed result:

      • At point A we have read most of the index into the cache - "pages read into cache" falls to near 0; whereas we are continuing to read collection pages into cache all the way through B. This reflects the fact that index pages contain many more entries than collection pages, so we hit all the index pages much more quickly than we hit the collection pages.
      • At the point B where the cache fills up we see collection pages being evicted at a rate of about 1k/s, and the rate of reading collection pages into the cache does not change when the cache fills: lru is essentially random in this case, and evicting a random collection page will not change the chance of a cache miss on the next random read, so cache miss rate states constant after the cache fills up
      • However we see index pages being evicted at nearly 4 k/s, about 3-4x the rate of collection pages, in spite of the fact that index pages are much "hotter" than collection pages so should be kept in cache by lru, and as a result rate of reads of index into the cache goes very high.

        1. evictions.png
          evictions.png
          216 kB
        2. ex_mongo.py
          4 kB
        3. WT-2391.png
          WT-2391.png
          111 kB
        4. WT-2391a.png
          WT-2391a.png
          122 kB

            Assignee:
            backlog-server-execution [DO NOT USE] Backlog - Storage Execution Team
            Reporter:
            bruce.lucas@mongodb.com Bruce Lucas (Inactive)
            Votes:
            2 Vote for this issue
            Watchers:
            29 Start watching this issue

              Created:
              Updated:
              Resolved: