mirror of https://github.com/dapr/docs.git
RethinkDB has no transactions, etags
Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
This commit is contained in:
parent
b1e8952c0d
commit
860dc089ea
|
@ -39,16 +39,7 @@ spec:
|
||||||
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 >}}).
|
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 %}}
|
{{% /alert %}}
|
||||||
|
|
||||||
If you wish to use RethinkDB as an actor store, append the following to the YAML.
|
If the optional `archive` metadata is set to `true`, on each state change, the RethinkDB state store will also log state changes with timestamp in the `daprstate_archive` table. This allows for time series analyses of the state managed by Dapr.
|
||||||
|
|
||||||
```yaml
|
|
||||||
- name: actorStateStore
|
|
||||||
value: "true"
|
|
||||||
```
|
|
||||||
|
|
||||||
RethinkDB state store supports transactions, so it can be used to persist Dapr Actor state. By default, the state will be stored in table named `daprstate` in the specified database.
|
|
||||||
|
|
||||||
Additionally, if the optional `archive` metadata is set to `true`, on each state change, the RethinkDB state store will also log state changes with timestamp in the `daprstate_archive` table. This allows for time series analyses of the state managed by Dapr.
|
|
||||||
|
|
||||||
## Spec metadata fields
|
## Spec metadata fields
|
||||||
|
|
||||||
|
|
|
@ -148,8 +148,8 @@
|
||||||
since: "1.0"
|
since: "1.0"
|
||||||
features:
|
features:
|
||||||
crud: true
|
crud: true
|
||||||
transactions: true
|
transactions: false
|
||||||
etag: true
|
etag: false
|
||||||
ttl: false
|
ttl: false
|
||||||
query: false
|
query: false
|
||||||
- component: Zookeeper
|
- component: Zookeeper
|
||||||
|
|
Loading…
Reference in New Issue