From: Haruka harukat Date: Tue, 26 Apr 2011 11:33:19 +0000 (+0000) Subject: - add tags into all parameter in the pgpool-ii user manual. X-Git-Tag: V3_1_0_ALPHA2~5 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=b5ca533fec17114e869e3b2b52c068d7a1a68b4f;p=pgpool2.git - add tags into all parameter in the pgpool-ii user manual. --- diff --git a/doc/pgpool-en.html b/doc/pgpool-en.html index 1721a35ba..acd930e01 100644 --- a/doc/pgpool-en.html +++ b/doc/pgpool-en.html @@ -387,7 +387,7 @@ comment and will be ignored.

Common settings

-
listen_addresses
+
listen_addresses

Specifies the hostname or IP address, on which pgpool-II will accept TCP/IP connections. '*' accepts @@ -397,13 +397,13 @@ comment and will be ignored.

server start.

-
port
+
port

The port number used by pgpool-II to listen for connections. Default is 9999. This parameter can only be set at server start.

-
socket_dir
+
socket_dir

The directory where the UNIX domain socket accepting connections for pgpool-II will be created. Default is '/tmp'. Be @@ -412,14 +412,14 @@ comment and will be ignored.

This parameter can only be set at server start.

-
pcp_port
+
pcp_port

The port number where PCP process accepts connections. Default is 9898. This parameter can only be set at server start.

-
pcp_socket_dir
+
pcp_socket_dir

The directory path of the UNIX domain socket accepting connections for the PCP process. Default is '/tmp'. Be @@ -428,7 +428,7 @@ comment and will be ignored.

directory. This parameter can only be set at server start.

-
backend_socket_dir
+
backend_socket_dir
DEPRECATED
This parameter is deprecated for consistency with the default libpq policy. @@ -437,7 +437,7 @@ comment and will be ignored.

This parameter was defining the PostgreSQL server's UNIX domain socket directory.

-
pcp_timeout
+
pcp_timeout

PCP connection's timeout value in seconds. If a client does not respond within the set seconds, PCP closes the connection with @@ -445,7 +445,7 @@ comment and will be ignored.

with a reload.

-
num_init_children
+
num_init_children

The number of preforked pgpool-II server processes. Default is 32. num_init_children is also the concurrent connections limit to @@ -479,7 +479,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection This parameter can only be set at server start.

-
child_life_time
+
child_life_time

A pgpool-II child process' life time in seconds. When a child is idle for that many seconds, it is terminated and a new child @@ -491,7 +491,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection

-
child_max_connections
+
child_max_connections

A pgpool-II child process will be terminated after this many connections from clients. This parameter is useful on a server @@ -501,7 +501,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection

-
client_idle_limit +
client_idle_limit

Disconnect a client if it has been idle for client_idle_limit seconds after the last query has completed. @@ -512,19 +512,19 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection second stage of online recovery. You need to reload pgpool.conf if you change client_idle_limit.

-
authentication_timeout +
authentication_timeout

Specify the timeout for pgpool authentication. 0 disables the time out, which is the default. You need to restart pgpool-II if you change authentication_timeout.

-
logdir
+
logdir

The directory used for the logs. pgpool_status is written into this directory.

-
log_destination
+
log_destination

PgPool II supports several methods for logging server messages, including stderr and syslog. The default is to log to stderr. @@ -538,19 +538,19 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection

-
syslog_facility
+
syslog_facility

When logging to syslog is enabled, this parameter determines the syslog "facility" to be used. You can choose from LOCAL0, LOCAL1, LOCAL2, LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7; the default is LOCAL0. See also the documentation of your system's syslog daemon.

-
syslog_ident
+
syslog_ident

When logging to syslog is enabled, this parameter determines the program name used to identify PgPool messages in syslog logs. The default is pgpool.

-
pid_file_name
+
pid_file_name

Full path to a file which contains pgpool's process id. Default is "/var/run/pgpool/pgpool.pid". @@ -558,7 +558,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection

-
print_timestamp
+
print_timestamp

Add timestamps to the logs when set to true. Default is true. @@ -566,13 +566,13 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection

-
connection_cache
+
connection_cache

