<div dir="ltr"><div class="gmail_quote"><br><div dir="ltr">Hi all,<div>I&#39;m playing with PgPool II for academic reason, and i&#39;ve setup a PgPool II configuration with Streaming Replication, Online Recovery and Watchdog.</div><div>Here is my conf:</div><div><br></div><div>Server 1 (Master) and Server2 (Slave): PgpoolII 3.3.4 with Postgresql 9.2.9</div><div>With Master and Slave server i mean Master backend(postgres) and standby backend(postgres)</div><div><br></div><div>As user manual said, when I take down Server 1, failover procedure promote Server 2 as new master.</div><div>However if I bring up Server 1 again, PgPool doesn&#39;t recognize it and let its status to 3 (checked with pcp_node_info). For what i can get from user manual, this is normal to PgPool II, beacuse I have to manually do the pcp_recovery_node on fall node. </div><div>If i run it, the old master become a new slave and PgPool start to see it correctly as 1.</div><div><br></div><div>My question is: there is a method in pgpool II to automatic go with online recovery as soon as the fallen node go up again? </div><div><br></div><div>Because it seems that with the health check PgPool i do it already, but only when in state 1. </div><div><br></div><div>Another scenario that &quot;suffer&quot; this problem is when Slave server go down and then go up again, pgpool see it in state 3</div><div><br></div><div>Because i&#39;m a newbe on PgPool, i would to be sure that i&#39;m not missing something in pgpool.conf that already do that;</div><div><br></div><div><br></div><div>Another behavior that I have is that, if i restart the pgpool istance, it remeber the node status</div><div><br></div><div><br></div><div>Here is how my pgpool.conf (Server1) looks like:</div><div><br></div><div>-----------------------------------------------------------------------</div><div><br></div><div><div># ----------------------------</div><div># pgPool-II configuration file</div><div># ----------------------------</div><div>#</div><div># This file consists of lines of the form:</div><div>#</div><div>#   name = value</div><div>#</div><div># Whitespace may be used.  Comments are introduced with &quot;#&quot; anywhere on a line.</div><div># The complete list of parameter names and allowed values can be found in the</div><div># pgPool-II documentation.</div><div>#</div><div># This file is read on server startup and when the server receives a SIGHUP</div><div># signal.  If you edit the file on a running system, you have to SIGHUP the</div><div># server for the changes to take effect, or use &quot;pgpool reload&quot;.  Some</div><div># parameters, which are marked below, require a server shutdown and restart to</div><div># take effect.</div><div>#</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># CONNECTIONS</div><div>#------------------------------------------------------------------------------</div><div><br></div><div># - pgpool Connection Settings -</div><div><br></div><div>listen_addresses = &#39;*&#39;</div><div>                                   # Host name or IP address to listen on:</div><div>                                   # &#39;*&#39; for all, &#39;&#39; for no TCP/IP connections</div><div>                                   # (change requires restart)</div><div>port = 9999</div><div>                                   # Port number</div><div>                                   # (change requires restart)</div><div>socket_dir = &#39;/tmp&#39;</div><div>                                   # Unix domain socket path</div><div>                                   # The Debian package defaults to</div><div>                                   # /var/run/postgresql</div><div>                                   # (change requires restart)</div><div><br></div><div><br></div><div># - pgpool Communication Manager Connection Settings -</div><div><br></div><div>pcp_port = 9898</div><div>                                   # Port number for pcp</div><div>                                   # (change requires restart)</div><div>pcp_socket_dir = &#39;/tmp&#39;</div><div>                                   # Unix domain socket path for pcp</div><div>                                   # The Debian package defaults to</div><div>                                   # /var/run/postgresql</div><div>                                   # (change requires restart)</div><div><br></div><div># - Backend Connection Settings -</div><div><br></div><div>backend_hostname0 = &#39;pgpool-1&#39;</div><div>                                   # Host name or IP address to connect to for backend 0</div><div>backend_port0 = 5432</div><div>                                   # Port number for backend 0</div><div>backend_weight0 = 1</div><div>                                   # Weight for backend 0 (only in load balancing mode)</div><div>backend_data_directory0 = &#39;/usr/local/pgsql/data&#39;</div><div>                                   # Data directory for backend 0</div><div>backend_flag0 = &#39;ALLOW_TO_FAILOVER&#39;</div><div>                                   # Controls various backend behavior</div><div>                                   # ALLOW_TO_FAILOVER or DISALLOW_TO_FAILOVER</div><div>backend_hostname1 = &#39;pgpool-2&#39;</div><div>backend_port1 = 5432</div><div>backend_weight1 = 1</div><div>backend_data_directory1 = &#39;/usr/local/pgsql/data&#39;</div><div>backend_flag1 = &#39;ALLOW_TO_FAILOVER&#39;</div><div><br></div><div># - Authentication -</div><div><br></div><div>enable_pool_hba = off</div><div>                                   # Use pool_hba.conf for client authentication</div><div>pool_passwd = &#39;pool_passwd&#39;</div><div>                                   # File name of pool_passwd for md5 authentication.</div><div>                                   # &quot;&quot; disables pool_passwd.</div><div>                                   # (change requires restart)</div><div>authentication_timeout = 60</div><div>                                   # Delay in seconds to complete client authentication</div><div>                                   # 0 means no timeout.</div><div><br></div><div># - SSL Connections -</div><div><br></div><div>ssl = off</div><div>                                   # Enable SSL support</div><div>                                   # (change requires restart)</div><div>#ssl_key = &#39;./server.key&#39;</div><div>                                   # Path to the SSL private key file</div><div>                                   # (change requires restart)</div><div>#ssl_cert = &#39;./server.cert&#39;</div><div>                                   # Path to the SSL public certificate file</div><div>                                   # (change requires restart)</div><div>#ssl_ca_cert = &#39;&#39;</div><div>                                   # Path to a single PEM format file</div><div>                                   # containing CA root certificate(s)</div><div>                                   # (change requires restart)</div><div>#ssl_ca_cert_dir = &#39;&#39;</div><div>                                   # Directory containing CA root certificate(s)</div><div>                                   # (change requires restart)</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># POOLS</div><div>#------------------------------------------------------------------------------</div><div><br></div><div># - Pool size -</div><div><br></div><div>num_init_children = 32</div><div>                                   # Number of pools</div><div>                                   # (change requires restart)</div><div>max_pool = 4</div><div>                                   # Number of connections per pool</div><div>                                   # (change requires restart)</div><div><br></div><div># - Life time -</div><div><br></div><div>child_life_time = 300</div><div>                                   # Pool exits after being idle for this many seconds</div><div>child_max_connections = 0</div><div>                                   # Pool exits after receiving that many connections</div><div>                                   # 0 means no exit</div><div>connection_life_time = 0</div><div>                                   # Connection to backend closes after being idle for this many seconds</div><div>                                   # 0 means no close</div><div>client_idle_limit = 0</div><div>                                   # Client is disconnected after being idle for that many seconds</div><div>                                   # (even inside an explicit transactions!)</div><div>                                   # 0 means no disconnection</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># LOGS</div><div>#------------------------------------------------------------------------------</div><div><br></div><div># - Where to log -</div><div><br></div><div>log_destination = &#39;stderr&#39;</div><div>                                   # Where to log</div><div>                                   # Valid values are combinations of stderr,</div><div>                                   # and syslog. Default to stderr.</div><div><br></div><div># - What to log -</div><div><br></div><div>print_timestamp = on</div><div>                                   # Print timestamp on each line</div><div>                                   # (change requires restart)</div><div><br></div><div>log_connections = off</div><div>                                   # Log connections</div><div>log_hostname = off</div><div>                                   # Hostname will be shown in ps status</div><div>                                   # and in logs if connections are logged</div><div>log_statement = off</div><div>                                   # Log all statements</div><div>log_per_node_statement = off</div><div>                                   # Log all statements</div><div>                                   # with node and backend informations</div><div>log_standby_delay = &#39;none&#39;</div><div>                                   # Log standby delay</div><div>                                   # Valid values are combinations of always,</div><div>                                   # if_over_threshold, none</div><div><br></div><div># - Syslog specific -</div><div><br></div><div>syslog_facility = &#39;LOCAL0&#39;</div><div>                                   # Syslog local facility. Default to LOCAL0</div><div>syslog_ident = &#39;pgpool&#39;</div><div>                                   # Syslog program identification string</div><div>                                   # Default to &#39;pgpool&#39;</div><div><br></div><div># - Debug -</div><div><br></div><div>debug_level = 0</div><div>                                   # Debug message verbosity level</div><div>                                   # 0 means no message, 1 or more mean verbose</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># FILE LOCATIONS</div><div>#------------------------------------------------------------------------------</div><div><br></div><div>pid_file_name = &#39;/var/run/pgpool/pgpool.pid&#39;</div><div>                                   # PID file name</div><div>                                   # (change requires restart)</div><div>logdir = &#39;/tmp&#39;</div><div>                                   # Directory of pgPool status file</div><div>                                   # (change requires restart)</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># CONNECTION POOLING</div><div>#------------------------------------------------------------------------------</div><div><br></div><div>connection_cache = on</div><div>                                   # Activate connection pools</div><div>                                   # (change requires restart)</div><div><br></div><div>                                   # Semicolon separated list of queries</div><div>                                   # to be issued at the end of a session</div><div>                                   # The default is for 8.3 and later</div><div>reset_query_list = &#39;ABORT; DISCARD ALL&#39;</div><div>                                   # The following one is for 8.2 and before</div><div>#reset_query_list = &#39;ABORT; RESET ALL; SET SESSION AUTHORIZATION DEFAULT&#39;</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># REPLICATION MODE</div><div>#------------------------------------------------------------------------------</div><div><br></div><div>replication_mode = off</div><div>                                   # Activate replication mode</div><div>                                   # (change requires restart)</div><div>replicate_select = off</div><div>                                   # Replicate SELECT statements</div><div>                                   # when in replication or parallel mode</div><div>                                   # replicate_select is higher priority than</div><div>                                   # load_balance_mode.</div><div><br></div><div>insert_lock = off</div><div>                                   # Automatically locks a dummy row or a table</div><div>                                   # with INSERT statements to keep SERIAL data</div><div>                                   # consistency</div><div>                                   # Without SERIAL, no lock will be issued</div><div>lobj_lock_table = &#39;&#39;</div><div>                                   # When rewriting lo_creat command in</div><div>                                   # replication mode, specify table name to</div><div>                                   # lock</div><div><br></div><div># - Degenerate handling -</div><div><br></div><div>replication_stop_on_mismatch = off</div><div>                                   # On disagreement with the packet kind</div><div>                                   # sent from backend, degenerate the node</div><div>                                   # which is most likely &quot;minority&quot;</div><div>                                   # If off, just force to exit this session</div><div><br></div><div>failover_if_affected_tuples_mismatch = off</div><div>                                   # On disagreement with the number of affected</div><div>                                   # tuples in UPDATE/DELETE queries, then</div><div>                                   # degenerate the node which is most likely</div><div>                                   # &quot;minority&quot;.</div><div>                                   # If off, just abort the transaction to</div><div>                                   # keep the consistency</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># LOAD BALANCING MODE</div><div>#------------------------------------------------------------------------------</div><div><br></div><div>load_balance_mode = on</div><div>                                   # Activate load balancing mode</div><div>                                   # (change requires restart)</div><div>ignore_leading_white_space = on</div><div>                                   # Ignore leading white spaces of each query</div><div>white_function_list = &#39;&#39;</div><div>                                   # Comma separated list of function names</div><div>                                   # that don&#39;t write to database</div><div>                                   # Regexp are accepted</div><div>black_function_list = &#39;currval,lastval,nextval,setval&#39;</div><div>                                   # Comma separated list of function names</div><div>                                   # that write to database</div><div>                                   # Regexp are accepted</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># MASTER/SLAVE MODE</div><div>#------------------------------------------------------------------------------</div><div><br></div><div>master_slave_mode = on</div><div>                                   # Activate master/slave mode</div><div>                                   # (change requires restart)</div><div>master_slave_sub_mode = &#39;stream&#39;</div><div>                                   # Master/slave sub mode</div><div>                                   # Valid values are combinations slony or</div><div>                                   # stream. Default is slony.</div><div>                                   # (change requires restart)</div><div><br></div><div># - Streaming -</div><div><br></div><div>sr_check_period = 0</div><div>                                   # Streaming replication check period</div><div>                                   # Disabled (0) by default</div><div>sr_check_user = &#39;replication&#39;</div><div>                                   # Streaming replication check user</div><div>                                   # This is neccessary even if you disable streaming</div><div>                                   # replication delay check by sr_check_period = 0</div><div>sr_check_password = &#39;replication&#39;</div><div>                                   # Password for streaming replication check user</div><div>delay_threshold = 0</div><div>                                   # Threshold before not dispatching query to standby node</div><div>                                   # Unit is in bytes</div><div>                                   # Disabled (0) by default</div><div><br></div><div># - Special commands -</div><div><br></div><div>follow_master_command = &#39;&#39;</div><div>                                   # Executes this command after master failover</div><div>                                   # Special values:</div><div>                                   #   %d = node id</div><div>                                   #   %h = host name</div><div>                                   #   %p = port number</div><div>                                   #   %D = database cluster path</div><div>                                   #   %m = new master node id</div><div>                                   #   %H = hostname of the new master node</div><div>                                   #   %M = old master node id</div><div>                                   #   %P = old primary node id</div><div><span style="white-space:pre-wrap">                                                                </span>   #   %r = new master port number</div><div><span style="white-space:pre-wrap">                                                                </span>   #   %R = new master database cluster path</div><div>                                   #   %% = &#39;%&#39; character</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># PARALLEL MODE</div><div>#------------------------------------------------------------------------------</div><div><br></div><div>parallel_mode = off</div><div>                                   # Activates parallel query mode</div><div>                                   # (change requires restart)</div><div>pgpool2_hostname = &#39;pgpool-1&#39;</div><div>                                   # Set pgpool2 hostname</div><div>                                   # (change requires restart)</div><div><br></div><div># - System DB info -</div><div><br></div><div>system_db_hostname  = &#39;localhost&#39;</div><div>                                   # (change requires restart)</div><div>system_db_port = 5432</div><div>                                   # (change requires restart)</div><div>system_db_dbname = &#39;pgpool&#39;</div><div>                                   # (change requires restart)</div><div>system_db_schema = &#39;pgpool_catalog&#39;</div><div>                                   # (change requires restart)</div><div>system_db_user = &#39;postgres&#39;</div><div>                                   # (change requires restart)</div><div>#system_db_password = &#39;postgres&#39;</div><div>                                   # (change requires restart)</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># HEALTH CHECK</div><div>#------------------------------------------------------------------------------</div><div><br></div><div>health_check_period = 10</div><div>                                   # Health check period</div><div>                                   # Disabled (0) by default</div><div>health_check_timeout = 0</div><div>                                   # Health check timeout</div><div>                                   # 0 means no timeout</div><div>health_check_user = &#39;postgres&#39;</div><div>                                   # Health check user</div><div>health_check_password = &#39;postgres&#39;</div><div>                                   # Password for health check user</div><div>health_check_max_retries = 0</div><div>                                   # Maximum number of times to retry a failed health check before giving up.</div><div>health_check_retry_delay = 1</div><div>                                   # Amount of time to wait (in seconds) between retries.</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># FAILOVER AND FAILBACK</div><div>#------------------------------------------------------------------------------</div><div><br></div><div>failover_command = &#39;/usr/local/pgsql/data/failover.sh %d %P %H %R %h&#39;</div><div>#failover_command = &#39;echo &quot;FAILOVER COMMAND&quot;&#39;</div><div>                                   # Executes this command at failover</div><div>                                   # Special values:</div><div>                                   #   %d = node id</div><div>                                   #   %h = host name</div><div>                                   #   %p = port number</div><div>                                   #   %D = database cluster path</div><div>                                   #   %m = new master node id</div><div>                                   #   %H = hostname of the new master node</div><div>                                   #   %M = old master node id</div><div>                                   #   %P = old primary node id</div><div><span style="white-space:pre-wrap">                                                                </span>   #   %r = new master port number</div><div><span style="white-space:pre-wrap">                                                                </span>   #   %R = new master database cluster path</div><div><br></div><div>                                   #   %% = &#39;%&#39; character</div><div>failback_command = &#39;echo &quot;FAILBACK COMMAND&quot;&#39;</div><div>                                   # Executes this command at failback.</div><div>                                   # Special values:</div><div>                                   #   %d = node id</div><div>                                   #   %h = host name</div><div>                                   #   %p = port number</div><div>                                   #   %D = database cluster path</div><div>                                   #   %m = new master node id</div><div>                                   #   %H = hostname of the new master node</div><div>                                   #   %M = old master node id</div><div>                                   #   %P = old primary node id</div><div><span style="white-space:pre-wrap">                                                                </span>   #   %r = new master port number</div><div><span style="white-space:pre-wrap">                                                                </span>   #   %R = new master database cluster path</div><div>                                   #   %% = &#39;%&#39; character</div><div><br></div><div>fail_over_on_backend_error = on</div><div>                                   # Initiates failover when reading/writing to the</div><div>                                   # backend communication socket fails</div><div>                                   # If set to off, pgpool will report an</div><div>                                   # error and disconnect the session.</div><div><br></div><div>search_primary_node_timeout = 10</div><div>                                   # Timeout in seconds to search for the</div><div>                                   # primary node when a failover occurs.</div><div>                                   # 0 means no timeout, keep searching</div><div>                                   # for a primary node forever.</div><div><br></div><div>#------------------------------------------------------------------------------</div><div># ONLINE RECOVERY</div><div>#------------------------------------------------------------------------------</div><div><br></div><div>recovery_user = &#39;postgres&#39;</div><div>                                   # Online recovery user</div><div>recovery_password = &#39;postgres&#39;</div><div>                                   # Online recovery password</div><div>recovery_1st_stage_command = &#39;recovery_1_stage&#39;</div><div>                                   # Executes a command in first stage</div><div>recovery_2nd_stage_command = &#39;&#39;</div><div>                                   # Executes a command in second stage</div><div>recovery_timeout = 90</div><div>                                   # Timeout in seconds to wait for the</div><div>                                   # recovering node&#39;s postmaster to start up</div><div>                                   # 0 means no wait</div><div>client_idle_limit_in_recovery = 0</div><div>                                   # Client is disconnected after being idle</div><div>                                   # for that many seconds in the second stage</div><div>                                   # of online recovery</div><div>                                   # 0 means no disconnection</div><div>                                   # -1 means immediate disconnection</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># WATCHDOG</div><div>#------------------------------------------------------------------------------</div><div><br></div><div># - Enabling -</div><div><br></div><div>use_watchdog = on</div><div>                                    # Activates watchdog</div><div>                                    # (change requires restart)</div><div><br></div><div># -Connection to up stream servers -</div><div><br></div><div>trusted_servers = &#39;&#39;</div><div>                                    # trusted server list which are used</div><div>                                    # to confirm network connection</div><div>                                    # (hostA,hostB,hostC,...)</div><div>                                    # (change requires restart)</div><div>ping_path = &#39;/bin&#39;</div><div>                                    # ping command path</div><div>                                    # (change requires restart)</div><div><br></div><div># - Watchdog communication Settings -</div><div><br></div><div>wd_hostname = &#39;pgpool-1&#39;</div><div>                                    # Host name or IP address of this watchdog</div><div>                                    # (change requires restart)</div><div>wd_port = 9000</div><div>                                    # port number for watchdog service</div><div>                                    # (change requires restart)</div><div>wd_authkey = &#39;&#39;</div><div>                                    # Authentication key for watchdog communication</div><div>                                    # (change requires restart)</div><div><br></div><div># - Virtual IP control Setting -</div><div><br></div><div>delegate_IP = &#39;192.168.100.251&#39;</div><div>                                    # delegate IP address</div><div>                                    # If this is empty, virtual IP never bring up. </div><div>                                    # (change requires restart)</div><div>ifconfig_path = &#39;/sbin&#39;</div><div>                                    # ifconfig command path</div><div>                                    # (change requires restart)</div><div>if_up_cmd = &#39;ifconfig eth0:0 inet $_IP_$ netmask 255.255.255.0&#39;</div><div>                                    # startup delegate IP command</div><div>                                    # (change requires restart)</div><div>if_down_cmd = &#39;ifconfig eth0:0 down&#39;</div><div>                                    # shutdown delegate IP command</div><div>                                    # (change requires restart)</div><div><br></div><div>arping_path = &#39;/usr/sbin&#39;           # arping command path</div><div>                                    # (change requires restart)</div><div><br></div><div>arping_cmd = &#39;arping -U $_IP_$ -w 1&#39;</div><div>                                    # arping command</div><div>                                    # (change requires restart)</div><div><br></div><div># - Behaivor on escalation Setting -</div><div><br></div><div>clear_memqcache_on_escalation = on</div><div>                                    # Clear all the query cache on shared memory</div><div>                                    # when standby pgpool escalate to active pgpool</div><div>                                    # (= virtual IP holder).</div><div>                                    # This should be off if client connects to pgpool</div><div>                                    # not using virtual IP.</div><div>                                    # (change requires restart)</div><div>wd_escalation_command = &#39;&#39;</div><div>                                    # Executes this command at escalation on new active pgpool.</div><div>                                    # (change requires restart)</div><div><br></div><div># - Lifecheck Setting - </div><div><br></div><div># -- common --</div><div><br></div><div>wd_lifecheck_method = &#39;heartbeat&#39;</div><div>                                    # Method of watchdog lifecheck (&#39;heartbeat&#39; or &#39;query&#39;)</div><div>                                    # (change requires restart)</div><div>wd_interval = 10</div><div>                                    # lifecheck interval (sec) &gt; 0</div><div>                                    # (change requires restart)</div><div><br></div><div># -- heartbeat mode --</div><div><br></div><div>wd_heartbeat_port = 9694</div><div>                                    # Port number for receiving heartbeat signal</div><div>                                    # (change requires restart)</div><div>wd_heartbeat_keepalive = 2</div><div>                                    # Interval time of sending heartbeat signal (sec)</div><div>                                    # (change requires restart)</div><div>wd_heartbeat_deadtime = 30</div><div>                                    # Deadtime interval for heartbeat signal (sec)</div><div>                                    # (change requires restart)</div><div>heartbeat_destination0 = &#39;pgpool-2&#39;</div><div>                                    # Host name or IP address of destination 0</div><div>                                    # for sending heartbeat signal.</div><div>                                    # (change requires restart)</div><div>heartbeat_destination_port0 = 9694 </div><div>                                    # Port number of destination 0 for sending</div><div>                                    # heartbeat signal. Usually this is the</div><div>                                    # same as wd_heartbeat_port.</div><div>                                    # (change requires restart)</div><div>heartbeat_device0 = &#39;&#39;</div><div>                                    # Name of NIC device (such like &#39;eth0&#39;)</div><div>                                    # used for sending/receiving heartbeat</div><div>                                    # signal to/from destination 0.</div><div>                                    # This works only when this is not empty</div><div>                                    # and pgpool has root privilege.</div><div>                                    # (change requires restart)</div><div><br></div><div>#heartbeat_destination1 = &#39;host0_ip2&#39;</div><div>#heartbeat_destination_port1 = 9694</div><div>#heartbeat_device1 = &#39;&#39;</div><div><br></div><div># -- query mode --</div><div><br></div><div>wd_life_point = 3</div><div>                                    # lifecheck retry times</div><div>                                    # (change requires restart)</div><div>wd_lifecheck_query = &#39;SELECT 1&#39;</div><div>                                    # lifecheck query to pgpool from watchdog</div><div>                                    # (change requires restart)</div><div>wd_lifecheck_dbname = &#39;template1&#39;</div><div>                                    # Database name connected for lifecheck</div><div>                                    # (change requires restart)</div><div>wd_lifecheck_user = &#39;nobody&#39;</div><div>                                    # watchdog user monitoring pgpools in lifecheck</div><div>                                    # (change requires restart)</div><div>wd_lifecheck_password = &#39;&#39;</div><div>                                    # Password for watchdog user in lifecheck</div><div>                                    # (change requires restart)</div><div><br></div><div># - Other pgpool Connection Settings -</div><div><br></div><div>other_pgpool_hostname0 = &#39;pgpool-2&#39;</div><div>                                    # Host name or IP address to connect to for other pgpool 0</div><div>                                    # (change requires restart)</div><div>other_pgpool_port0 = 9999</div><div>                                    # Port number for othet pgpool 0</div><div>                                    # (change requires restart)</div><div>other_wd_port0 = 9000</div><div>                                    # Port number for othet watchdog 0</div><div>                                    # (change requires restart)</div><div>#other_pgpool_hostname1 = &#39;host1&#39;</div><div>#other_pgpool_port1 = 5432</div><div>#other_wd_port1 = 9000</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># OTHERS</div><div>#------------------------------------------------------------------------------</div><div>relcache_expire = 0</div><div>                                   # Life time of relation cache in seconds.</div><div>                                   # 0 means no cache expiration(the default).</div><div>                                   # The relation cache is used for cache the</div><div>                                   # query result against PostgreSQL system</div><div>                                   # catalog to obtain various information</div><div>                                   # including table structures or if it&#39;s a</div><div>                                   # temporary table or not. The cache is</div><div>                                   # maintained in a pgpool child local memory</div><div>                                   # and being kept as long as it survives.</div><div>                                   # If someone modify the table by using</div><div>                                   # ALTER TABLE or some such, the relcache is</div><div>                                   # not consistent anymore.</div><div>                                   # For this purpose, cache_expiration</div><div>                                   # controls the life time of the cache.</div><div>relcache_size = 256</div><div>                                   # Number of relation cache</div><div>                                   # entry. If you see frequently:</div><div><span style="white-space:pre-wrap">                                                                </span>   # &quot;pool_search_relcache: cache replacement happend&quot;</div><div><span style="white-space:pre-wrap">                                                                </span>   # in the pgpool log, you might want to increate this number.</div><div><br></div><div>check_temp_table = on</div><div>                                   # If on, enable temporary table check in SELECT statements.</div><div>                                   # This initiates queries against system catalog of primary/master</div><div><span style="white-space:pre-wrap">                                                                </span>   # thus increases load of master.</div><div><span style="white-space:pre-wrap">                                                                </span>   # If you are absolutely sure that your system never uses temporary tables</div><div><span style="white-space:pre-wrap">                                                                </span>   # and you want to save access to primary/master, you could turn this off.</div><div><span style="white-space:pre-wrap">                                                                </span>   # Default is on.</div><div><br></div><div><br></div><div>#------------------------------------------------------------------------------</div><div># ON MEMORY QUERY MEMORY CACHE</div><div>#------------------------------------------------------------------------------</div><div>memory_cache_enabled = off</div><div><span style="white-space:pre-wrap">                                                                </span>   # If on, use the memory cache functionality, off by default</div><div>memqcache_method = &#39;shmem&#39;</div><div><span style="white-space:pre-wrap">                                                                </span>   # Cache storage method. either &#39;shmem&#39;(shared memory) or</div><div><span style="white-space:pre-wrap">                                                                </span>   # &#39;memcached&#39;. &#39;shmem&#39; by default</div><div>                                   # (change requires restart)</div><div>memqcache_memcached_host = &#39;localhost&#39;</div><div><span style="white-space:pre-wrap">                                                                </span>   # Memcached host name or IP address. Mandatory if</div><div><span style="white-space:pre-wrap">                                                                </span>   # memqcache_method = &#39;memcached&#39;.</div><div><span style="white-space:pre-wrap">                                                                </span>   # Defaults to localhost.</div><div>                                   # (change requires restart)</div><div>memqcache_memcached_port = 11211</div><div><span style="white-space:pre-wrap">                                                                </span>   # Memcached port number. Mondatory if memqcache_method = &#39;memcached&#39;.</div><div><span style="white-space:pre-wrap">                                                                </span>   # Defaults to 11211.</div><div>                                   # (change requires restart)</div><div>memqcache_total_size = 67108864</div><div><span style="white-space:pre-wrap">                                                                </span>   # Total memory size in bytes for storing memory cache.</div><div><span style="white-space:pre-wrap">                                                                </span>   # Mandatory if memqcache_method = &#39;shmem&#39;.</div><div><span style="white-space:pre-wrap">                                                                </span>   # Defaults to 64MB.</div><div>                                   # (change requires restart)</div><div>memqcache_max_num_cache = 1000000</div><div><span style="white-space:pre-wrap">                                                                </span>   # Total number of cache entries. Mandatory</div><div><span style="white-space:pre-wrap">                                                                </span>   # if memqcache_method = &#39;shmem&#39;.</div><div><span style="white-space:pre-wrap">                                                                </span>   # Each cache entry consumes 48 bytes on shared memory.</div><div><span style="white-space:pre-wrap">                                                                </span>   # Defaults to 1,000,000(45.8MB).</div><div>                                   # (change requires restart)</div><div>memqcache_expire = 0</div><div><span style="white-space:pre-wrap">                                                                </span>   # Memory cache entry life time specified in seconds.</div><div><span style="white-space:pre-wrap">                                                                </span>   # 0 means infinite life time. 0 by default.</div><div>                                   # (change requires restart)</div><div>memqcache_auto_cache_invalidation = on</div><div><span style="white-space:pre-wrap">                                                                </span>   # If on, invalidation of query cache is triggered by corresponding</div><div><span style="white-space:pre-wrap">                                                                </span>   # DDL/DML/DCL(and memqcache_expire).  If off, it is only triggered</div><div><span style="white-space:pre-wrap">                                                                </span>   # by memqcache_expire.  on by default.</div><div>                                   # (change requires restart)</div><div>memqcache_maxcache = 409600</div><div><span style="white-space:pre-wrap">                                                                </span>   # Maximum SELECT result size in bytes.</div><div><span style="white-space:pre-wrap">                                                                </span>   # Must be smaller than memqcache_cache_block_size. Defaults to 400KB.</div><div>                                   # (change requires restart)</div><div>memqcache_cache_block_size = 1048576</div><div><span style="white-space:pre-wrap">                                                                </span>   # Cache block size in bytes. Mandatory if memqcache_method = &#39;shmem&#39;.</div><div><span style="white-space:pre-wrap">                                                                </span>   # Defaults to 1MB.</div><div>                                   # (change requires restart)</div><div>memqcache_oiddir = &#39;/var/log/pgpool/oiddir&#39;</div><div><span style="white-space:pre-wrap">                                </span>   <span style="white-space:pre-wrap">                                </span>   # Temporary work directory to record table oids</div><div>                                   # (change requires restart)</div><div>white_memqcache_table_list = &#39;&#39;</div><div>                                   # Comma separated list of table names to memcache</div><div>                                   # that don&#39;t write to database</div><div>                                   # Regexp are accepted</div><div>black_memqcache_table_list = &#39;&#39;</div><div>                                   # Comma separated list of table names not to memcache</div><div>                                   # that don&#39;t write to database</div><div>                                   # Regexp are accepted</div></div><div><br></div><div>--------------------------------------------------------</div><div><br></div><div><br></div><div><br></div><div>Thank you in advance (and sorry for my English, i hope i was clear enough) </div><div><br></div><div>-- <br><div><div dir="ltr"><div><br></div>================================<br> Antonio Bagarolo,<br> Software Engineer and Research Assistant -  mOSAIC project FP7 <br> Department of Industrial and Information Engineering<br> Second University of Naples<br> Real Casa dell&#39;Annunziata via Roma, 29<br> 81031 Aversa (CE) - ITALY<br> Skype: antonio.bagarolo<div> Cell: <a href="tel:%2B39%20328%206222197" value="+393286222197" target="_blank">+39 328 6222197</a><br> ================================<div><br></div><div><table border="0" cellpadding="0" style="border-collapse:collapse"><tbody><tr><td height="28" valign="bottom" background="http://www.rappresentanzegranata.it/news/images/sfondo/green.jpg" width="30"><p style="margin-top:0px;margin-bottom:0px"><span style="background-color:rgba(255,255,255,0)"> </span></p></td><td><p style="margin-top:8px;margin-bottom:0px;margin-left:4px"><span style="background-color:rgba(255,255,255,0)">Stampa questa e-mail solo se necessario. Rispetta l&#39;ambiente, non sprecare la carta.</span></p></td></tr></tbody></table></div><div><br></div>AVVERTENZE AI SENSI DEL D.Lgs. 196/2003 Le informazioni contenute in questo messaggio di posta elettronica e/o nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il loro utilizzo è consentito esclusivamente al destinatario del messaggio, per le finalità indicate nel messaggio stesso. Qualora riceviate questo messaggio senza esserne il destinatario, Vi preghierei cortesemente di darmene notizia via e-mail e di procedere alla distruzione del  messaggio stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso, divulgarlo anche in parte, distribuirlo ad altri  soggetti, copiarlo, od utilizzarlo per finalità diverse, costituisce  comportamento contrario ai principi  dettati dal D.Lgs. 196/2003.<br><br><table border="0" cellpadding="0" style="border-collapse:collapse"><tbody><tr><td height="28" valign="bottom" background="http://www.rappresentanzegranata.it/news/images/sfondo/green.jpg" width="30"><p style="margin-top:0px;margin-bottom:0px"><span style="background-color:rgba(255,255,255,0)"> </span></p></td><td><p style="margin-top:8px;margin-bottom:0px;margin-left:4px"><span style="background-color:rgba(255,255,255,0)">Print this e-mail only if needed. Respect the environment,do not waste paper.</span></p></td></tr></tbody></table><br>WARNING / LEGAL TEXT: This message is intended only for the use of the
individual or entity to which it is addressed and may contain
information which is privileged, confidential, proprietary, or exempt
from disclosure under applicable law. If you are not the intended
recipient or the person responsible for delivering the message to the
intended recipient, you are strictly prohibited from disclosing,
distributing, copying, or in any way using this message. If you have
received this communication in error, please notify the sender and
destroy and delete any copies you may have received.
<br></div></div></div>
</div></div>
</div><br><div><br></div>
</div>