mirror of https://github.com/dapr/docs.git
Update to remove reference to State Management .
Updated the intro section
This commit is contained in:
parent
a58af561a5
commit
3409c7352b
|
@ -8,9 +8,7 @@ description: "Overview of the configuration API building block"
|
|||
|
||||
## Introduction
|
||||
|
||||
Consuming application configuration is a common task when writing applications and frequently configuration stores are used to manage this configuration data. A configuration item is often dynamic in nature and is tightly coupled to the needs of the application that consumes it. For example, common uses for application configuration include names of secrets, different identifiers, partition or consumer IDs, names of databases to connect to etc. These configuration items are typically stored as key/value items in a state store or database.
|
||||
|
||||
Dapr provides a [state management API]({{<ref "state-management-overview.md">}}) that is based on key-value stores to save and retrieve state. However, application configuration can be changed by either developers or operators at runtime and the developer needs to be notified of these changes in order to take the required action and load the new configuration. Also the configuration data may want to be read only. Dapr's Configuration API allows developers to consume configuration items that are returned as key/value pairs and subscribe to changes whenever a configuration item changes.
|
||||
Consuming application configuration is a common task when writing applications and frequently configuration stores are used to manage this configuration data. A configuration item is often dynamic in nature and is tightly coupled to the needs of the application that consumes it. For example, common uses for application configuration include names of secrets, different identifiers, partition or consumer IDs, names of databases to connect to etc. These configuration items are typically stored as key/value items in a state store or database. Application configuration can be changed by either developers or operators at runtime and the developer needs to be notified of these changes in order to take the required action and load the new configuration. Also configuration data is typically read only from the application API perspective, with updates to the configuration store made through operator tooling. Dapr's configuration API allows developers to consume configuration items that are returned as read only key/value pairs and subscribe to changes whenever a configuration item changes.
|
||||
|
||||
<img src="/images/configuration-api-overview.png" width=900>
|
||||
|
||||
|
|
Loading…
Reference in New Issue