06:37:42 GMT Hi, I'm trying to delete redis list items using python wrapper method lrem. But After deleting half elements it throws 06:37:42 GMT IndexError: list index out of range 06:37:42 GMT . Here is my my code snippet: https://pastebin.com/HC11mHPq 06:39:32 GMT And When I Reset the l2 variable. It again delete half and after that throws same error. 07:11:57 GMT can you paste the full traceback somewhere? 07:13:49 GMT I think that the mistake is in changing the size of the list while iterating over it 07:14:49 GMT so halfway through, your list has length n/2 and you're still trying to iterate to n 13:41:25 GMT Moin 13:41:39 GMT We are running an AWS Redis cluster - how do we delete all keys across all nodes? 13:43:31 GMT never used cluster, but doesn't FLUSHALL just work? 13:43:56 GMT (or maybe, since cluster doesn't support multiple DBs, just FLUSHDB?) 17:26:05 GMT Hello, i was having a bit of a dillemma with Redis in pub/sub usage mode and was wondering if anyone was around to shed some insight 17:27:00 GMT i have multiple redis instances distributed in many locations in the world and would like to aggregate all the data from these instances into a single redis instance at our branch office 17:27:46 GMT i have seen the clustering mode but that would copy the data from every location in the world to every location in the world which for bandwidth and other reasons would be very impracticle. 17:28:10 GMT i was hoping there was a way to essentially copy the data from the remote locations to the central one easily 19:00:14 GMT axelrtgs: do you mean that you don't want to sync all the locations, but just want to have a replica of each location also stored in a central server? 19:04:04 GMT yes exactly 19:04:32 GMT i dont want all locations to sync with each other just a replica stored in the central location aggregating the pub subs from all the remote locations 19:06:28 GMT the caveat is i want to be able to subscribe to the central location and see the messages from all the locations but if i subscribe to the remote location only see the messages local to there 19:07:17 GMT zpojqwfejwfhiunz: thanks for responding to my query. i appreciate it. i was worried it would get lost in the join/quit messages 19:09:07 GMT I don't have those messages turned on for display; it's worth finding out how to turn that off in larger channels 19:09:24 GMT can you just make each of the edge nodes masters and have a matching central slave for each? 19:10:08 GMT they're working on multi-master replication but it's still far off AFIK https://www.youtube.com/watch?v=b5UTfy3ftzI 19:10:53 GMT I think you really want full consistency within a limited scope, so you'll have to partition your data so less is synchronized between the edges 20:22:29 GMT thanks for the info. finding a solution to this many to one pubsub thing seems to be very complex :(