On Aug 7, 2013, at 8:14 AM, Noam Schiff <[email protected]> wrote:
> Hi,
>
>
>
> I changed the below line from 2 to 8 in "records.config" file but it doesn't
> do the trick:
> CONFIG proxy.config.exec_thread.limit INT 8 (the default is 2)
Besides the other suggestions re: NIC driver pinning a CPU, note that the above
alone doesn't change the number of threads created. By default, it autoscales
the number of threads based on number of CPUs (it's a multiplier). To set an
explicit number of threads (to e.g. 8) you have to do
CONFIG proxy.config.exec_thread.autoconfig INT 0
CONFIG proxy.config.exec_thread.limit INT 8
-- leif