Skip to content
Snippets Groups Projects
Commit 8105cec7 authored by Vladimir Davydov's avatar Vladimir Davydov Committed by Konstantin Osipov
Browse files

vinyl: add per-index mem and run iterator stat

Replace box.info.vinyl().performance.iterator.{run,mem} global counters
with the following per index counters:

  memory
    iterator
      lookup            # number of lookups in the memory tree
      get               # number of statements returned by mem iterator
        rows
        bytes

  disk
    iterator
      lookup            # number of lookups in the page index
      get               # number of statements returned by run iterator
        rows
        bytes

      bloom             # number of times bloom filter
        hit             #   allowed to avoid a disk read
        miss            #   failed to prevent a disk read

      read              # number of statements actually read from disk
        rows
        bytes
        bytes_compressed
        pages

Needed for #1662
parent a1d7be12
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment