mirror of https://github.com/dapr/docs.git
add component certification doc (#1203)
* add component certification doc * Update certification-lifecycle.md * Update _index.md * Update _index.md * address review comments. fix conflicts. * address review comments Co-authored-by: Mark Fussell <mfussell@microsoft.com>
This commit is contained in:
parent
e02b159d3d
commit
93c39253e6
|
|
@ -0,0 +1,89 @@
|
||||||
|
---
|
||||||
|
type: docs
|
||||||
|
title: "Certification lifecycle"
|
||||||
|
linkTitle: "Certification lifecycle"
|
||||||
|
weight: 200
|
||||||
|
description: "The component certification lifecycle from submission to production ready"
|
||||||
|
---
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
Dapr uses a modular design where functionality is delivered as a component. Each component has an interface definition. All of the components are pluggable so that in ideal scenarios, you can swap out one component with the same interface for another. Each component that is used in production, needs to maintain a certain set of technical requirements that ensure the functional compatibility and robustness of the component.
|
||||||
|
|
||||||
|
In general a component needs to be:
|
||||||
|
- compliant with the defined Dapr interfaces
|
||||||
|
- functionally correct and robust
|
||||||
|
- well documented and maintained
|
||||||
|
|
||||||
|
To make sure a component conforms to the standards set by Dapr, there are a set of tests run against a component in a Dapr maintainers managed environment. Once the tests pass consistently, the maturity level can be determined for a component.
|
||||||
|
|
||||||
|
## Certification levels
|
||||||
|
|
||||||
|
The levels are as follows:
|
||||||
|
- [Alpha](#alpha)
|
||||||
|
- [Beta](#beta)
|
||||||
|
- [General availability (GA)](#general-availability-ga)
|
||||||
|
|
||||||
|
### Alpha
|
||||||
|
|
||||||
|
- The component implements the required interface and works as described in the specification
|
||||||
|
- The component has documentation
|
||||||
|
- The component might be buggy or might expose bugs on integration
|
||||||
|
- The component may not pass all conformance tests
|
||||||
|
- The component may not have conformance tests
|
||||||
|
- Recommended for only non-business-critical uses because of potential for incompatible changes in subsequent releases
|
||||||
|
|
||||||
|
All components start at the Alpha stage.
|
||||||
|
|
||||||
|
### Beta
|
||||||
|
|
||||||
|
- The component must pass all the component conformance tests defined to satisfy the component specification
|
||||||
|
- The component conformance tests have been run in a Dapr maintainers managed environment
|
||||||
|
- The component contains a record of the conformance test result reviewed and approved by Dapr maintainers with specific components-contrib version
|
||||||
|
- Recommended for only non-business-critical uses because of potential for incompatible changes in subsequent releases
|
||||||
|
|
||||||
|
### General Availability (GA)
|
||||||
|
|
||||||
|
- Has at least two different users using the component in production
|
||||||
|
- A GA component has a maintainer in the Dapr community or the Dapr maintainers
|
||||||
|
- The component is well documented, tested and maintained across multiple versions of components-contrib repo
|
||||||
|
|
||||||
|
## Conformance tests
|
||||||
|
|
||||||
|
Each component in the [components-contrib](https://github.com/dapr/components-contrib) repository needs to adhere to a set of interfaces defined by Dapr. Conformance tests are tests that are run on these component definitions with their associated backing services such that the component is tested to be conformant with the Dapr interface specifications and behavior.
|
||||||
|
|
||||||
|
The conformance tests are defined for the following building blocks:
|
||||||
|
|
||||||
|
- State store
|
||||||
|
- Secret store
|
||||||
|
- Bindings
|
||||||
|
- Pub/Sub
|
||||||
|
|
||||||
|
To understand more about them see the readme [here](https://github.com/dapr/components-contrib/blob/master/tests/conformance/README.md).
|
||||||
|
|
||||||
|
### Test requirements
|
||||||
|
|
||||||
|
- The tests should validate the functional behavior and robustness of component based on the component specification
|
||||||
|
- All the details needed to reproduce the tests are added as part of the component conformance test documentation
|
||||||
|
|
||||||
|
## Component certification process
|
||||||
|
|
||||||
|
For a component to be certified tests are run in an environment maintained by the Dapr team.
|
||||||
|
|
||||||
|
### New component certification: Alpha->Beta or Beta->GA
|
||||||
|
|
||||||
|
For a new component requiring a certification change from Alpha to Beta or Beta to GA, a request for component certification follows these steps:
|
||||||
|
- An issue is created with a request for certification of the component with the current and the new certification levels
|
||||||
|
- A user of a component submits a PR for integrating the component to run with the defined conformance test suite
|
||||||
|
- The user details the environment setup in the issue created, so that a Dapr maintainer can setup the service in a managed environment
|
||||||
|
- After the environment setup is complete, Dapr maintainers review the PR and if approved merges that PR
|
||||||
|
- Dapr maintainers review functional correctness with the test being run in an environment maintained by the Dapr team
|
||||||
|
- Dapr maintainers update the component status document categorized by Dapr Runtime version. This is done as part of the release process in the next release of Dapr runtime
|
||||||
|
|
||||||
|
### Existing GA certified component
|
||||||
|
|
||||||
|
For an existing GA certified component, conformance test should be run against any changes made to component code or the backing service version or the client version.
|
||||||
|
|
||||||
|
In the scenarios where a component version is updated, the component again starts from Alpha stage and then the new component certification is followed for that.
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
type: docs
|
type: docs
|
||||||
title: "How-To: Scope components to one or more applications"
|
title: "How-To: Scope components to one or more applications"
|
||||||
linkTitle: "How-To: Set component scopes"
|
linkTitle: "How-To: Set component scopes"
|
||||||
weight: 200
|
weight: 300
|
||||||
description: "Limit component access to particular Dapr instances"
|
description: "Limit component access to particular Dapr instances"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
type: docs
|
type: docs
|
||||||
title: "How-To: Reference secrets in components"
|
title: "How-To: Reference secrets in components"
|
||||||
linkTitle: "How-To: Reference secrets"
|
linkTitle: "How-To: Reference secrets"
|
||||||
weight: 300
|
weight: 400
|
||||||
description: "How to securly reference secrets from a component definition"
|
description: "How to securly reference secrets from a component definition"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,30 +3,43 @@ type: docs
|
||||||
title: "Supported external bindings"
|
title: "Supported external bindings"
|
||||||
linkTitle: "Supported bindings"
|
linkTitle: "Supported bindings"
|
||||||
weight: 200
|
weight: 200
|
||||||
description: The supported external systems that interface with Dapr as input/output bindings
|
description: The supported external bindings that interface with Dapr
|
||||||
no_list: true
|
no_list: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Every binding has its own unique set of properties. Click the name link to see the component YAML for each binding.
|
||||||
|
|
||||||
|
|
||||||
|
Table captions:
|
||||||
|
|
||||||
|
> `Status`: [Component certification]({{<ref "certification-lifecycle.md">}}) status
|
||||||
|
- [Alpha]({{<ref "certification-lifecycle.md#alpha">}})
|
||||||
|
- [Beta]({{<ref "certification-lifecycle.md#beta">}})
|
||||||
|
- [GA]({{<ref "certification-lifecycle.md#general-availability-ga">}})
|
||||||
|
> `Since`: defines from which Dapr Runtime version, the component is in the current status
|
||||||
|
|
||||||
|
> `Component version`: defines the version of the component
|
||||||
### Generic
|
### Generic
|
||||||
|
|
||||||
| Name | Input<br>Binding | Output<br>Binding | Status |
|
| Name | Input<br>Binding | Output<br>Binding | Status | Component version | Since runtime version |
|
||||||
|------|:----------------:|:-----------------:|--------|
|
|------|:----------------:|:-----------------:|--------|-------- | ---------|
|
||||||
| [Apple Push Notifications (APN)]({{< ref apns.md >}}) | | ✅ | Alpha |
|
| [Apple Push Notifications (APN)]({{< ref apns.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Cron (Scheduler)]({{< ref cron.md >}}) | ✅ | ✅ | Alpha |
|
| [Cron (Scheduler)]({{< ref cron.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [HTTP]({{< ref http.md >}}) | | ✅ | Alpha |
|
| [HTTP]({{< ref http.md >}}) | | ✅ | GA | v1 | 1.0 |
|
||||||
| [InfluxDB]({{< ref influxdb.md >}}) | | ✅ | Alpha |
|
| [InfluxDB]({{< ref influxdb.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Kafka]({{< ref kafka.md >}}) | ✅ | ✅ | Alpha |
|
| [Kafka]({{< ref kafka.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Kubernetes Events]({{< ref "kubernetes-binding.md" >}}) | ✅ | | Alpha |
|
| [Kubernetes Events]({{< ref "kubernetes-binding.md" >}}) | ✅ | | Alpha | v1 | 1.0 |
|
||||||
| [MQTT]({{< ref mqtt.md >}}) | ✅ | ✅ | Alpha |
|
| [MQTT]({{< ref mqtt.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [MySQL]({{< ref mysql.md >}}) | | ✅ | Alpha |
|
| [MySQL]({{< ref mysql.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [PostgreSql]({{< ref postgres.md >}}) | | ✅ | Alpha |
|
| [PostgreSql]({{< ref postgres.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Postmark]({{< ref postmark.md >}}) | | ✅ | Alpha |
|
| [Postmark]({{< ref postmark.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [RabbitMQ]({{< ref rabbitmq.md >}}) | ✅ | ✅ | Alpha |
|
| [RabbitMQ]({{< ref rabbitmq.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Redis]({{< ref redis.md >}}) | | ✅ | Alpha |
|
| [Redis]({{< ref redis.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [SMTP]({{< ref smtp.md >}}) | | ✅ | Alpha |
|
| [SMTP]({{< ref smtp.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Twilio]({{< ref twilio.md >}}) | | ✅ | Alpha |
|
| [Twilio]({{< ref twilio.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Twitter]({{< ref twitter.md >}}) | ✅ | ✅ | Alpha |
|
| [Twitter]({{< ref twitter.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [SendGrid]({{< ref sendgrid.md >}}) | | ✅ | Alpha |
|
| [SendGrid]({{< ref sendgrid.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
|
|
||||||
|
|
||||||
### Alibaba Cloud
|
### Alibaba Cloud
|
||||||
|
|
||||||
|
|
@ -36,29 +49,29 @@ no_list: true
|
||||||
|
|
||||||
### Amazon Web Services (AWS)
|
### Amazon Web Services (AWS)
|
||||||
|
|
||||||
| Name | Input<br>Binding | Output<br>Binding | Status |
|
| Name | Input<br>Binding | Output<br>Binding | Status | Component version | Since |
|
||||||
|------|:----------------:|:-----------------:|--------|
|
|------|:----------------:|:-----------------:|--------| ------ |----------|
|
||||||
| [AWS DynamoDB]({{< ref dynamodb.md >}}) | | ✅ | Alpha |
|
| [AWS DynamoDB]({{< ref dynamodb.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [AWS S3]({{< ref s3.md >}}) | | ✅ | Alpha |
|
| [AWS S3]({{< ref s3.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [AWS SNS]({{< ref sns.md >}}) | | ✅ | Alpha |
|
| [AWS SNS]({{< ref sns.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [AWS SQS]({{< ref sqs.md >}}) | ✅ | ✅ | Alpha |
|
| [AWS SQS]({{< ref sqs.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [AWS Kinesis]({{< ref kinesis.md >}}) | ✅ | ✅ | Alpha |
|
| [AWS Kinesis]({{< ref kinesis.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
|
|
||||||
### Google Cloud Platform (GCP)
|
### Google Cloud Platform (GCP)
|
||||||
|
|
||||||
| Name | Input<br>Binding | Output<br>Binding | Status |
|
| Name | Input<br>Binding | Output<br>Binding | Status | Component version | Since |
|
||||||
|------|:----------------:|:-----------------:|--------|
|
|------|:----------------:|:-----------------:|--------| ------ | ---------- |
|
||||||
| [GCP Cloud Pub/Sub]({{< ref gcppubsub.md >}}) | ✅ | ✅ | Alpha |
|
| [GCP Cloud Pub/Sub]({{< ref gcppubsub.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [GCP Storage Bucket]({{< ref gcpbucket.md >}}) | | ✅ | Alpha |
|
| [GCP Storage Bucket]({{< ref gcpbucket.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
|
|
||||||
### Microsoft Azure
|
### Microsoft Azure
|
||||||
|
|
||||||
| Name | Input<br>Binding | Output<br>Binding | Status |
|
| Name | Input<br>Binding | Output<br>Binding | Status | Component version | Since |
|
||||||
|------|:----------------:|:-----------------:|--------|
|
|------|:----------------:|:-----------------:|--------| --------- | ---------- |
|
||||||
| [Azure Blob Storage]({{< ref blobstorage.md >}}) | | ✅ | Alpha |
|
| [Azure Blob Storage]({{< ref blobstorage.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Azure CosmosDB]({{< ref cosmosdb.md >}}) | | ✅ | Alpha |
|
| [Azure CosmosDB]({{< ref cosmosdb.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Azure Event Grid]({{< ref eventgrid.md >}}) | ✅ | ✅ | Alpha |
|
| [Azure Event Grid]({{< ref eventgrid.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Azure Event Hubs]({{< ref eventhubs.md >}}) | ✅ | ✅ | Alpha |
|
| [Azure Event Hubs]({{< ref eventhubs.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Azure Service Bus Queues]({{< ref servicebusqueues.md >}}) | ✅ | ✅ | Alpha |
|
| [Azure Service Bus Queues]({{< ref servicebusqueues.md >}}) | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Azure SignalR]({{< ref signalr.md >}}) | | ✅ | Alpha |
|
| [Azure SignalR]({{< ref signalr.md >}}) | | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Azure Storage Queues]({{< ref storagequeues.md >}}) | ✅ | ✅ | Alpha |
|
| [Azure Storage Queues]({{< ref storagequeues.md >}}) | ✅ | ✅ | GA | v1 | 1.0 |
|
||||||
|
|
|
||||||
|
|
@ -1,39 +1,48 @@
|
||||||
---
|
---
|
||||||
type: docs
|
type: docs
|
||||||
title: "Supported pub/sub components"
|
title: "Supported pub/sub brokers"
|
||||||
linkTitle: "Supported pub/sub"
|
linkTitle: "Supported pub/sub brokers"
|
||||||
weight: 30000
|
weight: 30000
|
||||||
description: The supported pub/sub brokers that interface with Dapr
|
description: The supported pub/sub brokers that interface with Dapr
|
||||||
no_list: true
|
no_list: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Table captions:
|
||||||
|
|
||||||
|
> `Status`: [Component certification]({{<ref "certification-lifecycle.md">}}) status
|
||||||
|
- [Alpha]({{<ref "certification-lifecycle.md#alpha">}})
|
||||||
|
- [Beta]({{<ref "certification-lifecycle.md#beta">}})
|
||||||
|
- [GA]({{<ref "certification-lifecycle.md#general-availability-ga">}})
|
||||||
|
> `Since`: defines from which Dapr Runtime version, the component is in the current status
|
||||||
|
|
||||||
|
> `Component version`: defines the version of the component
|
||||||
### Generic
|
### Generic
|
||||||
|
|
||||||
| Name | Status |
|
| Name | Status | Component version | Since |
|
||||||
|-------------------------------------------------------|--------|
|
|-------------------------------------------------------|--------| -----| ------------- |
|
||||||
| [Apache Kafka]({{< ref setup-apache-kafka.md >}}) | Alpha |
|
| [Apache Kafka]({{< ref setup-apache-kafka.md >}}) | Beta | v1 | 1.0 |
|
||||||
| [Hazelcast]({{< ref setup-hazelcast.md >}}) | Alpha |
|
| [Hazelcast]({{< ref setup-hazelcast.md >}}) | Alpha | v1 | 1.0 |
|
||||||
| [MQTT]({{< ref setup-mqtt.md >}}) | Alpha |
|
| [MQTT]({{< ref setup-mqtt.md >}}) | Alpha | v1 | 1.0 |
|
||||||
| [NATS Streaming]({{< ref setup-nats-streaming.md >}}) | Alpha |
|
| [NATS Streaming]({{< ref setup-nats-streaming.md >}}) | Beta | v1 | 1.0 |
|
||||||
| [Pulsar]({{< ref setup-pulsar.md >}}) | Alpha |
|
| [Pulsar]({{< ref setup-pulsar.md >}}) | Alpha | v1 | 1.0 |
|
||||||
| [RabbitMQ]({{< ref setup-rabbitmq.md >}}) | Alpha |
|
| [RabbitMQ]({{< ref setup-rabbitmq.md >}}) | Alpha | v1 | 1.0 |
|
||||||
| [Redis Streams]({{< ref setup-redis-pubsub.md >}}) | Alpha |
|
| [Redis Streams]({{< ref setup-redis-pubsub.md >}}) | GA | v1 | 1.0 |
|
||||||
|
|
||||||
### Amazon Web Services (AWS)
|
### Amazon Web Services (AWS)
|
||||||
|
|
||||||
| Name | Status |
|
| Name | Status | Component version | Since |
|
||||||
|---------------------------------------------------|--------|
|
|---------------------------------------------------|--------| ---- |---------------|
|
||||||
| [AWS SNS/SQS]({{< ref setup-aws-snssqs.md >}}) | Alpha |
|
| [AWS SNS/SQS]({{< ref setup-aws-snssqs.md >}}) | Alpha | v1 | 1.0 |
|
||||||
|
|
||||||
### Google Cloud Platform (GCP)
|
### Google Cloud Platform (GCP)
|
||||||
|
|
||||||
| Name | Status |
|
| Name | Status | Component version | Since |
|
||||||
|---------------------------------------------------|--------|
|
|---------------------------------------------------|--------| ---- | --------------|
|
||||||
| [GCP Pub/Sub]({{< ref setup-gcp-pubsub.md >}}) | Alpha |
|
| [GCP Pub/Sub]({{< ref setup-gcp-pubsub.md >}}) | Alpha | v1 | 1.0 |
|
||||||
|
|
||||||
### Microsoft Azure
|
### Microsoft Azure
|
||||||
|
|
||||||
| Name | Status |
|
| Name | Status | Component version | Since |
|
||||||
|-----------------------------------------------------------|--------|
|
|-----------------------------------------------------------|--------| ----------------| -- |
|
||||||
| [Azure Events Hub]({{< ref setup-azure-eventhubs.md >}}) | Alpha |
|
| [Azure Events Hub]({{< ref setup-azure-eventhubs.md >}}) | Alpha | v1 | 1.0 |
|
||||||
| [Azure Service Bus]({{< ref setup-azure-servicebus.md >}})| Alpha |
|
| [Azure Service Bus]({{< ref setup-azure-servicebus.md >}})| GA | v1 | 1.0 |
|
||||||
|
|
|
||||||
|
|
@ -7,30 +7,40 @@ description: The supported secret stores that interface with Dapr
|
||||||
no_list: true
|
no_list: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Table captions:
|
||||||
|
|
||||||
|
> `Status`: [Component certification]({{<ref "certification-lifecycle.md">}}) status
|
||||||
|
- [Alpha]({{<ref "certification-lifecycle.md#alpha">}})
|
||||||
|
- [Beta]({{<ref "certification-lifecycle.md#beta">}})
|
||||||
|
- [GA]({{<ref "certification-lifecycle.md#general-availability-ga">}})
|
||||||
|
> `Since`: defines from which Dapr Runtime version, the component is in the current status
|
||||||
|
|
||||||
|
> `Component version`: defines the version of the component
|
||||||
|
|
||||||
### Generic
|
### Generic
|
||||||
|
|
||||||
| Name | Status |
|
| Name | Status | Component version | Since |
|
||||||
|-------------------------------------------------------------------|------------------------------|
|
|-------------------------------------------------------------------|------------------------------| ---------------- |-- |
|
||||||
| [Local environment variables]({{< ref envvar-secret-store.md >}}) | GA (For local development) |
|
| [Local environment variables]({{< ref envvar-secret-store.md >}}) | Beta | v1 | 1.0 |
|
||||||
| [Local file]({{< ref file-secret-store.md >}}) | GA (For local development) |
|
| [Local file]({{< ref file-secret-store.md >}}) | Beta | v1 | 1.0 |
|
||||||
| [HashiCorp Vault]({{< ref hashicorp-vault.md >}}) | Alpha |
|
| [HashiCorp Vault]({{< ref hashicorp-vault.md >}}) | Alpha | v1 | 1.0 |
|
||||||
| [Kubernetes secrets]({{< ref kubernetes-secret-store.md >}}) | Alpha |
|
| [Kubernetes secrets]({{< ref kubernetes-secret-store.md >}}) | GA | v1 | 1.0 |
|
||||||
|
|
||||||
### Amazon Web Services (AWS)
|
### Amazon Web Services (AWS)
|
||||||
|
|
||||||
| Name | Status |
|
| Name | Status | Component version | Since |
|
||||||
|----------------------------------------------------------|--------|
|
|----------------------------------------------------------|--------| -------------------| ---- |
|
||||||
| [AWS Secrets Manager]({{< ref aws-secret-manager.md >}}) | Alpha |
|
| [AWS Secrets Manager]({{< ref aws-secret-manager.md >}}) | Alpha | v1 | 1.0 |
|
||||||
|
|
||||||
### Google Cloud Platform (GCP)
|
### Google Cloud Platform (GCP)
|
||||||
|
|
||||||
| Name | Status |
|
| Name | Status | Component version | Since |
|
||||||
|----------------------------------------------------------|--------|
|
|----------------------------------------------------------|--------| ---- | ------------|
|
||||||
| [GCP Secret Manager]({{< ref gcp-secret-manager.md >}}) | Alpha |
|
| [GCP Secret Manager]({{< ref gcp-secret-manager.md >}}) | Alpha | v1 | 1.0 |
|
||||||
|
|
||||||
### Microsoft Azure
|
### Microsoft Azure
|
||||||
|
|
||||||
| Name | Status |
|
| Name | Status | Component version | Since |
|
||||||
|---------------------------------------------------------------------------------------|--------|
|
|---------------------------------------------------------------------------------------|--------| ---- |--------------|
|
||||||
| [Azure Key Vault w/ Managed Identity]({{< ref azure-keyvault-managed-identity.md >}}) | Alpha |
|
| [Azure Key Vault w/ Managed Identity]({{< ref azure-keyvault-managed-identity.md >}}) | Alpha | v1 | 1.0 |
|
||||||
| [Azure Key Vault]({{< ref azure-keyvault.md >}}) | Alpha |
|
| [Azure Key Vault]({{< ref azure-keyvault.md >}}) | GA | v1 | 1.0 |
|
||||||
|
|
|
||||||
|
|
@ -1,45 +1,58 @@
|
||||||
---
|
---
|
||||||
type: docs
|
type: docs
|
||||||
title: "Supported stores"
|
title: "Supported state stores"
|
||||||
linkTitle: "Supported stores"
|
linkTitle: "Supported state stores"
|
||||||
description: "The supported state stores that interface with Dapr"
|
description: "The supported state stores that interface with Dapr"
|
||||||
weight: 20000
|
weight: 20000
|
||||||
no_list: true
|
no_list: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Table captions:
|
||||||
|
|
||||||
|
> `Status`: [Component certification]({{<ref "certification-lifecycle.md">}}) status
|
||||||
|
- [Alpha]({{<ref "certification-lifecycle.md#alpha">}})
|
||||||
|
- [Beta]({{<ref "certification-lifecycle.md#beta">}})
|
||||||
|
- [GA]({{<ref "certification-lifecycle.md#general-availability-ga">}})
|
||||||
|
> `Since`: defines from which Dapr Runtime version, the component is in the current status
|
||||||
|
|
||||||
|
> `Component version`: defines the version of the component
|
||||||
|
|
||||||
|
|
||||||
|
The following stores are supported, at various levels, by the Dapr state management building block:
|
||||||
|
|
||||||
### Generic
|
### Generic
|
||||||
|
|
||||||
| Name | CRUD | Transactional </br>(Supports Actors) | ETag | Status |
|
| Name | CRUD | Transactional </br>(Supports Actors) | ETag | Status | Component version | Since |
|
||||||
|----------------------------------------------------------------|------|---------------------|------|--------|
|
|----------------------------------------------------------------|------|---------------------|------|--------| -------|------|
|
||||||
| [Aerospike]({{< ref setup-aerospike.md >}}) | ✅ | ❌ | ✅ | Alpha |
|
| [Aerospike]({{< ref setup-aerospike.md >}}) | ✅ | ❌ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Apache Cassandra]({{< ref setup-cassandra.md >}}) | ✅ | ❌ | ❌ | Alpha |
|
| [Apache Cassandra]({{< ref setup-cassandra.md >}}) | ✅ | ❌ | ❌ | Alpha | v1 | 1.0 |
|
||||||
| [Cloudstate]({{< ref setup-cloudstate.md >}}) | ✅ | ❌ | ✅ | Alpha |
|
| [Cloudstate]({{< ref setup-cloudstate.md >}}) | ✅ | ❌ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Couchbase]({{< ref setup-couchbase.md >}}) | ✅ | ❌ | ✅ | Alpha |
|
| [Couchbase]({{< ref setup-couchbase.md >}}) | ✅ | ❌ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Hashicorp Consul]({{< ref setup-consul.md >}}) | ✅ | ❌ | ❌ | Alpha |
|
| [Hashicorp Consul]({{< ref setup-consul.md >}}) | ✅ | ❌ | ❌ | Alpha | v1 | 1.0 |
|
||||||
| [Hazelcast]({{< ref setup-hazelcast.md >}}) | ✅ | ❌ | ❌ | Alpha |
|
| [Hazelcast]({{< ref setup-hazelcast.md >}}) | ✅ | ❌ | ❌ | Alpha | v1 | 1.0 |
|
||||||
| [Memcached]({{< ref setup-memcached.md >}}) | ✅ | ❌ | ❌ | Alpha |
|
| [Memcached]({{< ref setup-memcached.md >}}) | ✅ | ❌ | ❌ | Alpha | v1 | 1.0 |
|
||||||
| [MongoDB]({{< ref setup-mongodb.md >}}) | ✅ | ✅ | ❌ | Alpha |
|
| [MongoDB]({{< ref setup-mongodb.md >}}) | ✅ | ✅ | ❌ | GA | v1 | 1.0 |
|
||||||
| [MySQL]({{< ref setup-mysql.md >}}) | ✅ | ✅ | ✅ | Alpha |
|
| [MySQL]({{< ref setup-mysql.md >}}) | ✅ | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [PostgreSQL]({{< ref setup-postgresql.md >}}) | ✅ | ✅ | ✅ | Alpha |
|
| [PostgreSQL]({{< ref setup-postgresql.md >}}) | ✅ | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Redis]({{< ref setup-redis.md >}}) | ✅ | ✅ | ✅ | Alpha |
|
| [Redis]({{< ref setup-redis.md >}}) | ✅ | ✅ | ✅ | GA | v1 | 1.0 |
|
||||||
| [RethinkDB]({{< ref setup-rethinkdb.md >}}) | ✅ | ✅ | ✅ | Alpha |
|
| [RethinkDB]({{< ref setup-rethinkdb.md >}}) | ✅ | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Zookeeper]({{< ref setup-zookeeper.md >}}) | ✅ | ❌ | ✅ | Alpha |
|
| [Zookeeper]({{< ref setup-zookeeper.md >}}) | ✅ | ❌ | ✅ | Alpha | v1 | 1.0 |
|
||||||
|
|
||||||
|
|
||||||
### Amazon Web Services (AWS)
|
### Amazon Web Services (AWS)
|
||||||
| Name | CRUD | Transactional </br>(Supports Actors) | ETag | Status |
|
| Name | CRUD | Transactional </br>(Supports Actors) | ETag | Status | Component version | Since |
|
||||||
|------------------------------------------------------------------|------|---------------------|------|--------|
|
|------------------------------------------------------------------|------|---------------------|------|--------|-----|-------|
|
||||||
| [AWS DynamoDB]({{< ref setup-dynamodb.md>}}) | ✅ | ❌ | ❌ | Alpha |
|
| [AWS DynamoDB]({{< ref setup-dynamodb.md>}}) | ✅ | ❌ | ❌ | Alpha | v1 | 1.0 |
|
||||||
|
|
||||||
### Google Cloud Platform (GCP)
|
### Google Cloud Platform (GCP)
|
||||||
| Name | CRUD | Transactional </br>(Supports Actors) | ETag | Status |
|
| Name | CRUD | Transactional </br>(Supports Actors) | ETag | Status | Component version | Since |
|
||||||
|-------------------------------------------------------|------|---------------------|------|--------|
|
|-------------------------------------------------------|------|---------------------|------|--------|-----|------|
|
||||||
| [GCP Firestore]({{< ref setup-firestore.md >}}) | ✅ | ❌ | ❌ | Alpha |
|
| [GCP Firestore]({{< ref setup-firestore.md >}}) | ✅ | ❌ | ❌ | Alpha | v1 | 1.0 |
|
||||||
### Microsoft Azure
|
### Microsoft Azure
|
||||||
|
|
||||||
| Name | CRUD | Transactional </br>(Supports Actors) | ETag | Status |
|
| Name | CRUD | Transactional </br>(Supports Actors) | ETag | Status | Component version | Since |
|
||||||
|------------------------------------------------------------------|------|---------------------|------|--------|
|
|------------------------------------------------------------------|------|---------------------|------|--------| ------|-----|
|
||||||
| [Azure Blob Storage]({{< ref setup-azure-blobstorage.md >}}) | ✅ | ❌ | ✅ | Alpha |
|
| [Azure Blob Storage]({{< ref setup-azure-blobstorage.md >}}) | ✅ | ❌ | ✅ | GA | v1 | 1.0 |
|
||||||
| [Azure CosmosDB]({{< ref setup-azure-cosmosdb.md >}}) | ✅ | ✅ | ✅ | Alpha |
|
| [Azure CosmosDB]({{< ref setup-azure-cosmosdb.md >}}) | ✅ | ✅ | ✅ | GA | v1 | 1.0 |
|
||||||
| [Azure SQL Server]({{< ref setup-sqlserver.md >}}) | ✅ | ✅ | ✅ | Alpha |
|
| [Azure SQL Server]({{< ref setup-sqlserver.md >}}) | ✅ | ✅ | ✅ | Alpha | v1 | 1.0 |
|
||||||
| [Azure Table Storage]({{< ref setup-azure-tablestorage.md >}}) | ✅ | ❌ | ✅ | Alpha |
|
| [Azure Table Storage]({{< ref setup-azure-tablestorage.md >}}) | ✅ | ❌ | ✅ | Alpha | v1 | 1.0 |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue