Re: [HACKERS] max client limit in pgbench

2007-08-24 Thread Tom Lane
Tatsuo Ishii <[EMAIL PROTECTED]> writes: > This is used for calculating the upper limit of -c option. However > actual limit is coming from the number of descriptors that select(2) > can watch (besides the number of file descriptors allowed by the > kernal. This is different story though, I think).

[HACKERS] max client limit in pgbench

2007-08-24 Thread Tatsuo Ishii
I found following in pgbench.c: #define MAXCLIENTS 1024 /* max number of clients allowed */ This is used for calculating the upper limit of -c option. However actual limit is coming from the number of descriptors that select(2) can watch (besides the number of file descriptors all