Caches connections to backends when set to true. Default is true.

-
health_check_timeout
+
health_check_timeout

pgpool-II periodically tries to connect to the backends to detect any error on the servers or networks. This error check @@ -592,7 +592,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection

-
health_check_period
+
health_check_period

This parameter specifies the interval between the health checks in seconds. Default is 0, which means health check is @@ -601,7 +601,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection

-
health_check_user
+
health_check_user

The user name to perform health check. This user must exist in all the PostgreSQL backends. @@ -609,7 +609,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection

-
failover_command
+
failover_command

This parameter specifies a command to run when a node is detached. @@ -643,7 +643,7 @@ After this, pgpool starts new child processes and is ready again to accept connections from clients.

-
failback_command
+
failback_command

This parameter specifies a command to run when a node is attached. @@ -668,7 +668,7 @@ information. You need to reload pgpool.conf if you change failback_command.

-
follow_master_command
+
follow_master_command

This parameter specifies a command to run in master/slave streaming replication mode only after a master failover. @@ -701,7 +701,7 @@ degenerated nodes. Typically the command should be used to recover the slave fro pcp_recovery_node command for example.

-
fail_over_on_backend_error
+
fail_over_on_backend_error

If true, and an error occurs when writing to the backend communication, @@ -714,7 +714,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
ignore_leading_white_space
+
ignore_leading_white_space

pgpool-II ignores white spaces at the beginning of SQL queries while in the load balance mode. It is useful if used with @@ -724,7 +724,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
log_statement
+
log_statement

Produces SQL log messages when true. This is similar to the log_statement parameter in PostgreSQL. It produces logs even if the @@ -733,7 +733,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
log_per_node_statement
+
log_per_node_statement

Similar to log_statement, except that it prints logs for each DB node separately. It can be useful to make sure that replication is working, for example. @@ -741,7 +741,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
log_hostname
+
log_hostname

If true, ps command status will show the client's hostname instead @@ -750,7 +750,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
log_connections
+
log_connections

If true, all incoming connections will be printed to the log. @@ -758,7 +758,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
enable_pool_hba
+
enable_pool_hba

If true, use pool_hba.conf for client authentication. See @@ -767,7 +767,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
backend_hostname
+
backend_hostname

Specifies where to connect with the PostgreSQL backend. It can It is used by pgpool-II to communicate with the server. @@ -799,7 +799,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
backend_port
+
backend_port

Specifies the port number of the backends. Multiple backends can be specified by adding a number at the end of the parameter @@ -814,7 +814,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
backend_weight
+
backend_weight

Specifies the load balance ratio for the backends. Multiple backends can be specified by adding a number at the end of the @@ -834,7 +834,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
backend_data_directory
+
backend_data_directory

Specifies the database cluster directory of the backends. Multiple backends can be specified by adding a number @@ -851,7 +851,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
ssl
+
ssl

If true, enable SSL support for both the frontend and backend @@ -870,7 +870,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
ssl_key
+
ssl_key

The path to the private key file to use for incoming frontend connections. @@ -882,7 +882,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
ssl_cert
+
ssl_cert

The path to the public x509 certificate file to use for incoming @@ -895,7 +895,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
debug_level
+
debug_level

Debug message verbosity level. 0 means no message, greater than 1 @@ -903,7 +903,7 @@ postmaster. You need to reload pgpool.conf if you change this value.

-
relcache_expire
+
relcache_expire

Life time of relation cache in seconds. 0 means no cache @@ -944,7 +944,7 @@ connection pool function can be used. To enable this mode, set raw mode configuration parameters and parameters below.

-
max_pool
+
max_pool

The maximum number of cached connections in pgpool-II children processes. pgpool-II reuses the cached connection if an @@ -960,14 +960,14 @@ raw mode configuration parameters and parameters below.

This parameter can only be set at server start.

-
connection_life_time
+
connection_life_time

Cached connections expiration time in seconds. An expired cached connection will be disconnected. Default is 0, which means the cached connections will not be disconnected.

-
reset_query_list
+
reset_query_list

