timescaledb_information.data_nodes
Get information on data nodes in a multi-node cluster
Sunsetted v2.14.0 Since 2.0.0
Get information on data nodes. This function is specific to running
in a multi-node setup.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get information on data nodes in a multi-node cluster
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)
| Name | Type | Description |
|---|---|---|
node_name | TEXT | Data node name. |
owner | REGCLASS | Oid of the user, who added the data node. |
options | JSONB | Options used when creating the data node. |