You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(10) |
May
(17) |
Jun
(3) |
Jul
|
Aug
|
Sep
(8) |
Oct
(18) |
Nov
(51) |
Dec
(74) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(47) |
Feb
(44) |
Mar
(44) |
Apr
(102) |
May
(35) |
Jun
(25) |
Jul
(56) |
Aug
(69) |
Sep
(32) |
Oct
(37) |
Nov
(31) |
Dec
(16) |
2012 |
Jan
(34) |
Feb
(127) |
Mar
(218) |
Apr
(252) |
May
(80) |
Jun
(137) |
Jul
(205) |
Aug
(159) |
Sep
(35) |
Oct
(50) |
Nov
(82) |
Dec
(52) |
2013 |
Jan
(107) |
Feb
(159) |
Mar
(118) |
Apr
(163) |
May
(151) |
Jun
(89) |
Jul
(106) |
Aug
(177) |
Sep
(49) |
Oct
(63) |
Nov
(46) |
Dec
(7) |
2014 |
Jan
(65) |
Feb
(128) |
Mar
(40) |
Apr
(11) |
May
(4) |
Jun
(8) |
Jul
(16) |
Aug
(11) |
Sep
(4) |
Oct
(1) |
Nov
(5) |
Dec
(16) |
2015 |
Jan
(5) |
Feb
|
Mar
(2) |
Apr
(5) |
May
(4) |
Jun
(12) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
(1) |
6
(1) |
7
(2) |
8
(3) |
9
|
10
|
11
(2) |
12
(6) |
13
|
14
(4) |
15
(6) |
16
(1) |
17
|
18
|
19
(5) |
20
(2) |
21
(3) |
22
(1) |
23
(4) |
24
(1) |
25
(5) |
26
(5) |
27
(2) |
28
|
29
(1) |
30
|
31
(1) |
|
|
|
|
|
|
From: Michael P. <mic...@gm...> - 2011-07-23 14:35:46
|
GTM parameters: hostname, string, GTM server hostname/IP to listen. port, string, GTM server port number to listen. nodenum, integer, node number for GTM server. start_xid, integer, start value of GXID feed log_filename, name of log file in GTM data directory standby, boolean Start as a GTM standby server. standby_conn_string, in the same model as what is done in recovery.conf for standby nodes. log_min_messages, minimum level of logs that are written. Proxy options: hostname, string, GTM server hostname/IP to listen. port, string, GTM server port number to listen. nodenum, integer, node number for GTM server. log_filename, name of log file in GTM data directory gtm_conn_string, connection string to use when contacting GTM (This string is completed with nodeID when registering) worker_thread_num, integer, number of worker threads log_min_messages, minimum level of logs that are written. Common options are: hostname, port, node number, log file name, log minimum messages. Proxy uses exclusively: 1) Connection string to GTM 2) worker thread number GTM uses: 1) Standby mode boolean 2) start XID 3) Connection string for a standby to connect to GTM Both have a lot in common. We may even use the same option name for connection string in the case of Proxy connecting to GTM and GTM-Standby connecting to GTM master. More than half of the options are the same. Making also configuration file having the same name for GTM and proxy may be also easier to understand for the users. -- Michael Paquier http://michael.otacoo.com |
From: Koichi S. <koi...@gm...> - 2011-07-23 12:41:01
|
I don't care about the name, but I'd like to see what configuration parameters GTM and GTM-Proxy should need. If they're very different, there will be no reason to have the same configuration file name. I believe introduction of GUC code should independent from HA support and should be treated as separate patches. This is why I'd like to have this before further effort of HA related improvements. Regards; ---------- Koichi Suzuki 2011/7/23 Michael Paquier <mic...@gm...>: > > > On Thu, Jul 21, 2011 at 3:52 PM, Koichi Suzuki <ko...@in...> > wrote: >> >> I totally agree with having gtm.conf and gtm_proxy.conf to reduce the >> number of runt-time options, especially those passed with -o option from >> gtm_ctl. > > About the configuration file, perhaps GTM and GTM-proxy could use a > configuration file with the same name. > I would imagine that if the guc APIs of postgresql are brought in GTM it > will be included in gtm/common so as a base it looks more consistent to use > the same file name: gtm.conf. >> >> I need to bring code for GUC from postgres. Could be done as a part of >> additional HA feature development. > > If you want to include that in the HA effort, it could be nice to make > separate patches for the configuration file and GTM-Standby additional > features. > It will make commit comprehension simpler. > -- > Michael Paquier > http://michael.otacoo.com > > ------------------------------------------------------------------------------ > Storage Efficiency Calculator > This modeling tool is based on patent-pending intellectual property that > has been used successfully in hundreds of IBM storage optimization engage- > ments, worldwide. Store less, Store more with what you own, Move data to > the right place. Try It Now! > http://www.accelacomm.com/jaw/sfnl/114/51427378/ > _______________________________________________ > Postgres-xc-developers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers > > |
From: Michael P. <mic...@gm...> - 2011-07-23 11:57:34
|
On Thu, Jul 21, 2011 at 3:52 PM, Koichi Suzuki <ko...@in...>wrote: > I totally agree with having gtm.conf and gtm_proxy.conf to reduce the > number of runt-time options, especially those passed with -o option from > gtm_ctl. > About the configuration file, perhaps GTM and GTM-proxy could use a configuration file with the same name. I would imagine that if the guc APIs of postgresql are brought in GTM it will be included in gtm/common so as a base it looks more consistent to use the same file name: gtm.conf. > > I need to bring code for GUC from postgres. Could be done as a part of > additional HA feature development. > If you want to include that in the HA effort, it could be nice to make separate patches for the configuration file and GTM-Standby additional features. It will make commit comprehension simpler. -- Michael Paquier http://michael.otacoo.com |
From: Michael P. <mic...@gm...> - 2011-07-23 05:22:34
|
Thanks. I will try to have a look at your patch as soon as possible. Regards, -- Michael Paquier http://michael.otacoo.com |