|
|
|
|
|
by mutex007
4574 days ago
|
|
Assuming your 70ms in transit is accurate, although you have not provided details on how you measured that. 20ms svr processing time is only 50 inserts per second which is simply untenable in respect to a high performing rethink.. In effect if i wanted to do 10000 single writes per second typical of most interactive systems, i will need 200 nodes to pull that Off. |
|
In Rethink you can turn on soft durability which will allow buffering writes in memory. That would drastically speed up write performance. Another option is to use concurrent clients. Rethink is optimized for throughput and concurrency, so if you use multiple concurrent clients the latency won't scale linearly.