timescaledb_information.data_nodes
Get information on data nodes. This function is specific to running TimescaleDB in a multi-node setup.
Available Columns
Name | Description |
---|---|
node_name | Data node name. |
owner | Oid of the user, who added the data node. |
options | Options used when creating the data node. |
Sample Usage
Get metadata related to data nodes.
SELECT * FROM timescaledb_information.data_nodes;
node_name | owner | options
--------------+------------+--------------------------------
dn1 | postgres | {host=localhost,port=15431,dbname=test}
dn2 | postgres | {host=localhost,port=15432,dbname=test}
(2 rows)
当前内容版权归 TimescaleDB 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 TimescaleDB .