Что делает Redis, когда у него заканчивается память?


Это может быть простой вопрос, но мне трудно найти ответ. Как Redis 2.0 справляется с исчерпанием максимальной выделенной памяти? Как он решает, какие данные удалить или какие данные сохранить в памяти?

7 87

7 ответов:

Если у вас включена функция виртуальной памяти (новая в версии 2.0 или 2.2, я думаю), то Redis начинает хранить "не так часто используемые" данные на диск, когда память заканчивается.

если виртуальная память в Redis отключена, кажется, что виртуальная память операционной системы начинает использоваться (т. е. своп), и производительность падает чрезвычайно.

теперь вы также можете настроить Redis с параметром maxmemory, который не позволяет Redis использовать больше память (по умолчанию).

новые версии Redis имеют различные политики при достижении maxmemory:

  • volatile-LRU удалить ключ среди из них со сроком действия, пытаясь удалите ключи, которые не использовались в последнее время.
  • volatile-ttl удалить ключ среди из них со сроком действия, пытаясь удалите ключи с коротким оставшимся временем жить.
  • volatile-случайное удаление a случайный ключ среди тех, у кого есть срок действия установлен.
  • allkeys-lru как volatile-lru, но удалит каждый вид ключа, как обычные ключи, так и ключи со сроком действия, устанавливаемым.
  • allkeys-random вроде летучие-случайные, но уберут каждый вид ключей, оба нормальных ключа и ключи с истекающим набором.

Если вы выбираете политику, которая удаляет только ключи с истекшим набором, то когда Redis заканчивается память, похоже, что программа просто прерывает операцию malloc (). То есть, если вы попытаетесь сохранить больше данных, операция просто завершится неудачей ужасно.

некоторые ссылки для получения дополнительной информации (так как вы не должны просто верить мне на слово):

С Рэдис.conf, версия 2.8

# Don't use more memory than 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 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 -> remove the key with an expire set using an LRU algorithm
# allkeys-lru -> remove any key according to the LRU algorithm
# volatile-random -> remove a random key 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 expire at all, just return an error on write operations
#
# 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 volatile-lru

Я совсем недавно начал читать о Redis, так что я не уверен. Но, я наткнулся на несколько лакомых кусочков, которые могут быть полезны.

вот фрагмент из http://antirez.com/post/redis-as-LRU-cache.html:

еще один способ использовать Redis в качестве кэша директива максимальной памяти, функция что позволяет задать максимальное объем используемой памяти. При появлении новых данных добавляется к серверу и памяти лимит уже достигнут, сервер удалит старые данные, удаление Летучий ключ, то есть ключ с Истекает (тайм-аут) набор, даже если ключ все еще далек от истечения автоматически.

кроме того, Redis 2.0 имеет режим виртуальной машины, в котором все ключи должны помещаться в память, но значения для редко используемых ключей могут быть включены диск:

Если вам интересно, что Redis (2.8) на самом деле отвечает, когда он достигает максимума, определенного его конфигурацией, это выглядит так:

$ redis-cli
127.0.0.1:6379> GET 5
"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
127.0.0.1:6379> SET 5 a
(error) OOM command not allowed when used memory > 'maxmemory'.

недавно я испытал ситуацию без свободной памяти, и мое приложение остановилось (запись невозможна, чтение было возможно), запуск PHP-скриптов остановился на полпути и должен был быть kill -9'D вручную (даже после того, как память была доступна).

я предположил, что произошла потеря данных( или несогласованность данных), поэтому я сделал flushdb и восстановлены из резервных копий. Урок усвоен? Резервные копии - это ваш друг.

обновить redis 4.0

127.0.0.1:6379> MEMORY HELP
1) "MEMORY DOCTOR                        - Outputs memory problems report"
2) "MEMORY USAGE <key> [SAMPLES <count>] - Estimate memory usage of key"
3) "MEMORY STATS                         - Show memory usage details"
4) "MEMORY PURGE                         - Ask the allocator to release memory"
5) "MEMORY MALLOC-STATS                  - Show allocator internal stats"

/ usr / local/etc / redis.conf

############################## MEMORY MANAGEMENT ################################

# 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

# 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

Redis не является кэшем, как memcached, по умолчанию (где maxmemory-policy параметр имеет значение noeviction) все данные, которые вы помещаете в redis, не будут удалены, единственное исключение-использование EXPIRE.