Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Cannot Reproduce
-
2.0.5
-
None
Description
MariaDB Node JS connector pool returns "read ECONNRESET Error" randomly with the compress pool option set to true. Here are the options that I used to create the pool
let options = {
|
host: <host>,
|
acquireTimeout: 10000,
|
port: <port>,
|
database: <db>,
|
user: <user>,
|
password: <pswd>,
|
compress: true,
|
namedPlaceholders: true,
|
connectionLimit: 10,
|
minDelayValidation: 2000
|
}
|
 |
let pool = mariaDb.createPool(options)
|
|
When the "compress" is set to false, the error is not seen. I am not sure if it is related.