Specifies the SQL commands sent to reset the connection to the backend when exiting a session. Multiple commands can be @@ -1009,20 +1009,20 @@ You need to reload pgpool.conf upon modification of this directive. configuration parameters below must be set in addition to everything above.

-
replication_mode +
replication_mode

Setting to true enables replication mode. Default is false.

-
load_balance_mode
+
load_balance_mode

When set to true, SELECT queries will be distributed to each backend for load balancing. Default is false.

-
failover_if_affected_tuples_mismatch
+
failover_if_affected_tuples_mismatch

When set to true, if backends don't return the same number of affected tuples during an INSERT/UPDATE/DELETE, @@ -1031,7 +1031,7 @@ configuration parameters below must be set in addition to everything above.

degenerated. Default is false.

-
replication_stop_on_mismatch
+
replication_stop_on_mismatch

When set to true, if all backends don't return the same packet kind, the backends that differ from most @@ -1047,8 +1047,7 @@ configuration parameters below must be set in addition to everything above.

degenerated. Default is false.

- -
white_function_list +
white_function_list

Specify a comma separated list of function names that do not @@ -1063,8 +1062,7 @@ white_function_list = 'get_.*,select_.*'

- -
black_function_list +
black_function_list

Specify a comma separated list of function names that do @@ -1098,12 +1096,11 @@ Adding to black_function_list will prevent load balancing.

- -
replicate_select
-
-

When set to true, pgpool-II replicates SELECTs in replication mode. If false, - pgpool-II only sends them to the Master DB. Default is false.

- +
replicate_select
+
+

When set to true, pgpool-II replicates SELECTs in replication mode. If false, +pgpool-II only sends them to the Master DB. Default is false. +

If a SELECT query is inside an explicit transaction block, replicate_select and load_balance_mode will have an effect on how replication works. @@ -1164,7 +1161,7 @@ Details are shown below.

-
insert_lock
+
insert_lock

If replicating a table with SERIAL data type, the SERIAL column value may differ between the backends. This problem is avoidable by @@ -1232,21 +1229,21 @@ lock before that. The transaction will be aborted, and the following INSERT statement produces the above error message.

-
recovery_user +
recovery_user

This parameter specifies a PostgreSQL username for online recovery. It can be changed without restarting.

-
recovery_password +
recovery_password

This parameter specifies a PostgreSQL password for online recovery. It can be changed without restarting.

-
recovery_1st_stage_command +
recovery_1st_stage_command

This parameter specifies a command to be run at the first stage of online @@ -1273,7 +1270,7 @@ data during this stage. This parameter can be changed without restarting.

-
recovery_2nd_stage_command +
recovery_2nd_stage_command

This parameter specifies a command to be run at the second stage of online @@ -1303,7 +1300,7 @@ client is connected to pgpool-II anymore. This parameter can be changed without restarting.

-
recovery_timeout +
recovery_timeout

pgpool does not accept new connections during the second stage. If a client @@ -1318,7 +1315,7 @@ pgpool cancels online recovery and accepts connections. 0 means no wait. This parameter can be changed without restarting.

-
client_idle_limit_in_recovery +
client_idle_limit_in_recovery

Similar to client_idle_limit but only takes effect in the second stage of recovery. A client being idle for client_idle_limit_in_recovery @@ -1339,7 +1336,7 @@ This parameter can be changed without restarting.

You need to reload pgpool.conf if you change client_idle_limit_in_recovery.

-
lobj_lock_table +
lobj_lock_table

This parameter specifies a table name used for large object replication control. @@ -1780,44 +1777,44 @@ pgpool-II. The System DB's configuration is done in pgpool.conf.

-
system_db_hostname
+
system_db_hostname

The hostname where the System DB is. Specifying the empty string ('') means the System DB is on the same host as pgpool-II, and will be accessed via a UNIX domain socket.

-
system_db_port
+
system_db_port

The port number for the System DB

-
system_dbname
+
system_dbname

The partitioning rules and other information will be defined in the database specified here. Default value is: 'pgpool'.

-
system_db_schema
+
system_db_schema

The partitioning rules and other information will be defined in the schema specified here. Default value is: 'pgpool_catalog'.

-
system_db_user
+
system_db_user

The username to connect to the System DB.

