- 그냥 늘리고 restart
개발 노트, SQLAlchemy를 사용하면서 MySQL Connection이 끊기는 문제
MySQL 로의 요청이 있을 경우 연결을 위한 프로세스가 생성되고 다시 요청을 하기 전까지 sleep 상태로 세션이 유지된다. 이 때 wait _ timeout에 지정된 시간 동안 재요청이 없을 경우 MySQL에서 해당 세션의 연결을 끊어버린다.
https://yongho1037.tistory.com/569

Encoding error with sqlalchemy and postgresql
Asked I'm using pyramid for a web application with a postgres database, wtforms, sqlalchemy and jinja2 and I'm having this error when the application try to get the issues types from database to fill a select field with wtforms: Error: 'ascii' codec can't decode byte 0xc3 in position 5: ordinal
https://stackoverflow.com/questions/14783505/encoding-error-with-sqlalchemy-and-postgresql

Seonglae Cho