diff --git a/product_docs/docs/pgd/5.6/reference/autopartition.mdx b/product_docs/docs/pgd/5.6/reference/autopartition.mdx index 7705414f356..40d34ca1efc 100644 --- a/product_docs/docs/pgd/5.6/reference/autopartition.mdx +++ b/product_docs/docs/pgd/5.6/reference/autopartition.mdx @@ -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 @@ -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