Update support-preview-features.md

This commit is contained in:
Mark Fussell 2021-07-21 18:11:26 -07:00 committed by GitHub
parent c807db7464
commit a35f7f1cf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 7 deletions

View File

@ -1,14 +1,16 @@
--- ---
type: docs type: docs
title: "Supported preview features" title: "Preview features"
linkTitle: "Supported preview features" linkTitle: "Preview features"
weight: 4000 weight: 4000
description: "Dapr's supported preview features" description: "List of current preview features"
--- ---
Preview features in Dapr are considered experimental when they are first released. These preview features require explicit opt-in in order to be used. The opt-in is specified in Dapr's configuration. See [How-To: Enable preview features]({{<ref preview-features>}}) for information more information.
## Currently supported preview features
## Current preview features
| Description | Setting | Documentation | | Description | Setting | Documentation |
|-------------|---------|---------------| |-------------|---------|---------------|
| Preview feature that allows Actors to be called multiple times in the same call chain. | Actor.Reentrancy | [Actor reentrancy]({{<ref actor-reentrancy>}}) | | Preview feature that enables Actors to be called multiple times in the same call chain allowing call backs between actors. | Actor.Reentrancy | [Actor reentrancy]({{<ref actor-reentrancy>}}) |
| Preview feature that allows Actor reminders to be partitioned across multiple keys in the underlying statestore. | Actor.TypeMetadata | TODO: Real link | | Preview feature that allows Actor reminders to be partitioned across multiple keys in the underlying statestore in order to improve scale and performance. | Actor.TypeMetadata | TODO: Real link |
| Preview feature that allows you to connect existing gRPC services through Dapr via gRPC proxying. | proxy.grpc | [How-To: Invoke services using gRPC]({{<ref howto-invoke-services-grpc>}}) | | Preview feature that enables you to call endpoints using service invocation on gRPC services through Dapr via gRPC proxying, without requiring the use of Dapr SDKs. | proxy.grpc | [How-To: Invoke services using gRPC]({{<ref howto-invoke-services-grpc>}}) |