--- title: "分片级写入请求数限制配置" date: 2026-02-18 lastmod: 2026-02-18 description: "控制分片级每秒允许的最大写入请求数" tags: ["限流配置", "写入控制", "分片管理"] summary: "配置项作用 # 设置分片级别每秒允许的最大写入请求数量。 默认值 # 0(不限制) 配置格式 # # 每秒最多 500 个请求 cluster.throttle.shard.write.max_requests: 500 # 不限制请求数(默认) cluster.throttle.shard.write.max_requests: 0 " --- ## 配置项作用 设置分片级别每秒允许的最大写入请求数量。 ## 默认值 ``` 0(不限制) ``` ## 配置格式 ```yaml # 每秒最多 500 个请求 cluster.throttle.shard.write.max_requests: 500 # 不限制请求数(默认) cluster.throttle.shard.write.max_requests: 0 ```