pgpool_adm_pcp_attach_node

名前

pgpool_adm_pcp_attach_node --  指定ノードをアタッチする関数

概要

pcp_attach_node returns record(integer node_id, text host, integer port, text username, text password, out node_attached boolean);

pcp_attach_node returns record(integer node_id, text pcp_server, out node_attached boolean);

説明

pcp_attach_nodeは、ノードをPgpool-IIにアタッチします。

引数

node_id

ノードをアタッチするバックエンドのインデックスです。

pcp_server

pcpサーバの外部サーバ名

他の引数

pcp_common_optionsを参照ください。

使用例

使用例です。

    test=# SELECT * FROM pcp_attach_node(node_id => 1, host => 'localhost', port => 11001, username => 't-ishii', password => 't-ishii');
    node_attached
    ---------------
    t
    (1 row)