fix(紫鸟): 店铺索引刷新加轮级时间预算熔断——单轮超 8 分钟即中断,剩余 key 顺延下一轮(游标续跑),避免紫鸟接口半死时整轮占锁几十分钟阻塞后续定时轮

This commit is contained in:
2026-09-11 17:02:13 +08:00
parent 2a9110ec32
commit 540d6588e6
3 changed files with 25 additions and 0 deletions
@@ -61,4 +61,10 @@ public class ZiniaoProperties {
* null/空/<=0 表示不限制(不推荐)。
*/
private Integer shopIndexRefreshBatchSize;
/**
* 单轮索引刷新的时间预算(秒);超时即中断本轮,剩余 key 顺延下一轮。
* null/<=0 使用内置默认(8 分钟)。
*/
private Integer shopIndexRoundTimeoutSeconds;
}