首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏数据和云

    Oracle 20c 新特性:Online SecureFiles Defragmentation 在线的 LOB 碎片整理

    墨墨导读:在使用 LOB 的时候,可能大家都遇到过碎片和空间问题的困扰,在 20c 中,Oracle提供了对于 SecureFiles 的碎片整理功能,完善了对于大对象碎片化的处理过程。

    39220发布于 2020-05-18
  • 来自专栏数据库相关

    MongoDB 监控碎片整理的状态和进度

    https://www.mongodb.com/zh-cn/docs/manual/core/defragment-sharded-collections/monitor-defragmentation-sharded-collection /#std-label-monitor-defragmentation-sharded-collectionhttps://www.mongodb.com/zh-cn/docs/manual/core/

    40220编辑于 2024-10-04
  • 来自专栏数据库相关

    redis4的自动内存整理

    p 6379 info | grep ratio 我们在线上遇到的问题: 127.0.0.1:7001> config set activedefrag yes (error) ERR Active defragmentation lazyfree_pending_objects:0 可以看到  mem_fragmentation_ratio 从1.48 降低到了1.21了 redis4 碎片整理相关的配置说明: # Enabled active defragmentation

    2.1K20发布于 2019-09-17
  • 来自专栏Kevinello的技术小站

    Redis内存碎片的产生与清理

    Starting in Redis 4, a new active defragmentation feature is available when Redis is configured to use 以上 可以开启自动内存碎片清理: 127.0.0.1:6379[6]> config set activedefrag yes OK 自动内存清理的一些相关配置如下: # Enabled active defragmentation

    4K31编辑于 2022-08-19
  • 来自专栏linux驱动个人学习

    LWN 105021: 主动内存碎片整理

    原文:Active memory defragmentation (https://lwn.net/Articles/105021/) 原创:By corbet @ Oct. 5, 2004 翻译: those is Marcelo Tosatti, who posted a patch(https://lwn.net/Articles/104843/) which adds active memory defragmentation

    1.5K20发布于 2021-06-10
  • 来自专栏开源部署

    Redis自动化安装以及集群实现

    aof-rewrite-incremental-fsync yes rdb-save-incremental-fsync yes ########################### ACTIVE DEFRAGMENTATION ####################### # Enabled active defragmentation # activedefrag yes # Minimum amount of fragmentation

    49310编辑于 2022-08-18
  • 来自专栏CSDN搜“看,未来”

    redis.conf翻译与配置(六)【redis6.0.6】

    活动碎片整理 原文 ########################### ACTIVE DEFRAGMENTATION ####################### # # What is active defragmentation? # ------------------------------- # # Active (online) defragmentation allows a Redis server to compact # Enabled active defragmentation # activedefrag no # Minimum amount of fragmentation waste to start # Enabled active defragmentation # activedefrag no 可以将Redis的不同线程和进程固定到系统中的特定cpu上,以最大限度地提高服务器的性能。

    86430编辑于 2022-05-06
  • 来自专栏Java技术栈

    重磅:Redis 5.0 正式版发布了,19 个新特性!

    升级 Active defragmentation 至 v2 版本 7. 增强 HyperLogLog 的实现 8. 更好的内存统计报告 9.

    5.6K20发布于 2018-11-05
  • 来自专栏Java学习网

    Linux系统安装Oracle 19c RAC方法(一)

    ~]# cat /sys/kernel/mm/transparent_hugepage/enabled [always] madvise never # 查看透明大页面整理碎片功能是否开启,THP defragmentation

    1.9K20发布于 2021-11-05
  • 来自专栏听雨堂

    安装程序无法复制一个或多个文件。特定错误码是0x4b8。

    这里是每种模式的语法: Defragmentation  :  ESEnTUtl /d <database name> [options] 碎片整理模式        :  ESEnTUtl /d <数据库文件名

    1.1K60发布于 2018-01-23
  • 来自专栏云计算linux

    Redis 5.0新功能介绍

    redis-trib.rb) 移植到了redis-cli 中的 C 语言代码 新的有序集合(sorted set)命令:ZPOPMIN/MAX 和阻塞变体(blocking variants) 升级 Active defragmentation

    49910编辑于 2024-12-19
  • 来自专栏Web技术布道师

    redis5.x新特性,Stream流数据类型使用简单教程

    5.新sorted set命令:ZPOPMIN / MAX 和 (blocking variants) 6.升级 Active defragmentation V2。

    1.4K20发布于 2019-05-13
  • 来自专栏软件工程

    玩转Redis-删除了两百万key,为什么内存依旧未释放?

    config set activedefrag yes 让我们看看相关的配置文件: # 以下内容节选至 redis.conf ########################### ACTIVE DEFRAGMENTATION enable this feature when # needed with the command "CONFIG SET activedefrag yes". # # Enabled active defragmentation

    3.5K40编辑于 2022-06-08
  • 来自专栏小树洞

    Redis 内存碎片分析

    yes 这里我设置activedefrag参数时遇到下面的报错 127.0.0.1:6379> config set activedefrag yes (error) DISABLED Active defragmentation

    3.2K30发布于 2021-02-09
  • 来自专栏芋道源码1024

    10 分钟不全面了解 Redis 5.0 新特性

    Active defragmentation version 2. 7. Improvemenets in HyperLogLog implementations. 8.

    1.5K00发布于 2018-11-22
  • Java AI 开发全攻略:Spring AI、LangChain4J、Dify、百炼与微调一站式掌握

    MemoryDefragmentationConfig defragmentationConfig() { return MemoryDefragmentationConfig.builder() .defragmentation_interval (1000) .max_defragmentation_time_ms(500) .defragmentation_threshold(0.1) // reserved_memory(512 * 1024 * 1024) // 保留 512MB .allocation_strategy("best_fit") .defragmentation_enabled

    2.5K11编辑于 2025-11-17
  • 来自专栏全栈程序员必看

    Redis配置文件详解(Redis 4.0.8)

    # lfu-log-factor 10 # lfu-decay-time 1 ACTIVE DEFRAGMENTATION(活跃碎片整理): ########################### ACTIVE DEFRAGMENTATION(活跃碎片整理) ####################### # 警告:这个特性是实验性的。 # Enabled active defragmentation # activedefrag yes # Minimum amount of fragmentation waste to start

    1.3K31编辑于 2022-09-05
  • 来自专栏Elasticsearch专栏

    【docker专题_06】docker安装redis

    . # # lfu-log-factor 10 # lfu-decay-time 1 ########################### ACTIVE DEFRAGMENTATION ###### # even in production and manually tested by multiple engineers for some # time. # # What is active defragmentation # ------------------------------- # # Active (online) defragmentation allows a Redis server to compact SET activedefrag yes". # # The configuration parameters are able to fine tune the behavior of the # defragmentation # Enabled active defragmentation # activedefrag yes # Minimum amount of fragmentation waste to start

    46910编辑于 2024-03-04
  • 来自专栏AustinDatabases

    MYSQL PMM 搭建容易,细节难

    相信这里面至少还有两个图形没有数据 1 innodb online DDL 2 innodb Defragmentation 为什么,因为这两个图形是仅仅服务于 MariaDB的,所以如果你使用的是官版的或者是

    1.6K20发布于 2019-12-16
  • 来自专栏巫山跬步

    云盘文件系统比较:Ext4、XFS和Btrfs

    另外还有些特性如无日志模式、多块分配、延迟分配、在线去除碎片(defragmentation)等。 高性能的读写/只读快照,得益于cow,增量快照和备份非常直接、灵活且低成本;软raid支持,数据和元数据的stripe和mirror生产环境级别支持;透明的压缩,支持lzo和zlib;在线去碎片(online defragmentation

    15.6K3614发布于 2021-01-03
领券