Hello,
Based on business requirements, 35% of invites should be handled by async_workers and 65% with be handled by main children. The target is 1500cps. I'm using the following conf : children=64 async_worker=128
when doing performance tests using SIPp, I figured out the 1500cps is well supported by the conf above, but when I updated the data in database to not use anymore async workers, the cps is getting decreased and it was between 200 and 500.
This a client requirements is to be able to enable/disable feature that needs to be handled by async workers.
Could you please help me on this?
Thanks in advance
Those may be higher-than-useful amounts of children and async workers.
— Sent from mobile, apologies for brevity and errors.
On Aug 16, 2024, at 4:45 AM, elhar.mohamed--- via sr-users sr-users@lists.kamailio.org wrote:
Hello,
Based on business requirements, 35% of invites should be handled by async_workers and 65% with be handled by main children. The target is 1500cps. I'm using the following conf : children=64 async_worker=128
when doing performance tests using SIPp, I figured out the 1500cps is well supported by the conf above, but when I updated the data in database to not use anymore async workers, the cps is getting decreased and it was between 200 and 500.
This a client requirements is to be able to enable/disable feature that needs to be handled by async workers.
Could you please help me on this?
Thanks in advance __________________________________________________________ Kamailio - Users Mailing List - Non Commercial Discussions To unsubscribe send an email to sr-users-leave@lists.kamailio.org Important: keep the mailing list in the recipients, do not reply only to the sender! Edit mailing list options or unsubscribe:
Hello Alex, Thank you for your reply. I'm running the test in redhat VM which have 6 CPUs.
why we're using this big number of workers it's because for the invites that will be handled with async workers needs to do enum queries with extarnal dns server which has a delay between 20ms and 300ms.
I understand the reasoning, but there are still architectural limits to the number of useful worker processes, and I think you are exceeding them by quite a lot. — Sent from mobile, apologies for brevity and errors.
On Aug 16, 2024, at 10:24 AM, elhar.mohamed--- via sr-users sr-users@lists.kamailio.org wrote:
Hello Alex, Thank you for your reply. I'm running the test in redhat VM which have 6 CPUs.
why we're using this big number of workers it's because for the invites that will be handled with async workers needs to do enum queries with extarnal dns server which has a delay between 20ms and 300ms. __________________________________________________________ Kamailio - Users Mailing List - Non Commercial Discussions To unsubscribe send an email to sr-users-leave@lists.kamailio.org Important: keep the mailing list in the recipients, do not reply only to the sender! Edit mailing list options or unsubscribe:
TL;DR; There's not enough information provided to give any real feedback.
First, to address the elephant in the room, this is a bizarre business requirement:
* 35% of invites should be handled by async_workers and 65% with be handled by main children
Business requirements should concern scalability, security, technology stack (i.e. If their environment uses postgres, that could be a business requirement). The internals of *how* kamailio processes a message shouldn't be relevant to a business requirement (it may be necessary to achieve a business requirement, but that's not the same thing).
With that said, sometimes requirements like this get stated and that's the world we live in.
Next, It's not really clear from your description how you're using the async workers here. Consider the following psuedo kamalio config:
#!KAMAILIO loadmodule "sl" children=64 async_worker=128
request_route { sl_send_reply("404", "Not Found"); }
In that config, simply stating async_workers won't cause anything here to be handled by those workers. There's also the fact that the config itself bears massively on how many CPS can be handled. The config above, while not particularly useful, will handle way more than 1500 CPS (or more accurately requests per second).
You state that "when I updated the data in database to not use anymore async workers", but what is changing in the database, etc? You can't really show two lines of your configuration and expect anyone to know where you have processing latency, etc.
Finally, I'd point out that this is a very number of worker processes, and that children gets applied to every listener. You don't state what your private memory size is, but assuming that Kamailio starts on the loopback address and a single network interface as both TCP and UDP, you'd have 192 processes for your listeners (tcp workers are global instead of per listener, iirc), another 128 processes for your async workers, and about a dozen more default processes (main process, timers, etc). Assuming that you are using the default private memory allocation of 8 MB/process, that makes 2.8 GB for private memory alone. While that's not a massive amount of memory on a modern system, it's also likely you'd want to bump up that 8 MB setting, too.
Regards, Kaufman
________________________________ From: elhar.mohamed--- via sr-users sr-users@lists.kamailio.org Sent: Friday, August 16, 2024 4:24 AM To: sr-users@lists.kamailio.org sr-users@lists.kamailio.org Cc: elhar.mohamed@gmail.com elhar.mohamed@gmail.com Subject: [SR-Users] low performance with udp_children and async_workers
CAUTION: This email originated from outside the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
Hello,
Based on business requirements, 35% of invites should be handled by async_workers and 65% with be handled by main children. The target is 1500cps. I'm using the following conf : children=64 async_worker=128
when doing performance tests using SIPp, I figured out the 1500cps is well supported by the conf above, but when I updated the data in database to not use anymore async workers, the cps is getting decreased and it was between 200 and 500.
This a client requirements is to be able to enable/disable feature that needs to be handled by async workers.
Could you please help me on this?
Thanks in advance __________________________________________________________ Kamailio - Users Mailing List - Non Commercial Discussions To unsubscribe send an email to sr-users-leave@lists.kamailio.org Important: keep the mailing list in the recipients, do not reply only to the sender! Edit mailing list options or unsubscribe:
Hello Ben
We're using lookups with postgress db and also we're doing enum query with external dns servers that have variable response delay between 20ms and 300ms (that's why we're using async workers).
Here is bellow our kamailio-routing:
#!KAMAILIO loadmodule "sl" loadmodule "tm" children=64 async_worker=128
request_route {
route(lookup1); route(lookup2); route(lookup3); if(invite_with_enum) { async_task_route("enum_route"); } else { route(lookup4) route(lookup5) route(lookup6) route(send_reply); } }
route[enum_route] { # performing enum query with external dns server # getting the new regex route(lookup4) route(lookup5) route(lookup6) route(send_reply); }
route[send_reply] { if (t_exists()) { send_reply("302", "Moved Temporarily"); } else { sl_send_reply("302", "Moved Temporarily"); } exit; }
Isn't Kamailio's custom DNS resolver already async?
— Sent from mobile, apologies for brevity and errors.
On Aug 16, 2024, at 10:58 AM, elhar.mohamed--- via sr-users sr-users@lists.kamailio.org wrote:
Hello Ben
We're using lookups with postgress db and also we're doing enum query with external dns servers that have variable response delay between 20ms and 300ms (that's why we're using async workers).
Here is bellow our kamailio-routing:
#!KAMAILIO loadmodule "sl" loadmodule "tm" children=64 async_worker=128
request_route {
route(lookup1); route(lookup2); route(lookup3); if(invite_with_enum) { async_task_route("enum_route"); } else { route(lookup4) route(lookup5) route(lookup6) route(send_reply); } }
route[enum_route] { # performing enum query with external dns server # getting the new regex route(lookup4) route(lookup5) route(lookup6) route(send_reply); }
route[send_reply] { if (t_exists()) { send_reply("302", "Moved Temporarily"); } else { sl_send_reply("302", "Moved Temporarily"); } exit; } __________________________________________________________ Kamailio - Users Mailing List - Non Commercial Discussions To unsubscribe send an email to sr-users-leave@lists.kamailio.org Important: keep the mailing list in the recipients, do not reply only to the sender! Edit mailing list options or unsubscribe:
our kamailio is starting with following command: kamailio -m 40960 (40G because we need to load data in shm memory ) -M 8 -x fm -f kamailio.cfg
Hello,
40GB is really large, I don't think this is a scenario where people commonly use Kamailio for it. What is the large data you need to store in shared memory?
Maybe it would be more appropriate to use a proper data store for this data, like an SQL or NOSQL database with large memory cache or in memory storage?
Cheers,
Henning
Hello ,
We've two tables that contains arround 40M of records, so with relational database it's complicated to fetch data. That why we're loading the data in the shm when the kamailio is starting.
Hello,
my recommendation would be to adapt your data model and possible review your query design. 40 million records will not hit the limits for a proper relational database. You are trying to do something with Kamailio which the software was not optimized for. What module you are using for this? With htable for example you will get not a great performance as it will mostly degrade to a linear list search due to the smaller number of available hash buckets.
Cheers,
Henning
-----Original Message----- From: elhar.mohamed--- via sr-users sr-users@lists.kamailio.org Sent: Montag, 19. August 2024 12:41 To: sr-users@lists.kamailio.org Cc: elhar.mohamed@gmail.com Subject: [SR-Users] Re: low performance with udp_children and async_workers
Hello ,
We've two tables that contains arround 40M of records, so with relational database it's complicated to fetch data. That why we're loading the data in the shm when the kamailio is starting. __________________________________________________________ Kamailio - Users Mailing List - Non Commercial Discussions To unsubscribe send an email to sr-users-leave@lists.kamailio.org Important: keep the mailing list in the recipients, do not reply only to the sender! Edit mailing list options or unsubscribe:
We're saving the data retreived in rbtree struct and we've created a custom module to fetch data .