[SR-Users] Backing up htable to SQL table ...

2012-03-06 Thread Krishna Kurapati
Hi, This is my first time attempt using htable module. How can I back up the htable content in the database incase the server restarts. I saw a htable in the MySQL database. My observation has been that htable module is not automatically backing up to database even though I added modparams to poin

Re: [SR-Users] Backing up htable to SQL table ...

2012-03-06 Thread Krishna Kurapati
I did little more digging into htable source code. It looks like syncing to database is happening when the module is being destroyed. To see if this is working, I tried to stop Kamailio and looked into the database. The htable is still empty. Any configuration changes required to make the process

Re: [SR-Users] Backing up htable to SQL table ...

2012-03-07 Thread Krishna Kurapati
Any help on how to backup the htable content to database table? Thanks On Tue, Mar 6, 2012 at 5:28 PM, Krishna Kurapati wrote: > I did little more digging into htable source code. It looks like syncing > to database is happening when the module is being > destroyed. > > To see if this is workin

Re: [SR-Users] Backing up htable to SQL table ...

2012-03-07 Thread Daniel-Constantin Mierla
Hello, you have to set dbmode=1 when defining the hash table: http://kamailio.org/docs/modules/stable/modules_k/htable.html#id2541457 Cheers, Daniel On Thu, Mar 8, 2012 at 4:48 AM, Krishna Kurapati wrote: > Any help on how to backup the htable content to database table? > > Thanks > > On Tue,

Re: [SR-Users] Backing up htable to SQL table ...

2012-03-08 Thread Krishna Kurapati
Thanks Daniel for the help. I was looking at other module parameters. I added this like and tried it again modparam("htable", "htable","xhash=>size=8;dbtable=htable;dbmode=1;") However, it was still not backing up to the database. Seems like there is bug when the expiration is not set or set to 0

Re: [SR-Users] Backing up htable to SQL table ...

2012-03-09 Thread Elena-Ramona Modroiu
Hi, I committed the patch in master branch, but I removed the condition 'ht_db_expires_flag!=0', because it is used to control if expires column is saved in database, nothing else. If I misunderstood something, let me know, if not and all works fine for you with the commit, then the patch can

Re: [SR-Users] Backing up htable to SQL table ...

2012-03-09 Thread Krishna Kurapati
Ramona. I pulled and it worked fine. Thanks for your support. Krish On Fri, Mar 9, 2012 at 11:10 AM, Elena-Ramona Modroiu wrote: > Hi, > > I committed the patch in master branch, but I removed the condition > 'ht_db_expires_flag!=0', because it is used to control if expires column is > saved i