got a bit of a strange issue occurring that looks like Linkerd is swallowing some requests, and not actually erroring out the call so we just sit hanging and the call never completes from our frontend and linkerd tap.
We are running on version 25.4.4 (deployed via helm chart, and did try upgrading to 25.11.1 with no luck
Sending a request from our frontend, which makes a call to a backend service within K8s. We can see via the linkerd-viz tap section that the call is being passed to the correct pod (via Header HTTP Routing) however it never actually gives us any status on the call, and never looks like it makes it to the pod? Heres a screenshot from tap
We put the destination pods in debug log level, and managed to get this out of it when the call is made, and we see it being cancelled by linkerd, but nothing else happens and the call just hangs forever
Hey @KrisM4c! I think we need to know a bit more about what’s going on exactly. Is your frontend another meshed workload? Are there authorization policies, HTTPRoutes, etc., in play? Do I correctly understand that your frontend workload is making an HTTP call that just hangs forever? Does it ever time out? What exactly does the frontend see?
As it stands we don’t really have enough to figure out where to look, so it’d be great to get more information.
HTTPRoutes are in place for Header-Based Routing (If header x-branch-name exists, send to service-a-xxx, else send to service-a-primary)
It never times out, and hangs forever until the user cancels the call by stopping the page loading.
All the frontend (user) sees is the page forever loading, and the network tab in the browser staying in a pending state until page load is manually stopped.