Error : queue limit reached #2136
Unanswered
fabiokounang
asked this question in
Q&A
Replies: 1 comment 1 reply
-
The error is raised when you set Line 78 in 01f9b10 You need to check your logic and config to see why it happens - it must be a combination of low const pool = mysq.createPool({ connectionLimit: 2, queueLimint: 1 });
const results = Promise.all([
pool.query('select sleep 1'),
pool.query('select sleep 1'),
pool.query('select sleep 1'),
]); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using mysql2 and createPool connection.
all my query are using db.query('my query');
Is something wrong ? what did I miss ? please help. Thank you
Beta Was this translation helpful? Give feedback.
All reactions