Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Ftr: configuration store docs #1860

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions daprdocs/content/en/concepts/building-blocks-concept.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ The following are the building blocks provided by Dapr:
| [**Actors**]({{<ref "actors-overview.md">}}) | `/v1.0/actors` | An actor is an isolated, independent unit of compute and state with single-threaded execution. Dapr provides an actor implementation based on the Virtual Actor pattern which provides a single-threaded programming model and where actors are garbage collected when not in use.
| [**Observability**]({{<ref "observability-concept.md">}}) | `N/A` | Dapr system components and runtime emit metrics, logs, and traces to debug, operate and monitor Dapr system services, components and user applications.
| [**Secrets**]({{<ref "secrets-overview.md">}}) | `/v1.0/secrets` | Dapr offers a secrets building block API and integrates with secret stores such as Azure Key Vault and Kubernetes to store the secrets. Service code can call the secrets API to retrieve secrets out of the Dapr supported secret stores.
| [**Configuration**]({{<ref "configuration-store-overview.md">}}) | `/v1.0/configuration` | Dapr Configuration Components
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
type: docs
title: "Configuration"
linkTitle: "Configuration"
weight: 50
description: Application Configuration building block
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
type: docs
title: "Configuration overview"
linkTitle: "Overview"
weight: 10
description: Overview of the configuration building block
aliases:
---

## Introduction
Using configuration, you can get your application configuration using dapr's API. The configuration can be stored in configuration store you like. This building block's benefit is to let you to get application configuration easily from any mature solution, like redis, nacos, etc. We call each implement of configuration is a kind of state store. In the API, the statestore parameter is also used to distinguish the configuration stores selected by the user

## Get Configuration

Get configuration operation can be used to get configuraiton content from target state store with target key. The user can start the application and load it from the required State Store with an API call.

## Subscribe Configuration

Subscribe configuration can be used to subscribe configuration in target state store with target key. It would first get exist data and subscribe the changes of target configuration.