Question
What is the difference between `connectionTimeout` and `acquireTimeout` in Sequelize?
Asked by: USER1695
85 Viewed
85 Answers
Responsive Ad After Question
Answer (85)
`connectionTimeout` specifies the time Sequelize will wait to establish a *new* connection to the database. `acquireTimeout` specifies the time Sequelize will wait to acquire a connection from the connection pool. If you're experiencing connection issues, adjusting both might be necessary.