-
system_db_password
+
system_db_password

The password for the System DB. If no password is necessary, set the empty string ('').

-
ssl_ca_cert
+
ssl_ca_cert

The path to a PEM format file containing one or more CA root @@ -1834,7 +1831,7 @@ pgpool-II. The System DB's configuration is done in

-
ssl_ca_cert_dir
+
ssl_ca_cert_dir

The path to a directory containing PEM format CA certficate diff --git a/doc/pgpool-ja.html b/doc/pgpool-ja.html index 2298ab386..8a6399fe2 100644 --- a/doc/pgpool-ja.html +++ b/doc/pgpool-ja.html @@ -383,7 +383,7 @@ pgpool.conf$B$G$O6uGr9T$d(B#$B$G;O$^$k9T$O%3%a%s%H$H8+$J$5$l$^$9!#(B

-
listen_addresses +
listen_addresses

pgpool-II$B$,(BTCP/IP$B%3%M%/%7%g%s$r$^$?$O(BIP$B%"%I%l%9$G(B @@ -394,7 +394,7 @@ UNIX$B%I%a%$%s%=%1%C%H7PM3$N%3%M%/%7%g%s$O>o$K -

port +
port

pgpool-II$B$,%3%M%/%7%g%s$r -

socket_dir +
socket_dir

pgpool-II$B$,%3%M%/%7%g%s$r -

pcp_port +
pcp_port

pcp$B$,;HMQ$9$k%]!<%HHV9f$G$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
pcp_socket_dir +
pcp_socket_dir

pcp$B$,%3%M%/%7%g%s$r -

backend_socket_dir +
backend_socket_dir

UNIX$B%I%a%$%s%=%1%C%H7PM3$G(Bpgpool-II$B$,(BPostgreSQL$B$H@\B3$9$k:]$K;HMQ$9$k(B @@ -434,7 +434,7 @@ PostgreSQL$B$N(BUNIX$B%I%a%$%s%=%1%C%H$,CV$+$l$F$$$k%G%#%l%/%H%j!#%G%U%)%k%HC $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
pcp_timeout +
pcp_timeout

pcp$B$,(Bpgppool$B$H@\B3$9$k:]$N%?%$%`%"%&%HCM!#(B0$B$K$9$k$H%?%$%`%"%&%H$7$^$;$s!#(B @@ -442,7 +442,7 @@ pcp$B$,(Bpgppool$B$H@\B3$9$k:]$N%?%$%`%"%&%HCM!#(B0$B$K$9$k$H%?%$%`%"%&%H$7 $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
num_init_children +
num_init_children

prefork$B$9$k(Bpgpool-II$B$N%5!<%P%W%m%;%9$N?t$G$9!#%G%U%)%k%HCM$O(B32$B$K$J$C$F$$$^$9!#(B @@ -469,7 +469,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
child_life_time +
child_life_time

pgpool-II$B$N;R%W%m%;%9$NuBV$K$J$C$F$+$i(B @@ -481,7 +481,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
child_max_connections +
child_max_connections

$B3F(Bpgpool-II$B;R%W%m%;%9$X$N@\B32s?t$,$3$N@_DjCM$rD6$($k$H!"$=$N;R%W%m(B @@ -491,7 +491,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
client_idle_limit +
client_idle_limit

$BA02s%/%i%$%"%s%H$+$iMh$?%/%(%j$+$i!"(Bclient_idle_limit $BIC1[$($F$b -

authentication_timeout +
authentication_timeout

$BG'>Z=hM}$N%?%$%`%"%&%H;~4V$rICC10L$G;XDj$7$^$9!#(B0 $B$r;XDj$9$k$H%?%$(B @@ -511,14 +511,14 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
logdir +
logdir

pgpool-II$B$N3FuBV$r5-O?$9$k(Bpgpool_status$B%U%!%$%k$,=q$+$l$^$9!#(B

-
pid_file_name +
pid_file_name

pgpool-II$B$N(Bpid file($B%W%m%;%9(BID$B$r3JG<$7$?%U%!%$%k(B)$B$N%U%k%Q%9L>$G$9!#(B @@ -526,7 +526,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
print_timestamp +
print_timestamp

true$B$J$i$P(Bpgpool-II$B$N%m%0$K%?%$%`%9%?%s%W$rDI2C$7$^$9!#%G%U%)%k%H$O(B @@ -534,14 +534,14 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
connection_cache +
connection_cache

true$B$J$i(BPostgreSQL$B$X$N%3%M%/%7%g%s$r%-%c%C%7%e$7$^$9!#%G%U%)%k%H$O(Btrue$B$G$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
health_check_timeout +
health_check_timeout

pgpool-II$B$O%5!<%P>c32$d%M%C%H%o!<%/>c32$r8!CN$9$k$?$a$K!"Dj4|E*$K%P%C(B @@ -559,7 +559,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
health_check_period +
health_check_period

$B%X%k%9%A%'%C%/$r9T$&4V3V$rICC10L$G;XDj$7$^$9!#(B0$B$r;XDj$9$k$H%X%k%9(B @@ -568,14 +568,14 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
health_check_user +
health_check_user

$B%X%k%9%A%'%C%/$r9T$&$?$a$N(BPostgreSQL$B%f!<%6L>$G$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
failover_command +
failover_command

$B%N!<%I$,@Z$jN%$5$l$?;~$KuBV$K$J$j$^$9!#(B

-
failback_command +
failback_command

$B%N!<%I$,I|5"$7$?;~$KpJs$KCV$-49$($F%3%^%s%I$r -

follow_master_command +
follow_master_command

$B%^%9%?!<%N!<%I$N%U%'%$%k%*!<%P!<8e$KpJs$KCV$-49$($F%3%^%s%I$r$l$N%N!<%I$KBP$7$F(Bfollow_master_command$B$K;XDj$7$?%3%^%s%I$,o$O!"$3$3$K(Bpcp_recovery_node$B%3%^%s%I$rAH$_9~$s$@%7%'%k%9%/%j%W%H$J$I$r;XDj$7!"?7$7$$%^%9%?!<$+$i%9%l!<%V$r%j%+%P%j$9$k$?$a$K;HMQ$7$^$9!#(B

-
fail_over_on_backend_error +
fail_over_on_backend_error

true$B$J$i$P!"%P%C%/%(%s%I$N%=%1%C%H$X$N=q$-9~$_$K<:GT$9$k$H%U%'%$%k%*!<%P$7$^$9!#(B @@ -666,7 +666,7 @@ false$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
ignore_leading_white_space +
ignore_leading_white_space

true$B$J$i$P!"(Bload balance$B$N:]$K(BSQL$BJ89TF,$N6uGr$rL5;k$7$^$9(B($BA43Q%9(B @@ -676,7 +676,7 @@ false$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
log_statement +
log_statement

true$B$J$i$P(BSQL$BJ8$r%m%0=PNO$7$^$9!#$3$NLrL\$O(BPostgreSQL$B$N(B @@ -685,14 +685,14 @@ false$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
log_per_node_statement +
log_per_node_statement

log_statement$B$H;w$F$$$^$9$,!"(BDB$B%N!<%IC10L$G%m%0$,=PNO$5$l$k$N$G!"%l%W%j%1!<%7%g%s$dIi2YJ,;6$N3NG'$,MF0W$G$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
log_hostname +
log_hostname

true$B$J$i$P!"(Bps$B%3%^%s%I$G$N>uBVI=<(;~$K(BIP$B%"%I%l%9$G$O$J$/!"%[%9%HL>(B @@ -701,14 +701,14 @@ false$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
log_connections +
log_connections

true$B$J$i$P!"A4$F$N%/%i%$%"%s%H@\B3$r%m%0$X=PNO$7$^$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
enable_pool_hba +
enable_pool_hba

true$B$J$i$P!"(Bpool_hba.conf$B$K=>$C$F%/%i%$%"%s%HG'>Z$r9T$$$^$9!#(B @@ -717,7 +717,7 @@ false$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
backend_hostname +
backend_hostname

$B;HMQ$9$k(BPostgreSQL$B%5!<%P$N%[%9%HL>$r;XDj$7$^$9!#6uJ8;z$r;XDj$9$k$H(BUNIX$B%I(B @@ -738,7 +738,7 @@ backend_hostname $B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k(B $B$k>l9g$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
backend_port +
backend_port

$B;HMQ$9$k(BPostgreSQL$B%5!<%P$N%]!<%HHV9f$r;XDj$7$^$9!#(B @@ -754,7 +754,7 @@ backend_port $B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k(B

-
backend_weight +
backend_weight

$B;HMQ$9$k(BPostgreSQL$B%5!<%P$KBP$9$kIi2YJ,;6$NHfN($r(B0$B0J>e$N@0?t$^$?$OIbF0>.?tE@$G;XDj$7$^$9!#(B @@ -769,7 +769,7 @@ pgpool-II 2.2.6/2.3$B0J9_$G$O!"@_Dj%U%!%$%k$N:FFI9~$G(Bbackend_weight$BCM$rJQ $B?7$7$/@\B3$7$?%/%i%$%"%s%H%;%C%7%g%s$+$i!"$3$N?7$7$$(Bweight$BCM$,H?1G$5$l$^$9!#(B

-
backend_data_directory +
backend_data_directory

$B;HMQ$9$k(B PostgreSQL $B%5!<%P$N%G!<%?%Y!<%9%/%i%9%?$N%Q%9$r;XDj$7$^$9!#(B @@ -785,7 +785,7 @@ backend_data_directory $B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k( $B$k>l9g$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
ssl
+
ssl

true$B$J$i$P(Bpgpool-II$B$H%U%m%s%H%(%s%I!"(Bpgpool-II$B$H%P%C%/%(%s%I$N4V$N(BSSL$B@\B3$,2DG=$K$J$j$^$9!#(B @@ -801,7 +801,7 @@ backend_data_directory $B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k(

-
ssl_key
+
ssl_key

$B%U%m%s%H%(%s%I$H$N@\B3$K;HMQ$9$k%W%i%$%Y!<%H%-!<%U%!%$%k$N%U%k%Q%9$r;XDj$7$^$9!#(B @@ -813,7 +813,7 @@ backend_data_directory $B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k(

-
ssl_cert
+
ssl_cert

$B%U%m%s%H%(%s%I$H$N@\B3$K;HMQ$9$k8x3+(Bx509$B>ZL@=q$N%U%k%Q%9$r;XDj$7$^$9!#(B @@ -824,7 +824,7 @@ backend_data_directory $B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k( ssl_cert$B$N@_Dj$,$J$$>l9g$O!"%U%m%s%H%(%s%I$H$N@\B3$G(BSSL$B$,;HMQ$5$l$J$/$J$j$^$9!#(B

-
debug_level
+
debug_level

$B%G%P%C%0%a%C%;!<%8$N>\:Y%l%Y%k!#(B0$B$G%G%P%C%0%a%C%;!<%8$N=PNO$J$7!#(B @@ -834,7 +834,7 @@ backend_data_directory $B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k(

-
relcache_expire
+
relcache_expire

$B%j%l!<%7%g%s%-%c%C%7%e$N

-
max_pool +
max_pool

pgpool-II$B$N3F%5!<%P%W%m%;%9$,%-!<%W$9$k(BPostgreSQL$B$X$N:GBg%3%M%/%7%g%s(B @@ -891,7 +891,7 @@ raw$B%b!<%I$K2C$(!"%3%M%/%7%g%s%W!<%j%s%0$,MxMQ$G$-$k$h$&$K$J$j$^$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
connection_life_time +
connection_life_time

$B%3%M%/%7%g%s%W!<%kCf$N%3%M%/%7%g%s$NM-8z4|4V$rICC10L$G;XDj$7$^$9!#(B0 @@ -900,7 +900,7 @@ raw$B%b!<%I$K2C$(!"%3%M%/%7%g%s%W!<%j%s%0$,MxMQ$G$-$k$h$&$K$J$j$^$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
reset_query_list +
reset_query_list

$B%;%C%7%g%s$,=*N;$9$k$H$-$K%3%M%/%7%g%s$r=i4|2=$9$k$?$a$N(BSQL$B%3%^%s%I(B @@ -950,7 +950,7 @@ raw$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#(B

-
replication_mode +
replication_mode

$B%l%W%j%1!<%7%g%s%b!<%I$GF0:n$5$;$k>l9g$O(Btrue$B$r;XDj$7$F$/$@$5$$!#%G(B @@ -958,14 +958,14 @@ raw$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
load_balance_mode +
load_balance_mode

true$B$r;XDj$9$k$H%l%W%j%1!<%7%g%s%b!<%I$^$?$O%^%9%?!<%9%l!<%V%b!<%I$N:]$K!"(BSELECT$BJ8$r%m!<%I%P%i%s%9$7$F8!:w@-G=$r8~>e$5$;$k$3$H$,$G$-$^$9!#%G%U%)%k%HCM$O(Bfalse$B$G$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
replication_stop_on_mismatch +
replication_stop_on_mismatch

$B3F(BDB$B%N!<%I$+$iAw$i$l$F$/$k%Q%1%C%H$Nl9g$K!"(BDB$B%N!<%I$r@Z$jJ|$7$F=LB`1?E>$KF~$j$^$9!#(B @@ -977,7 +977,7 @@ raw$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#(B $B%G%U%)%k%HCM$O(Bfalse$B$G$9!#(B

-
failover_if_affected_tuples_mismatch +
failover_if_affected_tuples_mismatch

$B3F(BDB$B%N!<%I$Gl9g$K!"(BDB$B%N!<%I$r@Z$jJ|$7$F=LB`1?E>$KF~$j$^$9!#(B @@ -987,8 +987,7 @@ raw$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#(B $B%G%U%)%k%HCM$O(Bfalse$B$G$9!#(B

- -
white_function_list +
white_function_list

$B%G!<%?%Y!<%9$KBP$7$F(B$B99?7$r9T$J$o$J$$4X?tL>(B$B$r%3%s%^6h@Z$j$G;XDj$7$^$9!#(B @@ -996,8 +995,7 @@ raw$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#(B ($B%^%9%?!<%9%l!<%V%b!<%I$K$*$$$F$O!"%^%9%?!<(B(primary)DB$B%N!<%I$K$N$_Aw?.$5$l$^$9(B)$B!#(B

- -
black_function_list +
black_function_list

$B%G!<%?%Y!<%9$KBP$7$F(B$B99?7$r9T$J$&4X?tL>(B$B$r%3%s%^6h@Z$j$G;XDj$7$^$9!#(B @@ -1017,8 +1015,7 @@ white_function_list = '' black_function_list = 'nextval,setval' - -

replicate_select +
replicate_select

true $B$r@_Dj$9$k$H!"%l%W%j%1!<%7%g%s%b!<%I$G$O(B SELECT $BJ8$r%l%W%j%1!<%7%g%s$7$^$9!#$3$l$O(B pgpool-II 1.0 $B$^$G$N5sF0$HF1$8$K$J$j$^$9!#(Bfalse $B$r@_Dj$9$k$H(B SELECT $BJ8$r%^%9%?$N$_$KAw?.$7$^$9!#%G%U%)%k%HCM$O(B false $B$G$9!#(B @@ -1080,7 +1077,7 @@ replicate_select$B!"(Bload_balance_mode$B!"(BSELECT$BLd9g$o$;$,L@<(E*$J%H%i

-
insert_lock +
insert_lock

SERIAL$B7?$r;H$C$F$$$k%F!<%V%k$r%l%W%j%1!<%7%g%s$9$k$H!"(BSERIAL$B7?$NNs(B @@ -1151,21 +1148,21 @@ replicate_select$B!"(Bload_balance_mode$B!"(BSELECT$BLd9g$o$;$,L@<(E*$J%H%i

-
recovery_user +
recovery_user

$B%*%s%i%$%s%j%+%P%j$r9T$&$?$a$N(B PostgreSQL $B%f!<%6L>$G$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
recovery_password +
recovery_password

$B%*%s%i%$%s%j%+%P%j$r9T$&$?$a$N(B PostgreSQL $B%f!<%6%Q%9%o!<%I$G$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
recovery_1st_stage_command +
recovery_1st_stage_command

$B:G=i$K%*%s%i%$%s%j%+%P%jCf$K5/F0$9$k%3%^%s%IL>$r;XDj$7$^$9!#%3%^%s%I(B @@ -1192,7 +1189,7 @@ recovery_1st_stage_command $B$O -

recovery_2nd_stage_command +
recovery_2nd_stage_command

2 $B2sL\$N%*%s%i%$%s%j%+%P%jCf$K5/F0$9$k%3%^%s%IL>$r;XDj$7$^$9!#%3%^%s(B @@ -1222,7 +1219,7 @@ recovery_2nd_stage_command $B$O -

recovery_timeout +
recovery_timeout

pgpool$B$O!"%*%s%i%$%s%j%+%P%j$N:]$K$9$Y$F$N%/%i%$%"%s%H$,@\B3$r=*N;$9$k$^$GBT$A$^$9!#(B @@ -1242,7 +1239,7 @@ recovery_timeout$B$r(B0$B$H$7$F$b%?%$%`%"%&%H$,L58z$K$J$k$o$1$G$O$J$/!"C1$KB( $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
client_idle_limit_in_recovery +
client_idle_limit_in_recovery

client_idle_limit$B$H;w$F$$$^$9$,!"$3$N%Q%i%a!<%?$O%j%+%P%j$N%;%+%s%I%9(B @@ -1261,7 +1258,7 @@ recovery_timeout$B$r(B0$B$H$7$F$b%?%$%`%"%&%H$,L58z$K$J$k$o$1$G$O$J$/!"C1$KB( $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#(B

-
lobj_lock_table +
lobj_lock_table

$B%i!<%8%*%V%8%'%/%H$N%l%W%j%1!<%7%g%s$r9T$$$?$$$H$-$K%m%C%/4IM}$K;H$&$?$a$N%F!<%V%kL>$r;XDj$7$^$9!#(B @@ -1680,7 +1677,7 @@ PostgreSQL$B$N%F!<%V%k$N7A$GJ];}$7$^$9!#%7%9%F%`(BDB$B$O(Bpgpool$B$,F0:n$9$

-
system_db_hostname +
system_db_hostname

$B%7%9%F%`(BDB$B$,F0$$$F$$$k%[%9%HL>$G$9!#6uJ8;z$r;XDj$9$k$H!"(BUNIX$B%I%a%$%s%=%1%C(B @@ -1688,14 +1685,14 @@ PostgreSQL$B$N%F!<%V%k$N7A$GJ];}$7$^$9!#%7%9%F%`(BDB$B$O(Bpgpool$B$,F0:n$9$ $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
system_db_port +
system_db_port

$B%7%9%F%`(BDB$B$N%]!<%HHV9f$G$9!#$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
system_dbname +
system_dbname

$B%7%9%F%`(BDB$B$O@lMQ$N%G!<%?%Y!<%9$K@_CV$7$^$9!#$=$N%G!<%?%Y!<%9L>$r;XDj$7$^$9!#(B @@ -1704,7 +1701,7 @@ PostgreSQL$B$N%F!<%V%k$N7A$GJ];}$7$^$9!#%7%9%F%`(BDB$B$O(Bpgpool$B$,F0:n$9$ $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
system_db_schema +
system_db_schema

$B%7%9%F%`(BDB$B$O@lMQ$N%9%-!<%^$K@_CV$7$^$9!#$=$N%9%-!<%^L>$r;XDj$7$^$9!#(B @@ -1713,14 +1710,14 @@ PostgreSQL$B$N%F!<%V%k$N7A$GJ];}$7$^$9!#%7%9%F%`(BDB$B$O(Bpgpool$B$,F0:n$9$ $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
system_db_user +
system_db_user

$B%7%9%F%`(BDB$B$K@\B3$9$k$H$-$N%f!<%6L>$G$9!#(B $B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O(B pgpool-II $B$r:F5/F0$7$F$/$@$5$$!#(B

-
system_db_password +
system_db_password

$B%7%9%F%`(BDB$B$K@\B3$9$k$H$-$N%Q%9%o!<%I$G$9!#%Q%9%o!<%I$r@_Dj$7$F$$$J$$>l9g(B