You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: daprdocs/content/en/concepts/dapr-services/placement.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,22 @@ updatedAt | timestamp | Timestamp of the actor registered/updated.
93
93
}
94
94
```
95
95
96
+
## Disabling the Placement service
97
+
98
+
99
+
The Placement service can be disabled with the following setting:
100
+
101
+
102
+
```
103
+
global.actors.enabled=false
104
+
```
105
+
106
+
The Placement service is not deployed with this setting in Kubernetes mode. This not only disables actor deployment, but also disables workflows, given that workflows use actors. This setting only applies in Kubernetes mode, however initializing Dapr with `--slim` excludes the Placement service from being deployed in self-hosted mode.
107
+
108
+
109
+
For more information on running Dapr on Kubernetes, visit the [Kubernetes hosting page](https://docs.dapr.io/operations/hosting/kubernetes/).
110
+
111
+
96
112
## Related links
97
113
98
-
[Learn more about the Placement API.]({{< ref placement_api.md >}})
114
+
[Learn more about the Placement API.]({{< ref placement_api.md >}})
Copy file name to clipboardExpand all lines: daprdocs/content/en/contributing/presentations.md
+14-12Lines changed: 14 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,14 @@ weight: 20
6
6
description: How to give a presentation on Dapr and examples
7
7
---
8
8
9
-
We welcome community members giving presentations on Dapr and spreading the word about all the awesome Dapr features! We offer a template PowerPoint file to get started.
9
+
We encourage community members to give presentations on Dapr. To get you started quickly, we offer two PowerPoint files:
10
10
11
-
{{< button text="Download the Dapr Presentation Deck" link="/presentations/dapr-slidedeck.pptx.zip" >}}
11
+
-*dapr-slidedeck.pptx*, this is a 150+ page slide deck and contains; an overview of Dapr, all of its building block APIs, cross-cutting concerns, hosting options, and assets to create your own architecture diagrams.
12
+
-*dapr-workflow.pptx*, this is a dedicated slide deck about Dapr workflow and contains; durable execution concept, workflow authoring, workflow patterns, workflow management, and challenges & tips.
13
+
14
+
There is a downloadable zip file contains both slide decks.
15
+
16
+
{{< button text="Download the Dapr Presentation Decks" link="/presentations/dapr-slidedecks.zip" >}}
12
17
13
18
{{% alert color="primary" %}}
14
19
If you're using the PowerPoint template with MacOS, please install the Space Grotesk font to ensure the text is rendered properly:
- Begin by downloading the [Dapr Presentation Deck](/presentations/dapr-slidedeck.pptx.zip). This contains slidesand diagrams needed to give a Dapr presentation.
27
+
- Begin by downloading the [Dapr Presentation Decks](/presentations/dapr-slidedecks.zip). These contain slides, diagrams, and graphical assets needed to give a Dapr presentation.
23
28
- Next, review the docs to make sure you understand the [concepts]({{< ref concepts >}}).
24
-
- Use the Dapr [quickstarts](https://github.com/dapr/quickstarts) repo and [samples](https://github.com/dapr/samples) repo to show demos of how to use Dapr.
29
+
- Use the Dapr [quickstarts](https://github.com/dapr/quickstarts) repo to show demos of how to use Dapr.
30
+
- Once you've done a Dapr presentation, claim the *Dapr Presenter* badge by adding your presentation to [this table](https://github.com/dapr/community/tree/master/presentations) in the Dapr Community repository.
31
+
32
+
## Dapr presentations from the community
25
33
26
-
## Previous Dapr presentations
34
+
If you need some inspiration, watch these Dapr presentations by the community via this [Dapr YouTube playlist](https://youtube.com/playlist?list=PLcip_LgkYwztNWGLdO6yROA3zKl-uUu7h&si=dLMS2CPPyMsfl-QQ):
27
35
28
-
| Presentation | Recording | Deck |
29
-
|--------------|-----------|------|
30
-
| Running Event-Driven Pub/Sub Microservices In Kubernetes With Dapr | [Link](https://youtu.be/-4sHUvfk2Eg) | N/A
31
-
| Ignite 2019: Mark Russinovich Presents the Future of Cloud Native Applications | [Link](https://www.youtube.com/watch?v=LAUDVk8PaCY) | [Link](/presentations/2019IgniteCloudNativeApps.pdf)
32
-
| Azure Community Live: Build microservice applications using DAPR with Mark Fussell | [Link](https://www.youtube.com/watch?v=CgqI7nen-Ng) | N/A
Copy file name to clipboardExpand all lines: daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Prompt caching optimizes performance by storing and reusing prompts that are oft
30
30
31
31
### Personally identifiable information (PII) obfuscation
32
32
33
-
The PII obfuscation feature identifies and removes any form of sensitve user information from a conversation response. Simply enable PII obfuscation on input and output data to protect your privacy and scrub sensitive details that could be used to identify an individual.
33
+
The PII obfuscation feature identifies and removes any form of sensitive user information from a conversation response. Simply enable PII obfuscation on input and output data to protect your privacy and scrub sensitive details that could be used to identify an individual.
34
34
35
35
The PII scrubber obfuscates the following user information:
0 commit comments