概述
-ERR bad lua script for redis cluster, all the keys that the script uses should be passed using the KEYS arrayrn
见解释https://help.aliyun.com/document_detail/145968.html?spm=5176.11065259.1996646101.searchclickresult.30071fcfYM8QY7
使用了ratelimitJ
和 RRateLimiter rateLimiter = redisson.getRateLimiter(key);....
都有报错
限流lua脚本
参考https://github.com/dijia478/redis-cluster-client
/**
* 滑动窗口限流使用的lua脚本,保证原子性
*
* local index = tonumber(ARGV[1]);
* local time_window = tonumber(ARGV[2]);
* local now_time = tonumber(ARGV[3]);
* local far_time = redis.call('lindex', KEYS[1] , index);
* if (not far_time)
* then
*
redis.call('lpush', KEYS[1] , now_time);
*
redis.call('pexpire', KEYS[1] , time_window+1000);
*
return 1;
* end
* if (now_time - far_time > time_window)
* then
*
redis.call('rpop', KEYS[1] );
*
redis.call('lpush', KEYS[1] , now_time);
*
redis.call('pexpire', KEYS[1] , time_window+1000);
*
return 1;
* else
*
return 0;
* end
*/
String SLIDE_WINDOW_LUA = "local index = tonumber(ARGV[1]);n" + "local time_window = tonumber(ARGV[2]);n" + "local now_time = tonumber(ARGV[3]);n" + "local far_time = redis.call('lindex', KEYS[1] , index);n" + "if (not far_time)n" + "thenn" + "
redis.call('lpush', KEYS[1] , now_time);n" + "
redis.call('pexpire', KEYS[1] , time_window+1000);n" + "
return 1;n" + "endn" + "n" + "if (now_time - far_time > time_window)n" + "thenn" + "
redis.call('rpop', KEYS[1] );n" + "
redis.call('lpush', KEYS[1] , now_time);n" + "
redis.call('pexpire', KEYS[1] , time_window+1000);n" + "
return 1;n" + "elsen" + "
return 0;n" + "end";
/**
* 是否超过限制
*
* @param key
key
* @param count
次数
* @param timeWindow 时长 long类型
* @return 超过限制 false 未超额 true
*/
public Boolean slideWindowLua(String key, int count, long timeWindow) {
if (count <= 0 || timeWindow <= 0) {
return false;
}
Object eval = null;
try {
List<String> argvList = new ArrayList<>();
argvList.add(String.valueOf(count - 1));
argvList.add(String.valueOf(timeWindow));
argvList.add(String.valueOf(System.currentTimeMillis()));
eval = jc.eval(SLIDE_WINDOW_LUA, Collections.singletonList(key), argvList);
} catch (Exception e) {
log.error("lideWindowLua redis key: {}, count: {}, timeWindow: {}", key, count, timeWindow, e);
}
return Long.valueOf(1L).equals(eval);
}
//也可以直接使用jedis
@Autowired
private JedisCluster jc;
最后
以上就是标致小熊猫为你收集整理的阿里集群Redis执行lua问题的全部内容,希望文章能够帮你解决阿里集群Redis执行lua问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复