关于Postgres-XL中的协调器和datanode

时间:2015-07-31 07:12:00

标签: postgresql postgres-xl

感谢您的帮助。 我没能构建Postgres-XL集群。 我的gtm.confg:

listen_addresses = '0.0.0.0'
port = 6668

at 10.80.19.47。 我的gtm_proxy.confg:

listen_addresses = '0.0.0.0'
port = 6666
gtm_host = '10.80.19.47'
gtm_port = 6668

启动gtm和gtm_proxy后,我显示网络信息使用 lsof -i

gtm       11730 postgres    6u  IPv4 355914      0t0  TCP 10.80.19.47:ircu-4->10.80.19.46:44017 (ESTABLISHED
gtm       11730 postgres    7u  IPv4 355915      0t0  TCP 10.80.19.47:ircu-4->10.80.19.46:44018 (ESTABLISHED)
gtm       11730 postgres    8u  IPv4 355916      0t0  TCP 10.80.19.47:ircu-4->10.80.19.46:44019 (ESTABLISHED)

然后我配置datanode,如:

listen_addresses = '0.0.0.0'
port = 5432
pooler_port = 20002
gtm_host = '127.0.0.1'
gtm_port = 6666 

和协调员一样:

listen_addresses = '0.0.0.0'
port = 3456
pooler_port = 20003
gtm_host = '127.0.0.1'
gtm_port = 6666

其他是默认值,然后我用:

启动datanode
/usr/postgres-xl-9.2/bin/postgres --datanode -D /data1/pgsql/data &

启动协调员:

/usr/postgres-xl-9.2/bin/postgres --coordinator -D /data1/pgsql/coordinator &

当我连接到Postgres-XL时使用协调器:

 psql -h 127.0.0.1 -p 3456 postgres;

当我想用:

创建数据库时
 create database test;

但失败了,它显示:

No Datanode defined in cluster
You need to define at least 1 Datanode with CREATE NODE.

然后我用以下方法检查群集:

 psql -h 127.0.0.1 -p 3456  postgres  -c "select * from pgxc_node order by 1";

它只显示一个节点:

node_name     | node_type | node_port | node_host | nodeis_primary | nodeis_preferred |  node_id  
-------------------+-----------+-----------+-----------+----------------+------------------+-----------
coordinator_node2 | C         |      5432 | localhost | f              | f                | 738118815

我连接到 端口5432 ,它显示类似的信息,如:

 node_name  | node_type | node_port | node_host | nodeis_primary | nodeis_preferred |  node_id   
------------+-----------+-----------+-----------+----------------+------------------+------------
data_node2 | C         |      5432 | localhost | f              | f                | -923817565

我的配置有什么问题? 谢谢大家。

2 个答案:

答案 0 :(得分:0)

您需要定义类似这样的datanode。

./psql -c "CREATE NODE datanode1 WITH (TYPE = 'datanode', PORT = 7777)" postgres -p 3456 -h 127.0.0.1

答案 1 :(得分:0)

一年后我回答了这个问题。但是,我建议您使用Postgres XL开发人员自己建议的pgxc_ctl命令行工具。它将使您远离手动配置群集的繁忙任务。

您可以参考Postgres XL的官方文档。成功安装pgxc_ctl命令行工具后,键入

prepare config minimal

以生成配置群集的基本配置文件。相应地在pgxc_ctl / pgxc_ctl.conf中编辑您的更改。输入exit,最后如果您的配置正常,您可以初始化所有群集。为此,输入

pgxc_ctl init all