For a long time I have been running into problems with Django connection errors when running a database query after a long idle period. This does not affect website per-se because connections last a very short time but for batch processes where there is a long interval between database access, Django does not detect that database has dropped the connection and raises an error.
Which really should not be happening because my database connection settings includes:
'CONN_MAX_AGE': 3500, # 3500 seconds because wait_timeout = 3600 in my.cnf