Redis-17 Redisメモリ回収ポリシー

9491 ワード

文書ディレクトリ

  • 概要
  • maxmemory-policyパラメータ
  • 概要


    Rediもメモリ不足でエラーが発生したり、回収が長引いたりしてシステムが長期的に停止する可能性があるため、回収ポリシーの実行を把握する必要があります.Redisのプロファイルでは、Redisのメモリが所定の最大値に達すると、6つのポリシーのうちの1つを構成してキー値を淘汰し、いくつかのキー値ペアを回収することができます.

    maxmemory-policyパラメータ

    # Set a memory usage limit to the specified amount of bytes.
    # When the memory limit is reached Redis will try to remove keys
    # according to the eviction policy selected (see maxmemory-policy).
    #
    # If Redis can't remove keys according to the policy, or if the policy is
    # set to 'noeviction', Redis will start to reply with errors to commands
    # that would use more memory, like SET, LPUSH, and so on, and will continue
    # to reply to read-only commands like GET.
    #
    # This option is usually useful when using Redis as an LRU or LFU cache, or to
    # set a hard memory limit for an instance (using the 'noeviction' policy).
    #
    # WARNING: If you have slaves attached to an instance with maxmemory on,
    # the size of the output buffers needed to feed the slaves are subtracted
    # from the used memory count, so that network problems / resyncs will
    # not trigger a loop where keys are evicted, and in turn the output
    # buffer of slaves is full with DELs of keys evicted triggering the deletion
    # of more keys, and so forth until the database is completely emptied.
    #
    # In short... if you have slaves attached it is suggested that you set a lower
    # limit for maxmemory so that there is some free RAM on the system for slave
    # output buffers (but this is not needed if the policy is 'noeviction').
    #
    # maxmemory <bytes>
    
    # MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
    # is reached. You can select among five behaviors:
    #
    # volatile-lru -> Evict using approximated LRU among the keys with an expire set.
    # allkeys-lru -> Evict any key using approximated LRU.
    # volatile-lfu -> Evict using approximated LFU among the keys with an expire set.
    # allkeys-lfu -> Evict any key using approximated LFU.
    # volatile-random -> Remove a random key among the ones with an expire set.
    # allkeys-random -> Remove a random key, any key.
    # volatile-ttl -> Remove the key with the nearest expire time (minor TTL)
    # noeviction -> Don't evict anything, just return an error on write operations.
    #
    # LRU means Least Recently Used
    # LFU means Least Frequently Used
    #
    # Both LRU, LFU and volatile-ttl are implemented using approximated
    # randomized algorithms.
    #
    # Note: with any of the above policies, Redis will return an error on write
    #       operations, when there are no suitable keys for eviction.
    #
    #       At the date of writing these commands are: set setnx setex append
    #       incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd
    #       sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby
    #       zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby
    #       getset mset msetnx exec sort
    #
    # The default is:
    #
    # maxmemory-policy noeviction
    
    
  • volatile-lru:最近最も少ない淘汰戦略を採用して、Redisはそれらのタイムアウトした(タイムアウトしただけの)キー値のペアを回収して、つまりそれはそれらのタイムアウトしたキー値のペアだけを淘汰します.
  • allkeys-lru:最小使用を淘汰するポリシーを採用し、Redisはすべての(タイムアウトだけでなく)キー値ペアに対して最近最小使用した淘汰ポリシーを採用する.
  • volatile-random:ランダム淘汰ポリシーを使用してタイムアウトした(タイムアウトのみ)キー値対
  • を削除
  • allkeys-random:タイムアウトだけでなく、すべてのキー値ペアをランダム、淘汰ポリシーで削除します.このポリシーは一般的ではありません.
  • volatile-rtl:生存時間が最も短いキー値ペアポリシーを削除します.
  • noeviction:キー値ペアはまったく淘汰されません.メモリがいっぱいになると、getコマンドなどの読み取り操作を行うと、正常に動作し、書き込み操作を行うと、エラーが返されます.つまり、Redisがこのポリシーを採用してメモリが最大になると、読み書きしかできません.

  • Redisはデフォルトでnoevictionポリシーを使用します.すなわち、メモリが満たされている場合、書き込み操作は提供されず、読み取り操作のみが提供される.これは、インターネットシステムにとって数百万人以上のユーザーに関連することが多いため、回収ポリシーを設定する必要があるため、私たちの要件を満たすことはできません.
    LRUアルゴリズムまたはTTLアルゴリズムはいずれも正確なアルゴリズムではなく、近似的なアルゴリズムであることを指摘する必要がある.Redisは、全てのキー値ペアを比較することによって最も正確な時間値を決定することなく、どのキー値ペアを削除するかを決定する.これは、時間がかかりすぎて、回収ゴミの実行時間が長すぎて、サービスが停止するためである.
    Redisのデフォルトプロファイルには、パラメータmaxmemory-sampleが存在します.
    # LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated
    # algorithms (in order to save memory), so you can tune it for speed or
    # accuracy. For default Redis will check five keys and pick the one that was
    # used less recently, you can change the sample size using the following
    # configuration directive.
    #
    # The default of 5 produces good enough results. 10 Approximates very closely
    # true LRU but costs more CPU. 3 is faster but not very accurate.
    #
    # maxmemory-samples 5
    
    

    maxmemory-samplesを設定すると、Redisの削除は正確になりますが、Redisはより多くの時間をかけてより正確な値を計算する必要があります.
    回収タイムアウトポリシーの欠点は、タイムアウトのキー値のペアを指定する必要があることです.これは、プログラム開発にタイムアウトを設定するコードをもたらし、開発者の作業量を増加させるに違いありません.すべてのキー値ペアを回収し,使用中のキー値ペアを削除し,記憶の不安定性を増大させる可能性がある.ごみの回収の策略について、また注意しなければならないのは回収の時間で、Redisがごみの回収の期間に対して、システムが遅いことをもたらすためです.従って、回収時間を制御することには一定の利点があるが、この時間は短すぎたり長すぎたりしてはならない.短すぎると回収回数が頻繁になり、長すぎるとシステムの単回ごみ回収の停止時間が長すぎて、システムの安定性に不利になり、これらは設計者が実際の仕事の中で考えなければならない.