diff --git a/daprdocs/content/en/developing-applications/building-blocks/state-management/query-state-store/query-sqlserver-store.md b/daprdocs/content/en/developing-applications/building-blocks/state-management/query-state-store/query-sqlserver-store.md index 981db0e45..641724959 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/state-management/query-state-store/query-sqlserver-store.md +++ b/daprdocs/content/en/developing-applications/building-blocks/state-management/query-state-store/query-sqlserver-store.md @@ -19,17 +19,17 @@ The easiest way to connect to your SQL Server instance is to use the [Azure Data To get all state keys associated with application "myapp", use the query: ```sql -SELECT * FROM states WHERE [Key] LIKE 'myapp-%' +SELECT * FROM states WHERE [Key] LIKE 'myapp||%' ``` -The above query returns all rows with id containing "myapp-", which is the prefix of the state keys. +The above query returns all rows with id containing "myapp||", which is the prefix of the state keys. ## 3. Get specific state data To get the state data by a key "balance" for the application "myapp", use the query: ```sql -SELECT * FROM states WHERE [Key] = 'myapp-balance' +SELECT * FROM states WHERE [Key] = 'myapp||balance' ``` Then, read the **Data** field of the returned row. @@ -37,7 +37,7 @@ Then, read the **Data** field of the returned row. To get the state version/ETag, use the command: ```sql -SELECT [RowVersion] FROM states WHERE [Key] = 'myapp-balance' +SELECT [RowVersion] FROM states WHERE [Key] = 'myapp||balance' ``` ## 4. Get filtered state data @@ -53,13 +53,13 @@ SELECT * FROM states WHERE JSON_VALUE([Data], '$.color') = 'blue' To get all the state keys associated with an actor with the instance ID "leroy" of actor type "cat" belonging to the application with ID "mypets", use the command: ```sql -SELECT * FROM states WHERE [Key] LIKE 'mypets-cat-leroy-%' +SELECT * FROM states WHERE [Key] LIKE 'mypets||cat||leroy||%' ``` And to get a specific actor state such as "food", use the command: ```sql -SELECT * FROM states WHERE [Key] = 'mypets-cat-leroy-food' +SELECT * FROM states WHERE [Key] = 'mypets||cat||leroy||food' ``` > **WARNING:** You should not manually update or delete states in the store. All writes and delete operations should be done via the Dapr runtime. diff --git a/daprdocs/content/en/reference/api/actors_api.md b/daprdocs/content/en/reference/api/actors_api.md index 78c30d1e2..b20059a3a 100644 --- a/daprdocs/content/en/reference/api/actors_api.md +++ b/daprdocs/content/en/reference/api/actors_api.md @@ -665,6 +665,6 @@ The state namespace created by Dapr for actors is composed of the following item - Key - A key for the specific state value. An actor ID can hold multiple state keys. The following example shows how to construct a key for the state of an actor instance under the `myapp` App ID namespace: -`myapp-cat-hobbit-food` +`myapp||cat||hobbit||food` In the example above, we are getting the value for the state key `food`, for the actor ID `hobbit` with an actor type of `cat`, under the App ID namespace of `myapp`. diff --git a/daprdocs/static/docs/open-telemetry-collector/open-telemetry-collector.yaml b/daprdocs/static/docs/open-telemetry-collector/open-telemetry-collector.yaml index bae9a336e..aa760183b 100644 --- a/daprdocs/static/docs/open-telemetry-collector/open-telemetry-collector.yaml +++ b/daprdocs/static/docs/open-telemetry-collector/open-telemetry-collector.yaml @@ -10,9 +10,6 @@ data: receivers: zipkin: endpoint: 0.0.0.0:9411 - processors: - queued_retry: - batch: extensions: health_check: pprof: @@ -37,7 +34,6 @@ data: traces: receivers: [zipkin] exporters: [azuremonitor,logging] - processors: [batch, queued_retry] --- apiVersion: v1 kind: Service