Re: [SR-Users] Result limitation on sqlops

2020-10-07 Thread Alex Balashov
Duarte, It's hard to fathom a scenario in which you need anywhere near 32 result containers simultaneously. And if you don't need them simultaneously, they can be reused. I have a very DB-intensive config with many, many queries and only need one container at any given time. I think I once

Re: [SR-Users] Result limitation on sqlops

2020-10-07 Thread Daniel-Constantin Mierla
And for the records: I just pushed the commit with code adding a modparam for setting this value. On 07.10.20 17:20, Daniel-Constantin Mierla wrote: > > Hello, > > that can be made a modparam, but do you really need more than 32 > result containers? The result containers can be reused if you do

Re: [SR-Users] Result limitation on sqlops

2020-10-07 Thread Daniel-Constantin Mierla
Hello, that can be made a modparam, but do you really need more than 32 result containers? The result containers can be reused if you do not need the results at the same time or to be persistent in the worker process. So even you do sql_query() more than 32 times, if you do not need all the 32+

[SR-Users] Result limitation on sqlops

2020-10-07 Thread Duarte Rocha
Hey, I just upgrade to Kamailio 5.4 and i see that now sqlops has a limitation of 32 results containers which is not enough for my proxy. Is it possible that this limitation can be configured via module parameters? In the meanwhile i've changed the value in sql_api.c but i would like to have my