09:49:13 GMT Hey guys , I am setting up cluster node is getting added successfully but cluster-node info is fail 09:49:22 GMT how can i debugg information 11:53:01 GMT HGETALL命令只输出了运行时间,没有输出运行结果(查询结果)是怎么回事 11:53:56 GMT 不只是HGETALL命令,还有其他一些命令也只输出了运行时间,例如: (3.25s) 11:54:22 GMT 我的运行环境是WINDOWS7 CMD 11:55:44 GMT 有没有人遇到这种情况啊 11:56:05 GMT 这种情况大概是什么原因产生的 13:23:06 GMT Hi, guys... I am starting with redis and have one quick question... I have a system with app and workers. I want to run rpush from app and send message that I did push. Then, I want to rpop from workers and the one who rpops first gets that task. Do you think that is a good idea? 13:25:13 GMT This gives me ability to later in worker if there are too many tasks it got to ignore new tasks and introduce worker for scaling which will detect when there are no enought workers. 13:25:38 GMT Do you see anything wrong with it? 13:32:05 GMT that's how it's usually done 13:35:06 GMT just blpop on the worker side 13:35:13 GMT saves you the "send message" part 13:40:32 GMT I kind of wanted to be able to deny certain tasks on certain workers, that is why it made sense to me 13:41:43 GMT Well, I will do it later... For now, as recommended... Thank you! :D 13:45:24 GMT As I understand it Sentinel can monitor multiple Redises, can it also control the slave priority? I'm running multiple, independent Sentinel managed Redis groups across a pool of nodes, and with the default fixed priority they all want to bunch up on node 1. 13:46:46 GMT I'm looking into managing slave-priority to resolve this, but I've come to the conclusion whatever manages that setting needs to know the state of all the redises to properly pick which node is the best failover slave. As such I'm wondering if this feature would be best done by Sentinel, as Sentinel tracks that information already. 13:55:21 GMT What will happen if my worker send BRPOP and crash/disconnect? 13:55:46 GMT And there is nothing in queue 13:57:07 GMT Will someone else get that result or will it be lost? 13:59:26 GMT Related: Is there any way to set the run-id to a preset value? I think this would be better than slave-priority for node favoring as the it wouldn't override replication offset, and I could use this to resolve a Sentinel issue I'm having in containers. I'm not finding much on how the run-id is generated in the docs, but I may be overlooking it. 14:00:14 GMT <*> CVTJNII greps the source 14:10:05 GMT Hrm, per the comments on getRandomHexChars() pinning run_id probably isn't the best of ideas, even if it was supported which it isn't. 14:19:41 GMT On second thought I think it's best to leave slave-priority alone, I don't like that it overrides the replication offset. It would be nice if there was a way to set a priority value that's weighted less than replication offset, but per the sentinel docs there isn't one. 19:19:51 GMT I want to push a list of strings into redis, and pop it out one at a time so that multiple processes can independenty do work 19:20:45 GMT should i use a queue? 19:20:55 GMT set? 19:23:12 GMT codepython777, https://redis.io/commands/rpoplpush#pattern-reliable-queue 19:25:44 GMT Habbie: thanks