Hi,We are building a high concurrency system and Redis is plays a important role in the mix. Am presently facing an issue where as the concurrency increases - just 150 parallel threads concurrently calling a lua script that essentially does -1. Increment a counter2. If the counter is equal to a number, publish the message.What we see is that more the number of threads, the response from Redis gets worse.
I changed slowlogs to 2 (ms). When the threads are running i always see a performance degradation and the slow log shows an occasional lua script take 2047 microseconds (2.047 ms) indicating that it is probably fine, but the latency shows the following -
Question: Is the intrinsic latency shown above normal? What can be done to reduce this? I suspect this is causing the redis response times to go up?
--
You received this message because you are subscribed to the Google Groups "Redis DB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to redis-db+u...@googlegroups.com.
To post to this group, send email to redi...@googlegroups.com.
Visit this group at http://groups.google.com/group/redis-db.
For more options, visit https://groups.google.com/d/optout.
Thanks guys,
Then I wonder what does 10k connections by default in Redis mean? And also I wonder how the Redis is fit for webscale caching if concurrency is a problem?
Noted that I can use a slave for all reads and I can change AOF and check. Other than that, when Redis documentation uses terms like High Performance, how should one understand what is high performance?
Thank you,
Kashyap
Thanks guys,
Then I wonder what does 10k connections by default in Redis mean?
And also I wonder how the Redis is fit for webscale caching if concurrency is a problem?
Noted that I can use a slave for all reads and I can change AOF and check. Other than that, when Redis documentation uses terms like High Performance, how should one understand what is high performance?
You received this message because you are subscribed to a topic in the Google Groups "Redis DB" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/redis-db/dKdqCXdx2Oo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to redis-db+u...@googlegroups.com.
Cheers,
Bill