Skip to content

Review missing timeouts #603

@josecelano

Description

@josecelano

I've opened this issue to collect and track all past, current and future problems related to timeouts.

Recently we have had problems with the live demo because the http_health_check binary does not have a timeout. Healthchecks started by the docker daemon are waiting forever if they don't receive a response, consuming more and more resources until the container crashes.

There are more places where we could have such problems. I'm going to describe here some places potentially affected by this type of issue.

Potentially affected code

Healthcheck binary

It's used in the tracker but also in the Index.

It's currently being fixed:

Tracker API

It uses Axum. All services using Axum have the same problem. For more info see the issue opened in the Index. It applies the same here.

HTTP Tracker

It also uses Axum.

UDP Tracker

We do not use any framework. We handle requests directly with a loop.

  • We don't have timeouts.

  • If I'm not wrong all requests are executed sequentially. We don't use threads. If one request takes forever for some reason the server can not handle more requests and there is no timeout.

  • Add timeout to UDP tracker request processing #609

@da2ce7 is working on some improvements like:

  • Create a worker that can handle 50 requests at the most.
  • It spawns a new thread for each request.
  • It implements a graceful shutdown waiting for the active requests to finish when the application receives a halt signal.

I think he has not added yet the timeout feature.

By the way @WarmBeer since you are working on performance issues:

I wonder if improving the repository can improve the UDP tracker since requests are handled sequentially anyway or am I missing something @WarmBeer?

Tracker Checker

Conclusion

There might be other cases.

Relates to:

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    Status

    No status

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions