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 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 last_status_change timestamp);

説明

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

引数

node_id

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

pcp_server

pcpサーバの外部サーバ名

他の引数

pcp_common_optionsを参照ください。

使用例

使用例です。

    test=# SELECT * FROM pcp_node_info(0,'',11001,'t-ishii','t-ishii');
    host | port  |      status       | weight |  role   | replication_delay | last_status_change  
    ------+-------+-------------------+--------+---------+-------------------+---------------------
    /tmp | 11002 | Connection in use |    0.5 | Primary |                 0 | 2018-07-04 17:34:39
    (1 row)
   

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

     ALTER EXTENSION pgpool_adm UPDATE;