docs/concepts
Ricardo Niepel adfad75524 Adding more details into Actor Lifetime (#190)
Adding more details about reminders, timers and configuration options into Actor Lifetime docs
2019-10-24 09:26:14 -07:00
..
actor Adding more details into Actor Lifetime (#190) 2019-10-24 09:26:14 -07:00
architecture Fix typos in docs (#178) 2019-10-20 21:36:14 -07:00
bindings Fix typos in docs (#178) 2019-10-20 21:36:14 -07:00
components Clean pub sub (#172) 2019-10-19 14:04:20 -07:00
distributed-tracing doc update for exporters becoming components 2019-10-22 19:13:06 -07:00
extending-dapr rename actions to dapr (#77) 2019-10-08 09:27:16 -07:00
publish-subscribe-messaging Fix typos in docs (#178) 2019-10-20 21:36:14 -07:00
security Fix typos in docs (#178) 2019-10-20 21:36:14 -07:00
service-invocation fix links (#137) 2019-10-15 22:53:26 -07:00
state-management Fix typos in docs (#178) 2019-10-20 21:36:14 -07:00
README.md Fix typos in docs (#178) 2019-10-20 21:36:14 -07:00

README.md

Dapr concepts

This directory contains various Dapr concepts. The goal of these documents is to expand your knowledge on the Dapr spec.

Core Concepts

  • Bindings

    A binding provides a bi-directional connection to an external cloud/on-premise service or system. Dapr allows you to invoke the external service through the standard Dapr binding API, and it allows your application to be triggered by events sent by the connected service.

  • Building blocks

    A building block is a single-purposed API surface backed by one or more Dapr components. Dapr consists of a set of building blocks, with extensibility to add new building blocks.

  • Components

    Dapr uses a modular design, in which functionalities are grouped and delivered by a number of components, such as pub/sub and secrets. Many of the components are pluggable so that you can swap out the default implementation with your custom implementations.

  • Distributed Tracing

    Distributed tracing collects and aggregates trace events by transactions. It allows you to trace the entire call chain across multiple services. Dapr integrates with OpenTelemetry for distributed tracing and metrics collection.

  • Publish/Subscribe Messaging

    Pub/Sub is a loosely coupled messaging pattern where senders (or publishers) publishes messages to a topic, to which subscribers subscribe. Dapr natively supports the pub/sub pattern.

  • Secrets

    In Dapr, a secret is any piece of private information that you want to guard against unwanted users. Dapr offers a simple secret API and integrates with secret stores such as Azure Key Vault and Kubernetes secret stores to store the secrets.

  • State

    Application state is anything an application wants to preserve beyond a single session. Dapr allows pluggable state stores behind a key/value-based state API.

Actors

Extensibility