Skip to content

Commit

Permalink
Foreign keys documentation (#1604)
Browse files Browse the repository at this point in the history
* docs: add foreign key RFC link in design docs

Signed-off-by: Manan Gupta <manan@planetscale.com>

* feat: add foreign key docs

Signed-off-by: Manan Gupta <manan@planetscale.com>

* feat: mark FK_MANAGED mode as experimental

Signed-off-by: Manan Gupta <manan@planetscale.com>

* feat: address review comments

Signed-off-by: Manan Gupta <manan@planetscale.com>

---------

Signed-off-by: Manan Gupta <manan@planetscale.com>
  • Loading branch information
GuptaManan100 authored Sep 29, 2023
1 parent 87cb8d0 commit ba78b52
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 0 deletions.
11 changes: 11 additions & 0 deletions content/en/docs/18.0/user-guides/vschema-guide/advanced-vschema.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,3 +192,14 @@ Workflows like `MoveTables` make use of routing rules to create the existence of

For more information, please refer to the [Routing Rules](../../../reference/features/schema-routing-rules) section.

## Foreign Key Mode

Vitess supports multiple foreign key modes. A detailed analysis of these different modes can be found on the [foreign keys](../foreign-keys) page.

Each keyspace can be configured to run with a different foreign key mode -
```json
{
"sharded": true,
"foreignKeyMode": "FK_MANAGED"
}
```
43 changes: 43 additions & 0 deletions content/en/docs/18.0/user-guides/vschema-guide/foreign-keys.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
title: Foreign Keys in Vitess
weight: 8
---

For running foreign keys in Vitess, the users have a few options. Let's explore each of them in detail.

### Vitess Unaware of Foreign Keys

Users can run Vitess such that it doesn't know about or care for the foreign key constraints existing on MySQL. To run Vitess in this mode, `foreignKeyMode` VSchema property has to be set to `FK_UNMANAGED` for the given keyspace. This is the default mode for Vitess as well.

It is up to the users to configure the foreign keys in MySQL such that rows that are related by foreign keys end up living in the same shard.
To this end, users can configure tables related by foreign keys to use the same shared vindex. More detail about this can be read in [shared vindexes](../shared-vindexes/#foreign-keys).

#### Limitations

- In a sharded keyspace, the current restrictions require the schema to be structured such that rows for tables linked by foreign keys need to live on the same shard. This constrains schema design and sharding key options.
- If `ON DELETE CASCADE`, `ON UPDATE CASCADE`, `ON DELETE SET NULL`, etc reference actions are used for foreign keys that cause a change on a child table when the parent is updated, MySQL doesn't report the updates on the child table in the binary log. They happen at the InnoDB level. This causes VReplication to not see the updates on the child, causing issues in [MoveTables](../../migration/move-tables/) and other VReplication based workflows.
- [OnlineDDL](../../schema-changes/managed-online-schema-changes/) doesn't work well with tables that have foreign key constraints on them.

### Vitess Aware Foreign Keys [EXPERIMENTAL]

{{< info >}}
Please note, that in this version of Vitess, this mode is experimental and should be used cautiously.
{{< /info >}}

Users can run Vitess such that it keeps track of all the foreign key constraints using the schema tracker. To run Vitess in this mode, `foreignKeyMode` VSchema property has to be set to `FK_MANAGED` for the given keyspace.

In this mode, Vitess takes care of splitting up DMLs that would cause updates on a child table in a foreign key constraint. All the queries on MySQL are executed such that InnoDB doesn't end up running any updates which don't make their way into the binary log. This allows VReplication to work properly, thus relaxing one of the limitations of the previous approach.

For more details on what operations Vitess takes please refer to the [design document for foreign keys](https://github.com/vitessio/vitess/issues/12967).

#### Limitations

- Currently, Vitess only supports shard-scoped foreign key constraints even in the managed mode. Support for cross-shard foreign keys is underway.
- `UPDATE` statements only support updating to a literal value. For example, `UPDATE t1 SET col1 = 3 WHERE id = col + 1` is accepted, but `UPDATE t1 SET col1 = col + 3` is not.
- [OnlineDDL](../../schema-changes/managed-online-schema-changes/) doesn't work well with tables that have foreign key constraints on them.

### Vitess Disallows Foreign Keys

Users can run Vitess such that it explicitly disallows any DDL statements that try to create a foreign key constraint. To run Vitess in this mode, `foreignKeyMode` VSchema property has to be set to `FK_DISALLOW` for the given keyspace.

This mode is for users that don't use foreign keys and want to prevent accidentally introducing them in their schema.
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ In cases where you choose to group rows based on their foreign key relationships

Foreign key constraints across shards or keyspaces are not supported in Vitess. For example, you cannot specify a foreign key between `corder.product_id` and `product.product_id`.

A more detailed analysis of foreign keys in Vitess can be found on the [foreign keys](../foreign-keys) page.

### Many-to-Many relationships

In the case where a table has relationships with multiple other tables, you can only choose one of those relationships for shard grouping. All other relationships will end up being cross-shard, and will incur cross-shard penalties.
Expand Down
1 change: 1 addition & 0 deletions content/en/docs/design-docs/query-serving.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ Some of these documents might not be representative of the current state of Vite
- [RFC: Replica transactions](https://github.com/vitessio/vitess/issues/6166)
- [Consistent Lookup Vindexes](https://github.com/vitessio/vitess/issues/4855)
- [Owned Primary Vindex](https://github.com/vitessio/vitess/blob/main/doc/design-docs/OwnedPrimaryVindexes.md)
- [Foreign Key Management in Vitess](https://github.com/vitessio/vitess/issues/12967)

0 comments on commit ba78b52

Please sign in to comment.