Common issues when running Dapr

    There could be several reasons to why a sidecar will not be injected into a pod. First, check your deployment or pod YAML file, and check that you have the following annotations in the right place:

    1. kind: Deployment
    2. metadata:
    3. name: nodeapp
    4. namespace: default
    5. labels:
    6. spec:
    7. replicas: 1
    8. selector:
    9. matchLabels:
    10. app: node
    11. template:
    12. metadata:
    13. labels:
    14. app: node
    15. annotations:
    16. dapr.io/enabled: "true"
    17. dapr.io/app-id: "nodeapp"
    18. spec:
    19. containers:
    20. - name: node
    21. image: dapriosamples/hello-k8s-node
    22. ports:
    23. - containerPort: 3000

    If your pod spec template is annotated correctly and you still don’t see the sidecar injected, make sure Dapr was deployed to the cluster before your deployment or pod were deployed.

    If this is the case, restarting the pods will fix the issue.

    If you are deploying Dapr on a private GKE cluster, sidecar injection does not work without extra steps. See Setup a Google Kubernetes Engine cluster.

    In order to further diagnose any issue, check the logs of the Dapr sidecar injector:

    1. kubectl logs -l app=dapr-sidecar-injector -n dapr-system

    Note: If you installed Dapr to a different namespace, replace dapr-system above with the desired namespace

    My pod is in CrashLoopBackoff or another failed state due to the daprd sidecar

    If the Dapr sidecar (daprd) is taking too long to initialize, this might be surfaced as a failing health check by Kubernetes.

    If your pod is in a failed state you should check this:

    1. kubectl describe pod <name-of-pod>

    You might see a table like the following at the end of the command output:

    The message Container daprd failed liveness probe, will be restarted indicates at the Dapr sidecar has failed its health checks and will be restarted. The messages Readiness probe failed: Get http://10.244.1.10:3500/v1.0/healthz: dial tcp 10.244.1.10:3500: connect: connection refused and Liveness probe failed: Get http://10.244.1.10:3500/v1.0/healthz: dial tcp 10.244.1.10:3500: connect: connection refused show that the health check failed because no connection could be made to the sidecar.

    The most common cause of this failure is that a component (such as a state store) is misconfigured and is causing initialization to take too long. When initialization takes a long time, it’s possible that the health check could terminate the sidecar before anything useful is logged by the sidecar.

    To diagnose the root cause:

    • Significantly increase the liveness probe delay - link
    • Set the log level of the sidecar to debug -
    • Watch the logs for meaningful information - link

    I am unable to save state or get state

    To check, use kubectl get a list of components:

    1. kubectl get components

    If there isn’t a state store component, it means you need to set one up. Visit here for more details.

    If everything’s set up correctly, make sure you got the credentials right. Search the Dapr runtime logs and look for any state store errors:

    1. kubectl logs <name-of-pod> daprd

    I am unable to publish and receive events

    Have you installed an Dapr Message Bus in your cluster?

    To check, use kubectl get a list of components:

    1. kubectl get components

    If there isn’t a pub/sub component, it means you need to set one up. Visit here for more details.

    If everything is set up correctly, make sure you got the credentials right. Search the Dapr runtime logs and look for any pub/sub errors:

    Check that there’s only one installation of the Dapr Operator in your cluster. Find out by running

    1. kubectl get pods -l app=dapr-operator --all-namespaces

    If two pods appear, delete the redundant Dapr installation.

    I’m getting 500 Error responses when calling Dapr

    This means there are some internal issue inside the Dapr runtime. To diagnose, view the logs of the sidecar:

    1. kubectl logs <name-of-pod> daprd

    I’m getting 404 Not Found responses when calling Dapr

    This means you’re trying to call an Dapr API endpoint that either doesn’t exist or the URL is malformed. Look at the Dapr API reference and make sure you’re calling the right endpoint.

    I don’t see any incoming events or calls from other services

    Have you specified the port your app is listening on? In Kubernetes, make sure the annotation is specified:

    1. annotations:
    2. dapr.io/enabled: "true"
    3. dapr.io/app-id: "nodeapp"
    4. dapr.io/app-port: "3000"

    If using Dapr Standalone and the Dapr CLI, make sure you pass the --app-port flag to the dapr run command.

    You might also want to look at error logs from your own process. If running on Kubernetes, find the pod containing your app, and execute the following:

    If running in Standalone mode, you should see the stderr and stdout outputs from your app displayed in the main console session.

    I’m getting timeout/connection errors when running Actors locally

    Each Dapr instance reports it’s host address to the placement service. The placement service then distributes a table of nodes and their addresses to all Dapr instances. If that host address is unreachable, you are likely to encounter socket timeout errors or other variants of failing request errors.

    Unless the host name has been specified by setting an environment variable named DAPR_HOST_IP to a reachable, pingable address, Dapr will loop over the network interfaces and select the first non-loopback address it finds.

    As described above, in order to tell Dapr what the host name should be used, simply set an environment variable with the name of DAPR_HOST_IP.

    The following example shows how to set the Host IP env var to 127.0.0.1:

    Note: for versions <= 0.4.0 use HOST_IP

    1. export DAPR_HOST_IP=127.0.0.1

    None of my components are getting loaded when my application starts. I keep getting “Error component X cannot be found”

    This is usually due to one of the following issues

    • You may have defined the NAMESPACE environment variable locally or deployed your components into a different namespace in Kubernetes. Check which namespace your app and the components are deployed to. Read for more information.
    • You may have not provided a --components-path with the Dapr run commands or not placed your components into the default components folder for your OS. Read define a component for more information.
    • You may have a syntax issue in component YAML file. Check your component YAML with the component .

    Service invocation is failing and my Dapr service is missing an appId (macOS)

    Some organizations will implement software that filters out all UPD traffic, which is what mDNS is based on. Mostly commonly, on MacOS, Microsoft Content Filter is the culprit.

    In order for mDNS to function properly, ensure Micorosft Content Filter is inactive.

    • Open a terminal shell.
    • Enter your account password.

    Microsoft Content Filter is disabled when the output is “Success”.

    Some organizations will re-enable the filter from time to time. If you repeatedly encounter app-id values missing, first check to see if the filter has been re-enabled before doing more extensive troubleshooting.

    Last modified September 17, 2021 :