Re: [HACKERS] Dynamic configuration via LDAP in postmaster

2013-12-03 Thread Vasily Soshnikov
Thank you for the advice, nowadays we(company where I work) use such scheme but that scheme is not always useful at the stage of development of the back-end infrastructure. Also we have found a better solution : have ldap for dynamic configuraion out of the box. So question is following: if you go

Re: [HACKERS] Dynamic configuration via LDAP in postmaster

2013-12-03 Thread Heikki Linnakangas
On 12/03/2013 05:44 PM, Vasily Soshnikov wrote: I need advise about where is best place for adding such features. Currently I found that 'postmaster' have event loop(including handling SIGHUP) inside PostgressMain(postgress.c) for realoding configuration file, based on my investigation my plan

[HACKERS] Dynamic configuration via LDAP in postmaster

2013-12-03 Thread Vasily Soshnikov
I need advise about where is best place for adding such features. Currently I found that 'postmaster' have event loop(including handling SIGHUP) inside PostgressMain(postgress.c) for realoding configuration file, based on my investigation my plan is handling ldap events just before SIGHUP. PS I