diff --git a/daprdocs/content/en/operations/configuration/preview-features.md b/daprdocs/content/en/operations/configuration/preview-features.md index e4e2363df..387ba0fa6 100644 --- a/daprdocs/content/en/operations/configuration/preview-features.md +++ b/daprdocs/content/en/operations/configuration/preview-features.md @@ -7,20 +7,19 @@ description: "How to specify and enable preview features" --- ## Overview -Some features in Dapr are considered experimental when they are first released. These features require explicit opt-in in order to be used. The opt-in is specified in Dapr's configuration. +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. -Currently, preview features are enabled on a per application basis when running on Kubernetes. A global scope may be introduced in the future should there be a use case for it. +Preview features are enabled on a per application basis by setting configuration when running an application instance. -### Current preview features -Below is a list of existing preview features: -- [Actor Reentrancy]({{}}) +### Preview features +The current list of preview features can be found [here]({{}}). ## Configuration properties The `features` section under the `Configuration` spec contains the following properties: | Property | Type | Description | |----------------|--------|-------------| -|name|string|The name of the preview feature that will be enabled/disabled +|name|string|The name of the preview feature that is enabled/disabled |enabled|bool|Boolean specifying if the feature is enabled or disabled ## Enabling a preview feature diff --git a/daprdocs/content/en/operations/support/support-preview-features.md b/daprdocs/content/en/operations/support/support-preview-features.md new file mode 100644 index 000000000..cbd7fd8a9 --- /dev/null +++ b/daprdocs/content/en/operations/support/support-preview-features.md @@ -0,0 +1,16 @@ +--- +type: docs +title: "Preview features" +linkTitle: "Preview features" +weight: 4000 +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]({{}}) for information more information. + + +## Current preview features +| Description | Setting | Documentation | +|-------------|---------|---------------| +| Preview feature that enables Actors to be called multiple times in the same call chain allowing call backs between actors. | Actor.Reentrancy | [Actor reentrancy]({{}}) | +| 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 | [How-To: Partition Actor Reminders]({{< ref "howto-actors.md#partitioning-reminders" >}}) | +| 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]({{}}) |