Displaying 2 results from an estimated 2 matches for "siblingthread".
Did you mean:
siblingthreads
2017 Aug 16
3
weakforced
...k would be around 2000 logins/sec.
I'm also curious if -- assuming they're well north of 2000 logins/sec --
the replication protocol begins to overwhelm the daemon at very high
concurrency.
Any rules of thumb on things like "For each additional 1000 logins/sec, add
another # to setNumSiblingThreads and another # to setNumWorkerThreads"
would be super appreciated too.
Thanks! And again, feel free to point me elsewhere if there's a better
place to ask. For a young project, the docs are actually quite good.
2017 Aug 17
0
weakforced
...ion, then that doesn?t cause any replication. We?ve tested with three servers, each handling around 5-6000 logins/sec (i.e. 15-18K requests each) and the overall query rate was maintained.
> Any rules of thumb on things like "For each additional 1000 logins/sec, add
> another # to setNumSiblingThreads and another # to setNumWorkerThreads"
> would be super appreciated too.
>
Actually the rule of thumb is more like:
- WorkerThreads - Set to number of CPUs. Set number of LuaContexts to WorkerThreads + 2
- SiblingThreads - Leave at 2 unless you see issues.
> Thanks! And again, feel...