imsnif/bandwhich

Retry DNS only after timeout

Open

#127 aberto em 16 de jan. de 2020

Ver no GitHub
 (5 comments) (0 reactions) (0 assignees)Rust (237 forks)batch import
good first issuehelp wanted

Métricas do repositório

Stars
 (7.686 stars)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

Description

Right now, when we do our reverse-dns queries (getting the hostname of an ip address), if the request failed, we retry immediately. This can cause a lot of connections (also visible in the app!) to be opened if a request repeatedly fails.

It would be nice if we have some sort of progressive backoff mechanism for this... something like: wait for 1 second before retrying, then wait for 2, 4, etc.

Guia do colaborador