Hi Alan,<br><br><div class="gmail_quote">On Tue, Nov 10, 2009 at 5:35 PM, Alan DeKok <span dir="ltr"><<a href="mailto:aland@deployingradius.com">aland@deployingradius.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">Dinh Pham Cong wrote:<br>
> start_servers = 1024<br>
> max_servers = 3000<br>
> max_spare_servers = 3000<br>
<br>
</div>  That's a little high.<br>
<div class="im"><br></div></blockquote><div><br>I saw that when 1000 client was created at the same time and send requests to Radius server concurrently there were about 2000+ radiusd threads were created too. I thought that 1000 concurrent client could be translated to more than 1000 packets/s.<br>
<br>I have done another load tests with smaller concurrent clients: 100, 200, 500. However, Radiusd can not handle more than 1000 request/s (total requests/total time used to sent all the requests). For example Radiusd can handle 20 000 request in more than 20 seconds, 40 000 requests in more than 43 seconds.<br>
<br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">
> My sql.conf<br>
><br>
> # number of sql connections to make to server<br>
> num_sql_socks = 1000<br>
<br>
</div>  Remember: 1000 packets/s does *not* mean 1000 threads or 1000 SQL<br>
sockets.  The server should be able to do 1000 packets/s with a much<br>
smaller number of threads && sockets.  i.e. 50/50.<br></blockquote><div><br>I thought that num_sql_socks = 1000 meaned that Radiusd would create a connection pool of 1000 MySQL connections. <br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<div class="im"><br>
> I developed a Java client that can create 1000 concurrent threads that<br>
> connect and send accounting requests (start and stop) to Radius server.<br>
<br>
</div>  See also "radperf" (<a href="http://networkradius.com/radperf.html" target="_blank">http://networkradius.com/radperf.html</a>).  It can do<br>
load testing and user login simulations.<br>
<div class="im"><br></div></blockquote><div><br>Thanks I will try.<br> <br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">

> However, after sending for 20 or 30 seconds, radius server generated a<br>
> lot of error messages and crashed<br>
><br>
> Error messages<br>
><br>
> Tue Nov 10 16:14:34 2009 : Error: Discarding duplicate request from<br>
> client tester1 port 41442 - ID: 134 due to unfinished request 2436<br>
<br>
</div>  This is likely because your SQL database is too slow.<br>
<br>
  Have you checked to see if the SQL database can handle 1000 inserts/s?<br>
<div class="im"><br>
> Crashed<br>
><br>
> Nov 10 15:55:35 Mobile6 kernel: radiusd[22242]: segfault at<br>
> 00000000000000c8 rip 0000003daee5306b rsp 00002aae5d82a780 error 4<br>
<br>
</div>  See doc/bugs for instructions on producing useful crash reports.  We<br>
can then use these to fix bugs.<br>
<div class="im"><br>
> Nov 10 15:57:29 Mobile6 kernel: radiusd[30941]: segfault at<br>
> 00000000000000c8 rip 0000003daee5306b rsp 00002aaee56de180 error 4<br>
> Nov 10 16:14:36 Mobile kernel: radiusd[10788]: segfault at<br>
> 00000000000000c8 rip 0000003daee5306b rsp 00002aac913de780 error 4<br>
><br>
> What do I need to do to enable FreeRadius server to meet more than 1000<br>
> accounting request (INSERT AND DELETE) for a second?<br>
<br>
</div>  Use a database that can handle 1000 requests/s.<br></blockquote><div><br>I have done separate load tests of INSERT and DELETE on radacct table (using MEMORY engine) and found that MySQL 5.0 can handle about 6000 - 8700 qps. I have used mysqlslap to do that.<br>
<br></div><br></div>Thanks<br><br>Dinh<br>