Uploaded image for project: 'Infinispan'
  1. Infinispan
  2. ISPN-1347

LIRS eviction not evicting correctly

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Critical
    • 5.1.0.BETA4, 5.1.0.FINAL
    • 5.0.0.FINAL
    • Eviction
    • None

    Description

      It seems LIRS eviction at this moment only evicts the first entry in the HIR queue and nothing else. I have written a test based on this presentation located in the eviction-strategy module of edg-functional-tests that is at the moment failing.
      Upon closer examination I have found a couple of things I think may be the cause:

      • in infinispan.util.concurrent.BoundedConcurrentHashMap
        • in execute() of the LIRS eviction if you have more items in the accessQueue and while processing you choose an item to be evicted it is added to the evicted Set. But if it is still in the accessQueue(and the operation was put) it gets proccesed but in the end still ends up evicted because it was not removed from the evicted set.
        • in onEntryMiss of the LIRS eviction the very first if shouldn't first increment currentLIRSize because otherwise LIRSize is never full and therefore the LIRS algorithm never truly happens because execute() is never called that's why it only evicts from the HIR queue. It also causes the cache to be able to hold only maxEntries-1 entries. Also if (queue.size() < hirSizeLimit) condition is true the item should also be added to the stack in order to track its recency. And lastly I don't think onEntryMiss should be evicting elements because that way we can't track their recency. They will get eventually evicted by pruning.
        • the function onEntryRemove should not in my opinion remove entries from the stack because otherwise there is no way to track recency of HIR-nonresident blocks. They will eventually get removed from the stack by pruning. It also seems this function gets called when clearing the cache instead of clear.
      • in Segment class
        • the remove operation makes entries behave as if they were just added as is already documented there with a TODO
        • the get operation calls onEntryHit which can cause problems if get is used while servicing a put operation because it gets called twice

      If some of these things were design choices let me know so I will modify the test.

      Attachments

        Activity

          People

            vblagoje Vladimir Blagojevic (Inactive)
            jvilkola Jozef Vilkolak (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: