-
Notifications
You must be signed in to change notification settings - Fork 726
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1.13] Docs for PostgreSQL v2 state store
Fixes #3911 Signed-off-by: ItalyPaleAle <[email protected]>
- Loading branch information
1 parent
72e139d
commit 6145729
Showing
3 changed files
with
204 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
165 changes: 165 additions & 0 deletions
165
...en/reference/components-reference/supported-state-stores/setup-postgresql-v2.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
--- | ||
type: docs | ||
title: "PostgreSQL" | ||
linkTitle: "PostgreSQL" | ||
description: Detailed information on the PostgreSQL state store component | ||
aliases: | ||
- "/operations/components/setup-state-store/supported-state-stores/setup-postgresql-v2/" | ||
- "/operations/components/setup-state-store/supported-state-stores/setup-postgres-v2/" | ||
--- | ||
|
||
{{% alert title="Note" color="primary" %}} | ||
This is the v2 of the PostgreSQL state store component, which contains some improvements to performance and reliability. | ||
|
||
The PostgreSQL v2 state store component is not compatible with the [v1 component]({{< ref setup-postgresql-v1.md >}}), and data cannot be migrated between the two components. The v2 component does not offer support for state store query APIs. | ||
|
||
There are no plans to deprecate the v1 component. | ||
{{% /alert %}} | ||
|
||
This component allows using PostgreSQL (Postgres) as state store for Dapr, using the "v2" component. See [this guide]({{< ref "howto-get-save-state.md#step-1-setup-a-state-store" >}}) on how to create and apply a state store configuration. | ||
|
||
```yaml | ||
apiVersion: dapr.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: <NAME> | ||
spec: | ||
type: state.postgresql | ||
# Note: setting "version" to "v2" is required to use the v2 of the component | ||
version: v2 | ||
metadata: | ||
# Connection string | ||
- name: connectionString | ||
value: "<CONNECTION STRING>" | ||
# Timeout for database operations, as a Go duration or number of seconds (optional) | ||
#- name: timeout | ||
# value: 20 | ||
# Prefix for the table where the data is stored (optional) | ||
#- name: tablePrefix | ||
# value: "" | ||
# Name of the table where to store metadata used by Dapr (optional) | ||
#- name: metadataTableName | ||
# value: "dapr_metadata" | ||
# Cleanup interval in seconds, to remove expired rows (optional) | ||
#- name: cleanupInterval | ||
# value: "1h" | ||
# Maximum number of connections pooled by this component (optional) | ||
#- name: maxConns | ||
# value: 0 | ||
# Max idle time for connections before they're closed (optional) | ||
#- name: connectionMaxIdleTime | ||
# value: 0 | ||
# Controls the default mode for executing queries. (optional) | ||
#- name: queryExecMode | ||
# value: "" | ||
# Uncomment this if you wish to use PostgreSQL as a state store for actors (optional) | ||
#- name: actorStateStore | ||
# value: "true" | ||
``` | ||
|
||
{{% alert title="Warning" color="warning" %}} | ||
The above example uses secrets as plain strings. It is recommended to use a secret store for the secrets as described [here]({{< ref component-secrets.md >}}). | ||
{{% /alert %}} | ||
|
||
## Spec metadata fields | ||
|
||
### Authenticate using a connection string | ||
|
||
The following metadata options are **required** to authenticate using a PostgreSQL connection string. | ||
|
||
| Field | Required | Details | Example | | ||
|--------|:--------:|---------|---------| | ||
| `connectionString` | Y | The connection string for the PostgreSQL database. See the PostgreSQL [documentation on database connections](https://www.postgresql.org/docs/current/libpq-connect.html) for information on how to define a connection string. | `"host=localhost user=postgres password=example port=5432 connect_timeout=10 database=my_db"` | | ||
|
||
### Authenticate using Microsoft Entra ID | ||
|
||
Authenticating with Microsoft Entra ID is supported with Azure Database for PostgreSQL. All authentication methods supported by Dapr can be used, including client credentials ("service principal") and Managed Identity. | ||
|
||
| Field | Required | Details | Example | | ||
|--------|:--------:|---------|---------| | ||
| `useAzureAD` | Y | Must be set to `true` to enable the component to retrieve access tokens from Microsoft Entra ID. | `"true"` | | ||
| `connectionString` | Y | The connection string for the PostgreSQL database.<br>This must contain the user, which corresponds to the name of the user created inside PostgreSQL that maps to the Microsoft Entra ID identity; this is often the name of the corresponding principal (e.g. the name of the Microsoft Entra ID application). This connection string should not contain any password. | `"host=mydb.postgres.database.azure.com user=myapplication port=5432 database=my_db sslmode=require"` | | ||
| `azureTenantId` | N | ID of the Microsoft Entra ID tenant | `"cd4b2887-304c-…"` | | ||
| `azureClientId` | N | Client ID (application ID) | `"c7dd251f-811f-…"` | | ||
| `azureClientSecret` | N | Client secret (application password) | `"Ecy3X…"` | | ||
|
||
### Other metadata options | ||
|
||
| Field | Required | Details | Example | | ||
|--------------------|:--------:|---------|---------| | ||
| `tablePrefix` | N | Prefix for the table where the data is stored. Can optionally have the schema name as prefix, such as `public.prefix_` | `"prefix_"`, `"public.prefix_"` | | ||
| `metadataTableName` | N | Name of the table Dapr uses to store a few metadata properties. Defaults to `dapr_metadata`. Can optionally have the schema name as prefix, such as `public.dapr_metadata` | `"dapr_metadata"`, `"public.dapr_metadata"` | | ||
| `timeout` | N | Timeout for operations on the database, as a [Go duration](https://pkg.go.dev/time#ParseDuration). Integers are interpreted as number of seconds. Defaults to `20s` | `"30s"`, `30` | | ||
| `cleanupInterval` | N | Interval, as a Go duration or number of seconds, to clean up rows with an expired TTL. Default: `1h` (1 hour). Setting this to values <=0 disables the periodic cleanup. | `"30m"`, `1800`, `-1` | | ||
| `maxConns` | N | Maximum number of connections pooled by this component. Set to 0 or lower to use the default value, which is the greater of 4 or the number of CPUs. | `"4"` | | ||
| `connectionMaxIdleTime` | N | Max idle time before unused connections are automatically closed in the connection pool. By default, there's no value and this is left to the database driver to choose. | `"5m"` | | ||
| `queryExecMode` | N | Controls the default mode for executing queries. By default Dapr uses the extended protocol and automatically prepares and caches prepared statements. However, this may be incompatible with proxies such as PGBouncer. In this case it may be preferrable to use `exec` or `simple_protocol`. | `"simple_protocol"` | | ||
| `actorStateStore` | N | Consider this state store for actors. Defaults to `"false"` | `"true"`, `"false"` | | ||
|
||
## Setup PostgreSQL | ||
|
||
{{< tabs "Self-Hosted" >}} | ||
|
||
{{% codetab %}} | ||
|
||
1. Run an instance of PostgreSQL. You can run a local instance of PostgreSQL in Docker with the following command: | ||
|
||
```bash | ||
docker run -p 5432:5432 -e POSTGRES_PASSWORD=example postgres | ||
``` | ||
|
||
> This example does not describe a production configuration because it sets the password in plain text and the user name is left as the PostgreSQL default of "postgres". | ||
|
||
2. Create a database for state data. | ||
Either the default "postgres" database can be used, or create a new database for storing state data. | ||
|
||
To create a new database in PostgreSQL, run the following SQL command: | ||
|
||
```sql | ||
CREATE DATABASE my_dapr; | ||
``` | ||
|
||
{{% /codetab %}} | ||
|
||
{{% /tabs %}} | ||
|
||
## Advanced | ||
|
||
### Differences between v1 and v2 | ||
|
||
The PostgreSQL state store v2 was introduced in Dapr 1.13. The pre-existing v1 remains available and is not deprecated. | ||
|
||
In the v2 component, the table schema has been changed significantly, with the goal of increasing performance and reliability. Most notably, the value stored by Dapr is now of type _BYTEA_, which allows faster queries and in some cases it's more space-efficient than the previously-used _JSONB_ column. | ||
On the downside, because of the change above, the v2 component does not support the Dapr state store query APIs. | ||
Additionally, etags are now random UUIDs, which ensures better compatibility with other PostgreSQL-compatible databases such as CockroachDB. | ||
Because of the changes, it is not possible for v1 and v2 components to read or write data from the same table. At this stage, it is also not possible to migrate data between the two versions of the component. | ||
### Displaying the data in human-readable format | ||
The PostgreSQL v2 component stores the state's value in the `value` column, which is of type _BYTEA_. Most PostgreSQL tools, including pgAdmin, consider the value as binary and do not display it in human-readable form by default. | ||
|
||
If you want to inspect the value in the state store, and you know it's not binary (for example, JSON data), you can use a query similar to this to have the value displayed in human-readable form: | ||
```sql | ||
-- Replace "state" with the name of the state table in your environment | ||
SELECT *, convert_from(value, 'utf-8') FROM state; | ||
``` | ||
### TTLs and cleanups | ||
This state store supports [Time-To-Live (TTL)]({{< ref state-store-ttl.md >}}) for records stored with Dapr. When storing data using Dapr, you can set the `ttlInSeconds` metadata property to indicate after how many seconds the data should be considered "expired". | ||
Because PostgreSQL doesn't have built-in support for TTLs, this is implemented in Dapr by adding a column in the state table indicating when the data is to be considered "expired". Records that are "expired" are not returned to the caller, even if they're still physically stored in the database. A background "garbage collector" periodically scans the state table for expired rows and deletes them. | ||
The interval at which the deletion of expired records happens is set with the `cleanupInterval` metadata property, which defaults to 3600 seconds (that is, 1 hour). | ||
- Longer intervals require less frequent scans for expired rows, but can require storing expired records for longer, potentially requiring more storage space. If you plan to store many records in your state table, with short TTLs, consider setting `cleanupInterval` to a smaller value, for example `5m` (5 minutes). | ||
- If you do not plan to use TTLs with Dapr and the PostgreSQL state store, you should consider setting `cleanupInterval` to a value <= 0 (e.g. `0` or `-1`) to disable the periodic cleanup and reduce the load on the database. | ||
## Related links | ||
- [Basic schema for a Dapr component]({{< ref component-schema >}}) | ||
- Read [this guide]({{< ref "howto-get-save-state.md#step-2-save-and-retrieve-a-single-state" >}}) for instructions on configuring state store components | ||
- [State management building block]({{< ref state-management >}}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters