Questions tagged [dapr]

Dapr is a portable, event-driven, runtime for building distributed applications across cloud and edge.

Dapr is a portable, event-driven runtime that makes it easy for enterprise developers to build resilient, microservice stateless and stateful applications that run on the cloud and edge and embraces the diversity of languages and developer frameworks.

Dapr.io

164 questions
0
votes
1 answer

What is the meaning of 'v.1.0' in HTTP requests in the Dapr API?

In the Dapr API, most HTTP requests are in the format http://localhost:/v1.0/.... What does "v1.0" means? And when will I need to change it to another value?
Ocimar
  • 53
  • 1
  • 6
0
votes
1 answer

How to achieve manual "dapr init " instead of command "dapr init "

in my company,because of network reason,often disconnect github.com, command of "dapr init" always failed,so I want to manual implement "dapr init " to instead of command "dapr init ", someone know detail of "dapr init" ? thx
pepperann
  • 139
  • 1
  • 3
0
votes
1 answer

Dapr and using sql statestore instead of redis

We would like to test switching from redis to sql statestore component. From the docs it looks like we can do this with two small modifications: apiVersion: dapr.io/v1alpha1 kind: Component metadata: name: statestore spec: type: state.sqlserver …
Larsi
  • 4,654
  • 7
  • 46
  • 75
0
votes
2 answers

Dapr -VaulttokenMountpath Issue

I am trying to execute the Dapr -Secret management using Vault in k8s env. https://github.com/dapr/quickstarts/tree/master/secretstore Applied the following component Yaml for vault . Component yaml: apiVersion: dapr.io/v1alpha1 kind:…
0
votes
1 answer

Dapr input binding with Azure Event Hub processes messages synchronously

We are using dapr along with an input binding to consume IoT Events from Azure Event Hub. The event hub has 32 partitions and the sender uses the device id as partition key. The controller receiving the events delegates them to dapr Actors for…
Markus S.
  • 2,602
  • 13
  • 44
0
votes
0 answers

Visual Studio, setting 2 start up projects, a docker one and a client

First of all I would like to apologize in case that the question should not be here, because it is not about coding only. The problem is the following: I have a solution with several projects, all of those projects but one (a client), run on dapr…
Iria
  • 43
  • 1
  • 10
0
votes
1 answer

Missing Dapr Side-Car in POD with NGINX in AKS

I have a AKS cluster running in Azure and have deployed Dapr runtime into it along with a few other test service deployments that are annotated with dapr.io/enabled, dapr.io/id. A Daprd side-car container instance co-locates within the same pod as…
John Kears
  • 677
  • 6
  • 20
0
votes
1 answer

Envoy proxy isn't forwarding to listed address?

So I have a dapr service hosted at: 192.168.1.34:50459 I'm trying to have it communicate with my web application using grpc-web. To do so I have an envoy proxy (according to https://github.com/grpc/grpc-web/issues/347). My envoy.yaml file is as…
IsolatedSushi
  • 152
  • 2
  • 10
0
votes
2 answers

How to install Dapr on Ubuntu Linux

Dapr is new event-driven technology based on distributed building blocks and components. How can one install the technology stack and get started with Dapr.
Evandro Pomatti
  • 13,341
  • 16
  • 97
  • 165
-1
votes
0 answers

Dapr not allows using "/" in metadata - name section

For dapr using cron, I have a configuration yaml file like below apiVersion: dapr.io/v1alpha1 kind: Component metadata: name: /a/b/c spec: type: bindings.cron version: v1 metadata: - name: schedule value: "@every 15m" # valid cron…
mears
  • 359
  • 4
  • 13
-1
votes
1 answer

Unable to get secret value from AWS secret manager in Dapr component

I am trying to use Dapr with Aws Secret Manager. I am able to get secrets from aws secret manager through dapr secret API. But unable to get keys from secret manager when referencing in component. File: statestore.yaml apiVersion:…
Harshroc
  • 21
  • 2
-1
votes
1 answer

how can I run dapr subscriber quickstart in prod environment

All quickstart examples using .Net SDK show 'dotnet run' as the way to run ASP.Net Core applications. See https://docs.dapr.io/getting-started/quickstarts/pubsub-quickstart/#tabs-1-net dapr run --app-id order-processor --components-path…
-1
votes
1 answer

Dapr app channel not initialized, make sure -app-port is specified if pubsub subscription is required

I am trying to implement subcriber in C# console app using Dapr, but its giving the below error. Error: app channel not initialized, make sure -app-port is specified if pubsub subscription is required Exited App successfully terminated signal…
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197
-2
votes
1 answer

How to integrate Dapr with Kong Api Gateway

I want to use Kong as api gateway to allow external applications to interact with the cluster Dapr communicate with my application. I can't find any example.
ben.jamin
  • 217
  • 1
  • 3
  • 6
1 2 3
10
11