--- title: "节点级限流处理动作配置" date: 2026-02-13 lastmod: 2026-02-13 description: "控制节点级限流触发时的处理动作" tags: ["限流配置", "写入控制", "性能保护"] summary: "配置项作用 # 当节点级限流触发时的处理动作。 默认值 # DROP 取值范围 # DROP:丢弃超出的请求 THROTTLE:延迟处理 配置格式 # # 丢弃超出的请求(默认) cluster.throttle.node.write.action: DROP # 延迟处理 cluster.throttle.node.write.action: THROTTLE " --- ## 配置项作用 当节点级限流触发时的处理动作。 ## 默认值 ``` DROP ``` ## 取值范围 - `DROP`:丢弃超出的请求 - `THROTTLE`:延迟处理 ## 配置格式 ```yaml # 丢弃超出的请求(默认) cluster.throttle.node.write.action: DROP # 延迟处理 cluster.throttle.node.write.action: THROTTLE ```