<HTML><HEAD>
<META content="text/html; charset=utf-8" http-equiv=Content-Type></HEAD>
<BODY>
<DIV>
<DIV style="FONT-SIZE: 11pt; FONT-FAMILY: Calibri,sans-serif">I had debug turned off but I'll enable it to see if anything interesting happens.<BR>I didn't see anything that said pause.<BR><BR>I'll also turn off odbc for the core db and use the default one to see if that helps. Un testing it didn't help but I'll try it in again. </DIV></DIV>
<DIV dir=ltr>
<HR>
<SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: Calibri,sans-serif; FONT-WEIGHT: bold">From: </SPAN><SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: Calibri,sans-serif"><A href="mailto:steveayre@gmail.com">Steven Ayre</A></SPAN><BR><SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: Calibri,sans-serif; FONT-WEIGHT: bold">Sent: </SPAN><SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: Calibri,sans-serif">‎11/‎20/‎2013 4:36 PM</SPAN><BR><SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: Calibri,sans-serif; FONT-WEIGHT: bold">To: </SPAN><SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: Calibri,sans-serif"><A href="mailto:freeswitch-users@lists.freeswitch.org">FreeSWITCH Users Help</A></SPAN><BR><SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: Calibri,sans-serif; FONT-WEIGHT: bold">Subject: </SPAN><SPAN style="FONT-SIZE: 11pt; FONT-FAMILY: Calibri,sans-serif">Re: [Freeswitch-users] Freeswitch Performance</SPAN><BR><BR></DIV>&gt;<BR>&gt; show nothing other than FreeSWITCH was receiving the new messages but no<BR>&gt; bridge or cancel actions were taking place<BR><BR><BR>Do you have your logs at debug level and are there any log messages that<BR>indicate a call reaching a point then pausing?<BR><BR>I saw something recently similar under load, and it turned out to be the<BR>limit subsystem was waiting on DB queries that were severely backing up<BR>because there were too many commits happening per second and InnoDB was<BR>configured to flush to disk on every transaction commit which can only<BR>happen ~200 times per second. (Switching to the memory engine fixed the<BR>error although isn't transactional).<BR><BR>-Steve<BR><BR>-Steve<BR><BR><BR>On 20 November 2013 20:38, Andre &lt;andretodd@verizon.net&gt; wrote:<BR><BR>&gt; I tested again and when I use 25 cps for 2 hours everything worked fine.<BR>&gt; When I sent 50 cps I noticed FreeSWITCH worked for about 5 minutes then I<BR>&gt; saw the memory jump from 122 mb to to 1.6 gb in seconds. I think FreeSWITCH<BR>&gt; crashed but the logs show nothing other than FreeSWITCH was receiving the<BR>&gt; new messages but no bridge or cancel actions were taking place.<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; How do I tell what happened that made freeswitch just stop working? The<BR>&gt; GUI didn’t show anything like a throw exception and when I type version or<BR>&gt; sofia status in the FreeSWITCH gui it doesn’t respond.<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; Andre<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; *From:* freeswitch-users-bounces@lists.freeswitch.org [mailto:<BR>&gt; freeswitch-users-bounces@lists.freeswitch.org] *On Behalf Of *Anthony<BR>&gt; Minessale<BR>&gt; *Sent:* Wednesday, November 20, 2013 12:33 AM<BR>&gt; *To:* Freeswitch-users<BR>&gt;<BR>&gt; *Subject:* Re: [Freeswitch-users] Freeswitch Performance<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; Get HEAD of stable branch or HEAD of master for latest build files.<BR>&gt;<BR>&gt; There is no promise windows can do 500cps the industry standard is 50 and<BR>&gt; you'll have probably more luck on linux but there is only on way to fimd<BR>&gt; out.<BR>&gt;<BR>&gt; On Nov 19, 2013 11:27 PM, "I put the Who? in Mishehu" &lt;<BR>&gt; mishehu@freeswitch.org&gt; wrote:<BR>&gt;<BR>&gt; The amusing thing about the recurring load test threads that pop up every<BR>&gt; now and then is that the most important tips are already documented on the<BR>&gt; wiki in one single page.&nbsp; Beyond that, you probably spend more time load<BR>&gt; testing than you do just tossing up another server and using something like<BR>&gt; kamailio or opensips to load balance...<BR>&gt;<BR>&gt;<BR>&gt; --<BR>&gt;<BR>&gt; Yossi Neiman<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; On 11/19/2013 06:48 PM, Antonio Teixeira wrote:<BR>&gt;<BR>&gt; Hello Andre.<BR>&gt;<BR>&gt; Solving performance problems is always hard , but a few points to keep in<BR>&gt; mind :<BR>&gt;<BR>&gt; To my knowledge FS is pretty much a linux software , it works on windows<BR>&gt; by that i doesn't means it performs on windows ( please correct me if i'm<BR>&gt; wrong)<BR>&gt; The native DB for FS is Postgresql ( this should make you oracle admin<BR>&gt; more happy :) ).<BR>&gt;<BR>&gt; Try this :<BR>&gt; Linux Server Realtime Kernel + Last FS Stable + Postgresql ( tune it well).<BR>&gt; Take care with ulimit on linux , its needed for the extra punch of<BR>&gt; performance<BR>&gt; Check if your "performance test" is real if you are pointing to 1500CPS<BR>&gt; for a two minute call you will have 180k calls before the first call gets<BR>&gt; disconnected,&nbsp; if you are also testing RTP that means 180k * 2 ports needed<BR>&gt; , The Kernel will start to complaining and you will run out of ports you<BR>&gt; will also run out of FD probably before you run out of ports on a not tuned<BR>&gt; linux install.<BR>&gt; If the DB is on the same server it will also&nbsp; stall since the FD will not<BR>&gt; be present for new connections to the back end.<BR>&gt;<BR>&gt; In terms of BW you will exceed 230000 kb/s add a few more kb/s for the DB<BR>&gt; ( Not a problem here i think)<BR>&gt;<BR>&gt; Another thing , no sip server ( please include all the nice names here<BR>&gt; like B2BUA , etc ) should ever queue anything.<BR>&gt; I have never read the code that handles this on FS but the way i would do<BR>&gt; it should be something like : can we sustain the load ? No in that case<BR>&gt; send 503 else proceed.<BR>&gt; This is done in freeswitch by this var<BR>&gt; https://wiki.freeswitch.org/wiki/XML_Switch_Configuration#max-sessions<BR>&gt;<BR>&gt; A more general approach:<BR>&gt; In SIp Servers you will generally ( if not running cpu intensive tasks,<BR>&gt; trancoding , tone detection , etc ), consume all the ram , Network IO ,than<BR>&gt; the cpu.<BR>&gt; For the guys that plan something big you should take a look at this :<BR>&gt; http://www.solarflare.com/High-Frequency-Trading<BR>&gt; Not by The NIC itself but because of this :<BR>&gt; http://www.openonload.org<BR>&gt;<BR>&gt; Without more data i don't think we can help , above all performance<BR>&gt; testing is a dark art you just need to keep on trying different things and<BR>&gt; above all have some type of monitor tool to understand what exactly is<BR>&gt; holding you up , maybe its no FS...<BR>&gt;<BR>&gt; Also 1500CPS is something seen in&nbsp; carrier operations generally with a<BR>&gt; named SBC in front , keep in mind that FS is a great software but it<BR>&gt; doesn't hold against SBC's that use special processors like ASIC to perform<BR>&gt; transcoding , sip parsing , tone detection ,etc etc<BR>&gt;<BR>&gt;<BR>&gt; Disclaimer : post written deep into the night...<BR>&gt;<BR>&gt; On 20/11/13 00:09, Andre wrote:<BR>&gt;<BR>&gt; Hi, I am testing out my FreeSWITCH&nbsp; 1.2.14 64 bit windows 8.1 on my<BR>&gt; Alienware Laptop with a very fast SSD and I7 processor with 8 GB DDR3 Ram.<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; I have been using a pjsip test tool to test FreeSWITCH to see how it<BR>&gt; performs. Tell me if I’m wrong here, I believe if I sent “too many” calls<BR>&gt; to FreeSWITCH&nbsp; that it queues up the calls and sooner or later uses all the<BR>&gt; memory on my PC then just stops working.&nbsp; I do have the CPS sent to 1500<BR>&gt; for testing but I never hit that high, I hit about 200 CPS.<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; The CDRs that save to my database show it takes about 8 seconds from start<BR>&gt; time to end time. It does start out only taking milliseconds then it<BR>&gt; progresses to the 8 second mark.<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; The calls are just going to FreeSWITCH then I’m sending back a 503.<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; I have every mod turned off, logging set to 0, Core db going to a SQL<BR>&gt; Server and I even set FreeSWITCH to real time.<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; Can anyone give me advise on what I can do to get better performance?<BR>&gt; I’ve also tested it out on my real server but in about 3 minutes of 50 cps<BR>&gt; FreeSWITCH uses up 3gb of memory and stops responding.<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; I’m at a loss here on what else to do.<BR>&gt;<BR>&gt; Andre<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; _________________________________________________________________________<BR>&gt;<BR>&gt; Professional FreeSWITCH Consulting Services:<BR>&gt;<BR>&gt; consulting@freeswitch.org<BR>&gt;<BR>&gt; http://www.freeswitchsolutions.com<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<BR>&gt;<BR>&gt; http://www.cudatel.com<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; Official FreeSWITCH Sites<BR>&gt;<BR>&gt; http://www.freeswitch.org<BR>&gt;<BR>&gt; http://wiki.freeswitch.org<BR>&gt;<BR>&gt; http://www.cluecon.com<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; FreeSWITCH-users mailing list<BR>&gt;<BR>&gt; FreeSWITCH-users@lists.freeswitch.org<BR>&gt;<BR>&gt; http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<BR>&gt;<BR>&gt; UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<BR>&gt;<BR>&gt; http://www.freeswitch.org<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; _________________________________________________________________________<BR>&gt;<BR>&gt; Professional FreeSWITCH Consulting Services:<BR>&gt;<BR>&gt; consulting@freeswitch.org<BR>&gt;<BR>&gt; http://www.freeswitchsolutions.com<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<BR>&gt;<BR>&gt; http://www.cudatel.com<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; Official FreeSWITCH Sites<BR>&gt;<BR>&gt; http://www.freeswitch.org<BR>&gt;<BR>&gt; http://wiki.freeswitch.org<BR>&gt;<BR>&gt; http://www.cluecon.com<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; FreeSWITCH-users mailing list<BR>&gt;<BR>&gt; FreeSWITCH-users@lists.freeswitch.org<BR>&gt;<BR>&gt; http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<BR><BR>
<DIV>[The entire original message is not included.]</DIV></BODY></HTML>