📢 The Dapr community has moved to Discord (https://aka.ms/dapr-discord). This Gitter community will no longer be monitored and maintained. Please post questions/comments over at Discord and we'll be happy to answer there!
Hello!
I don't use operator, but i install dapr-placement and install applications with sidecar.
But application having error when call other application in log:
java.util.concurrent.ExecutionException: io.grpc.StatusRuntimeException: UNKNOWN: couldn't find service: zif-cm-provider-udl-service
I read in documentation that dapr has name-resolution components, but i don't understand how install it.
Please help me!)
microk8s.helm3 install dapr dapr/dapr --namespace dapr-system --wait
Error: parse error at (dapr/charts/dapr_sidecar_injector/templates/dapr_sidecar_injector_webhook_config.yaml:1): function "lookup" not defined
I have created an ASP.NET subscriber. When I publish an event with the Dapr CLI, I get a serialization error.
dapr publish --publish-app-id subscriber --pubsub pubsub --topic weather --data '{ "temperatureC": 0, "temperatureF": 32, "summary": "freezing" }'
Error: The JSON value could not be converted to Subscriber.WeatherForecast. Path: $ | LineNumber: 0 | BytePositionInLine: 9.
Any help would be appreciated. My repo is here.
Deploy any service which uses State management with Redis..
Deploy another service which uses Pub-sub with Kafka.
Make Kafka down.
Restart the State management service . Then issue occurred.
Hi has anyone tried installing Dapr 1.0.1 version ? I am trying but facing issue .
Wait helm template failed. Error: parse error in "dapr/charts/dapr_sidecar_injector/templates/dapr_sidecar_injector_webhook_config.yaml": template: dapr/charts/dapr_sidecar_injector/templates/dapr_sidecar_injector_webhook_config.yaml:1: function "lookup" not defined : exit status 1 -- Issue is this i am facing
I have a problem related to message size:
Dapr.DaprException: State operation failed: the Dapr endpoint indicated a failure. See InnerException for details.
---> Grpc.Core.RpcException: Status(StatusCode="ResourceExhausted", Detail="grpc: trying to send message larger than max (4996148 vs. 4194304)")
at Dapr.Client.DaprClientGrpc.GetBulkStateAsync(String storeName, IReadOnlyList`1 keys, Nullable`1 parallelism, IReadOnlyDictionary`2 metadata, CancellationToken cancellationToken)
...
I have a redis state store which should also store data > 4 MB, however I cannot retrieve it and get the above error message. I am using the .NET Dapr client with MaxReceiveMessageSize
and MaxSendMessageSize
set to null
. Does anyone have any experience related to this?