From b9b58d8cfa2333ab75c75ff0b4dd232c3fe69b44 Mon Sep 17 00:00:00 2001 From: Tiago Alves Macambira Date: Wed, 8 Feb 2023 21:07:28 -0800 Subject: [PATCH] Update daprdocs/content/en/operations/components/pluggable-components-registration.md Co-authored-by: Mark Fussell Signed-off-by: Tiago Alves Macambira --- .../operations/components/pluggable-components-registration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/operations/components/pluggable-components-registration.md b/daprdocs/content/en/operations/components/pluggable-components-registration.md index 4f57236d5..85a9be8a6 100644 --- a/daprdocs/content/en/operations/components/pluggable-components-registration.md +++ b/daprdocs/content/en/operations/components/pluggable-components-registration.md @@ -55,7 +55,7 @@ Since you are running Dapr in the same host as the component, verify this folder ### Component discovery and multiplexing -A pluggable component accessible through a [Unix Domain Socket][uds] can host multiple distinct bulding blocks. During the components initial discovery process, Dapr will use reflection to enumerate all building blocks behind a UDS. The `my-component` pluggable component from the example above could contain both a state store (`state`) and a Pub/Sub (`pubsub`) building-blocks. +A pluggable component accessible through a [Unix Domain Socket][UDS] can host multiple distinct component APIs . During the components' initial discovery process, Dapr uses reflection to enumerate all the component APIs behind a UDS. The `my-component` pluggable component in the example above can contain both state store (`state`) and a pub/sub (`pubsub`) component APIs. The most common use-case is for a 1:1 mapping between pluggable components and building blocks they expose. That said, having the possibility of consolidating multiple building blocks under the same pluggable components might be healpful, specially to ease DevOps burden at the expense of fault tolerance and security. Please weight the pros and cons and, if in doubt, stick to a 1:1 approach.