Vicidial Max CPS
Posted: Tue Sep 27, 2016 5:06 pm
Hey quick question, we need a campaign doing about 300 CPS on each server, i know it is freaking high, usually i don't put this much stress on one single dialer, usually i would add extra dialers and split the load into multiple server, but it is part of a experiment
Anyway, before start i noticed that Vicidial's tooltip help say this:
So it says 1 to 100 MAX (100 is high enough, but we need to push harder) so i decide to check the code just to find if that max was hard-coded, but this is the only code i found regarding the CPS
Not sure if this is right script, but assuming that is, it means that if i go beyond 200 cps, it will get down to 40 CPS (1000ms / 25ms = 40) is this correct ? If i modify this statement can i go harder ? (BTW i know it probably will crash the server )
Anyway, before start i noticed that Vicidial's tooltip help say this:
Max Calls per Second -This setting determines the maximum number of calls that can be placed by the outbound auto-dialing script on this server per second. Must be from 1 to 100. Default is 20.
So it says 1 to 100 MAX (100 is high enough, but we need to push harder) so i decide to check the code just to find if that max was hard-coded, but this is the only code i found regarding the CPS
- Code: Select all
AST_VDauto_dial.pl
if ( ($outbound_calls_per_second > 0) && ($outbound_calls_per_second < 201) )
{$per_call_delay = (1000 / $outbound_calls_per_second);}
else
{$per_call_delay = '25';}
Not sure if this is right script, but assuming that is, it means that if i go beyond 200 cps, it will get down to 40 CPS (1000ms / 25ms = 40) is this correct ? If i modify this statement can i go harder ? (BTW i know it probably will crash the server )