Skip to content

Commit

Permalink
Merge pull request #6279 from EnterpriseDB/dev/ib/DOCS-1129-bdr-autop…
Browse files Browse the repository at this point in the history
…artition-update

PGD: update bdr.autopartition() function description for changes in 5.6
  • Loading branch information
djw-m authored Nov 25, 2024
2 parents 90eb359 + e94b2c6 commit 0e9ebc1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions product_docs/docs/pgd/5.6/reference/autopartition.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ bdr.autopartition(relation regclass,
minimum_advance_partitions integer DEFAULT 2,
maximum_advance_partitions integer DEFAULT 5,
data_retention_period interval DEFAULT NULL,
managed_locally boolean DEFAULT false,
enabled boolean DEFAULT on);
managed_locally boolean DEFAULT true,
enabled boolean DEFAULT on,
analytics_offload_period);
```

#### Parameters
Expand All @@ -40,8 +41,9 @@ bdr.autopartition(relation regclass,
go after the number of advance partitions falls below `minimum_advance_partitions`.
- `data_retention_period` — Interval until older partitions are dropped, if
defined. This value must be greater than `migrate_after_period`.
- `managed_locally` — If true, then the partitions are managed locally.
- `managed_locally` — Whether partitions are managed locally. Setting this to `false` is not recommended.
- `enabled` — Allows activity to be disabled or paused and later resumed or reenabled.
- `analytics_offload_period` — Provides support for partition offloading. Reserved for future use.

#### Examples

Expand Down

0 comments on commit 0e9ebc1

Please sign in to comment.