Skip to content

Commit

Permalink
Merge pull request #5714 from EnterpriseDB/DOCS-524-feature-request-u…
Browse files Browse the repository at this point in the history
…se-attach-detach-conc

DOCS-524 - Feature request - use attach/detach concurrently
  • Loading branch information
djw-m authored May 31, 2024
2 parents 919f419 + fdde3d4 commit edb8a67
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions product_docs/docs/pgd/4/bdr/scaling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Otherwise, later executions will alter the definition.
`bdr.autopartition()` doesn't lock the actual table. It changes the
definition of when and how new partition maintenance actions take place.

PGD AutoPartition leverages underlying Postgres features that allow a partition
to be attached or detached/dropped without locking the rest of the table
(Autopartion currently only supports this when used with 2nd Quadrant Postgres
11).
PGD Autopartition in PGD 4.3.5 and later leverages underlying Postgres features
that allow a partition to be attached or detached/dropped without locking the
rest of the table. Versions of PGD prior to 4.3.5 don't support this feature and
will lock the tables.

An ERROR is raised if the table isn't RANGE partitioned or a multi-column
partition key is used.
Expand Down
5 changes: 3 additions & 2 deletions product_docs/docs/pgd/5/scaling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ function to create or alter the definition of automatic range partitioning for a
no definition exists, it's created. Otherwise, later executions will alter the
definition.

PGD Autopartition in PGD 5 currently locks the actual table while performing
new partition maintenance operations.
PGD Autopartition in PGD 5.5 and later leverages underlying Postgres features that allow a
partition to be attached or detached/dropped without locking the rest of the
table. Versions of PGD prior to 5.5 don't support this feature and will lock the tables.

An ERROR is raised if the table isn't RANGE partitioned or a multi-column
partition key is used.
Expand Down

1 comment on commit edb8a67

@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.