search
HomeDatabaseRedisHow to clean up Redis memory fragments

What is Redis memory fragmentation?

The total amount of remaining space in the operating system is sufficient, but when applying for a space with a continuous address of N bytes, there is no continuous space of N bytes in the remaining memory space. Then, among the remaining memory spaces, less than N The contiguous memory space of bytes is memory fragmentation.

How is Redis memory fragmentation formed?

There are internal and external reasons for the formation of memory fragmentation:

  • Internal reason: The allocation strategy of the memory allocator determines that the operating system cannot achieve "allocation on demand".

    • Redis uses libc, jemalloc, and tcmalloc to allocate memory. By default, jemalloc is used.

    • The memory allocator allocates memory space according to a fixed size, not entirely according to the memory size requested by the application.

    • Taking jemalloc as an example, it divides the memory space according to a series of fixed sizes, such as 8 bytes, 16 bytes, 32 bytes,..., 2KB, 4KB, etc. Jemalloc will allocate a fixed size space closest to the memory requested by the program.

  • External reason: The key-value pairs are of different sizes, and the key-value pairs can be modified and deleted.

    • When Redis applies for memory space allocation, for memory space requirements of different sizes, the memory allocator allocates memory space according to a fixed size. The allocated memory space is generally larger than the requested memory space. The memory space is larger, which will produce certain memory fragmentation.

    • Key-value pairs will be modified and deleted, which will lead to space expansion and release.

How to determine whether Redis has memory fragmentation?

DAS queries the detailed information of memory usage through the INFO command provided by Redis. The command is as follows:

INFO memory
# Memory
used_memory:350458970752
used_memory_human:326.39G
used_memory_rss:349066919936
used_memory_rss_human:325.09G
…
mem_fragmentation_ratio:1.00
  • used_memory: Indicates that Redis is used to save data. The actual memory space requested.

  • used_memory_rss: Indicates the physical memory space actually allocated to Redis by the operating system, which includes memory space fragments.

  • mem_fragmentation_ratio refers to the current memory fragmentation rate of Redis. Calculation formula: mem_fragmentation_ratio=used_memory_rss/used_memory

    • mem_fragmentation_ratio is greater than or equal to 1 but less than or equal to 1.5. This situation is reasonable.

    • mem_fragmentation_ratio is greater than 1.5, indicating that the memory fragmentation rate has exceeded 50%.

How to clean up memory fragments?

A "simple and crude" method is to restart the Redis instance. However, this method will bring two consequences:

  • If the data in Redis is not persisted, the data will be lost;

  • Regardless of the Redis data Whether it is persisted or not, the AOF or RDB method needs to be used to restore the data, and the recovery time depends on the size of the AOF or RDB file. And if there is only one Redis instance, services cannot be provided during the recovery phase.

Is there a better way? Yes, from version 4.0-RC3 onwards, Redis itself provides a method to automatically clean up memory fragments.

Automatic cleaning of memory fragments

Cleaning of memory fragments, simply put, means "moving to make way and merging space".

When there is data that divides a continuous memory space into several discontinuous spaces, the operating system will copy the data to another place, and the original discontinuous memory space becomes a continuous memory space. .

But fragmentation cleanup comes at a cost. Moving multiple copies of data to a new location and freeing up the original space is something the operating system must do, but this process takes time. In addition, when data is copied, Redis will be blocked and performance will be reduced.

How to alleviate this problem?

Redis specifically provides parameter settings for the automatic memory fragmentation cleaning mechanism. You can set parameters to control the start and end timing of fragmentation cleaning, as well as the proportion of CPU occupied, thereby reducing the performance impact of fragmentation cleaning on Redis request processing.

First, turn on automatic memory fragmentation cleanup:

config set activedefrag yes
Then, set the conditions that trigger memory cleanup:

  • active- defrag-ignore-bytes 100mb: Indicates that when the number of bytes of memory fragmentation reaches 100MB, cleanup will begin;

  • active-defrag-threshold-lower 10: Indicates that the memory fragmentation space occupies the operating system allocation When the total space allocated to Redis reaches 10%, cleanup begins.

Finally, control the upper and lower limits of the proportion of CPU time occupied by cleaning operations:

  • active-defrag-cycle-min 25: Indicates automatic cleaning The proportion of CPU time used in the process is not less than 25% to ensure that the cleaning can proceed normally;

  • active-defrag-cycle-max 75: Indicates that the proportion of CPU time used in the automatic cleaning process is not high Above 75%, once it exceeds, the cleaning will be stopped to avoid a large number of memory copies blocking Redis during cleaning, resulting in increased response latency.

The above is the detailed content of How to clean up Redis memory fragments. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
es和redis区别es和redis区别Jul 06, 2019 pm 01:45 PM

Redis是现在最热门的key-value数据库,Redis的最大特点是key-value存储所带来的简单和高性能;相较于MongoDB和Redis,晚一年发布的ES可能知名度要低一些,ES的特点是搜索,ES是围绕搜索设计的。

一起来聊聊Redis有什么优势和特点一起来聊聊Redis有什么优势和特点May 16, 2022 pm 06:04 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于redis的一些优势和特点,Redis 是一个开源的使用ANSI C语言编写、遵守 BSD 协议、支持网络、可基于内存、分布式存储数据库,下面一起来看一下,希望对大家有帮助。

实例详解Redis Cluster集群收缩主从节点实例详解Redis Cluster集群收缩主从节点Apr 21, 2022 pm 06:23 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis Cluster集群收缩主从节点的相关问题,包括了Cluster集群收缩概念、将6390主节点从集群中收缩、验证数据迁移过程是否导致数据异常等,希望对大家有帮助。

详细解析Redis中命令的原子性详细解析Redis中命令的原子性Jun 01, 2022 am 11:58 AM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于原子操作中命令原子性的相关问题,包括了处理并发的方案、编程模型、多IO线程以及单命令的相关内容,下面一起看一下,希望对大家有帮助。

Redis实现排行榜及相同积分按时间排序功能的实现Redis实现排行榜及相同积分按时间排序功能的实现Aug 22, 2022 pm 05:51 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,希望对大家有帮助。

实例详解Redis实现排行榜及相同积分按时间排序功能的实现实例详解Redis实现排行榜及相同积分按时间排序功能的实现Aug 26, 2022 pm 02:09 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,下面一起来看一下,希望对大家有帮助。

一文搞懂redis的bitmap一文搞懂redis的bitmapApr 27, 2022 pm 07:48 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了bitmap问题,Redis 为我们提供了位图这一数据结构,位图数据结构其实并不是一个全新的玩意,我们可以简单的认为就是个数组,只是里面的内容只能为0或1而已,希望对大家有帮助。

redis error什么意思redis error什么意思Jun 17, 2019 am 11:07 AM

redis error就是redis数据库和其组合使用的部件出现错误,这个出现的错误有很多种,例如Redis被配置为保存数据库快照,但它不能持久化到硬盘,用来修改集合数据的命令不能用。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment