pgpool_adm_pcp_node_info

名前

pgpool_adm_pcp_node_info --  指定ノードIDの情報を表示する関数

概要

pcp_node_info returns record(integer node_id, text host, integer port, text username, text password, out status text, out weight float4, out role text, out replication_delay bigint, out replication_state text, out replication_sync_state text, out last_status_change timestamp);

pcp_node_info returns record(integer node_id, text pcp_server, out status text, out weight float4, out role text, out replication_delay bigint, out replication_state text, out replication_sync_state text, out last_status_change timestamp);

説明

pcp_node_infoは指定されたノードIDの情報を表示します。

引数

node_id

情報を取得するバックエンドノード

pcp_server

pcpサーバの外部サーバ名

他の引数

pcp_common_optionsを参照ください。

使用例

使用例です。

    test=# SELECT * FROM pcp_node_info(node_id => 1, host => '', port => 11001, username => 't-ishii', password => 't-ishii');
    host | port  |      status       | weight |  role   | replication_delay | replication_state | replication_sync_state | last_status_change  
    ------+-------+-------------------+--------+---------+-------------------+-------------------+------------------------+---------------------
    /tmp | 11003 | Connection in use |     0.5 | Standby |                 0 | streaming         | async                  | 2019-04-23 15:02:46
    (1 row)
   

注意: role, replication_delay, last_status_change出力パラメータはPgpool-II 4.0で追加されました。 すでに4.0以前のpgpool_adm拡張をインストールしている場合は、ALTER EXTENSION SQLコマンドを使って更新が可能です。

     ALTER EXTENSION pgpool_adm UPDATE;
    

注意: replication_state, replication_sync_state出力パラメータはPgpool-II 4.1で追加されました。 すでに4.1以前のpgpool_adm拡張をインストールしている場合は、ALTER EXTENSION SQLコマンドを使って更新が可能です。

     ALTER EXTENSION pgpool_adm UPDATE;