Skip to content

Commit

Permalink
[doc] Fix the documentation about partition keys (#2238)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangyuf authored Nov 2, 2023
1 parent 56bb714 commit 1fb5cbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/concepts/basic-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ By partitioning, users can efficiently operate on a slice of records in the tabl

{{< hint info >}}

Partition keys must be a subset of primary keys if primary keys are defined.
Partition keys must be a subset of primary keys if primary keys are defined. If you need cross partition upsert (primary keys not contain all partition fields), you should use [Dynamic Bucket]({{< ref "concepts/primary-key-table#dynamic-bucket">}}) mode.

{{< /hint >}}

Expand Down
2 changes: 1 addition & 1 deletion docs/content/how-to/creating-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ By configuring [partition.expiration-time]({{< ref "maintenance/manage-partition
#### Pick Partition Fields

{{< hint info >}}
Partition fields must be a subset of primary keys if primary keys are defined.
Partition keys must be a subset of primary keys if primary keys are defined. If you need cross partition upsert (primary keys not contain all partition fields), you should use [Dynamic Bucket]({{< ref "concepts/primary-key-table#dynamic-bucket">}}) mode.
{{< /hint >}}

The following three types of fields may be defined as partition fields in the warehouse:
Expand Down

0 comments on commit 1fb5cbb

Please sign in to comment.