Django.db.utils.OperationalError: could not translate host name "db" to address: Temporary failure in name resolution on highload

I have the django project which works with PostGresql db, both in docker containers. It works Ok, but on highload sometimes gives the django.db.utils.OperationalError: could not translate host name "db" to address: Temporary failure in name resolution error. Is there a way to tune the django db connector for more retries or more timeout to solve these case?

Back to Top