Skip to content

Commit

Permalink
Merge pull request #6162 from EnterpriseDB/DOCS-1030
Browse files Browse the repository at this point in the history
Docs 1030 - Add bdr.node_config_summary to 5 and 5.6 PGD reference docs
  • Loading branch information
djw-m authored Oct 21, 2024
2 parents cdabd86 + 00cfb5f commit 312c844
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
17 changes: 17 additions & 0 deletions product_docs/docs/pgd/5.6/reference/catalogs-internal.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,23 @@ An internal catalog table with per-node configuration options.
| node_route_reads | boolean | Switch to allow reads |
| node_route_dsn | text | Interface of this node |

### `bdr.node_config_summary`

A view of the `bdr.node_config` catalog that displays the information in a more human-readable format.

#### `bdr.node_config_summary` columns

| Name | Type | Description |
| ----------------------- | -------- | ---------------------------------------- |
| node_name | text | The name of this node |
| node_id | oid | Node ID |
| node_route_priority | int | Priority assigned to this node |
| node_route_fence | boolean | Switch to fence this node |
| node_route_writes | boolean | Switch to allow writes |
| node_route_reads | boolean | Switch to allow reads |
| node_route_dsn | text | Interface of this node |
| effective_route_dsn | text | Full DSN of this node |

### `bdr.node_group_config`

An internal catalog table with per-node group configuration options.
Expand Down
16 changes: 16 additions & 0 deletions product_docs/docs/pgd/5/reference/catalogs-internal.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,22 @@ An internal catalog table with per-node configuration options.
| node_route_reads | boolean | Switch to allow reads |
| node_route_dsn | text | Interface of this node |

### `bdr.node_config_summary`

A view of the `bdr.node_config` catalog that displays the information in a more human-readable format.

#### `bdr.node_config_summary` columns

| Name | Type | Description |
| ----------------------- | -------- | ---------------------------------------- |
| node_id | oid | Node ID |
| node_route_priority | int | Priority assigned to this node |
| node_route_fence | boolean | Switch to fence this node |
| node_route_writes | boolean | Switch to allow writes |
| node_route_reads | boolean | Switch to allow reads |
| node_route_dsn | text | Interface of this node |
| effective_route_dsn | text | Full DSN of this node |

### `bdr.node_group_config`

An internal catalog table with per-node group configuration options.
Expand Down

1 comment on commit 312c844

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.