Hello,
I have a java application that handle a lot of request axl at same time on CUCM 11.5.
For example, i need to make hypothetically 30 queries per second (both select and update) on cluster cucm.
Of course in my application i implemented a queue handler mechanism (so actually the number of queries is less), and I've already followed the best practices for example implementing retry mechanism to handle error 503, and making select query on subscriber.
Its all ok, every request are handled, but i noticed the callmanager replies very slowly after amount of time respect at start.
I'd like to know if is normal, and if there is any tricks to increment the performance on CUCM (for example increment any paramenters...).
I searched any declared limit of axl requert per second but i didnt find anything. Someone can give me any advice??
Thanks
Mattia
Solved! Go to Solution.
This article does a pretty good job of describing CUCM DB replication, and covers which configs are pub->sub vs. full-mesh replicated: http://www.ciscopress.com/articles/article.asp?p=2743756&seqNum=8
A few thoughts...
Hello,
many thanks about the tips.
I know AXL is not designed to be a real-time api, but its the only way, so please tell me if what im trying to do is impossible.
My application is a kind of EM (unfortunatly i can't use it), so i have to update a lot of object on CUCM when a user logged-in on his pc in a company (there is a custom client installed on every PC that started on boot).
As u can image i have to handle a lot of request per second, in a short interval of time.
I can't use a cache, and i already use the same http-connection.
I have one question: you suggested to don't make the update on publisher, because the db replication is one way (pub -> sub), but to increment performance i've tried to do one test aiming on subscriber and it seems to work.
But how is possible? Is the queue of operations common to the cluster (publisher, and many subscriber)? After received an update request, does the subscriber "deliver" the operation on publisher? Is efficient?? Can it increment the performance?? Any contraindications?
Thank you very much for your availability.
This article does a pretty good job of describing CUCM DB replication, and covers which configs are pub->sub vs. full-mesh replicated: http://www.ciscopress.com/articles/article.asp?p=2743756&seqNum=8