#2403 MySQL max_idle_time is 10 by default (#2405)

* #2403 MySQL max_idle_time is 10 by default

Signed-off-by: jinhai <hai.jin@zilliz.com>

* #2403 MySQL max_idle_time is 10 by default

Signed-off-by: jinhai <hai.jin@zilliz.com>
This commit is contained in:
Jin Hai 2020-05-22 14:35:11 +08:00 committed by GitHub
parent 34fdc00d19
commit 2c2e1bb8f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -6,13 +6,14 @@ Please mark all change in change log and use the issue from GitHub
## Bug
- \#2378 Duplicate data after server restart
- \#2399 The nlist set by the user may not take effect
- \#2403 MySQL max_idle_time is 10 by default
## Feature
- \#2363 Update branch version
- \#2381 Upgrade to faiss_1.6.3
## Improvement
- \#2370 Clean compile warning
- \#2381 Upgrade FAISS to 1.6.3
## Task

View File

@ -73,7 +73,7 @@ class MySQLConnectionPool : public mysqlpp::ConnectionPool {
int max_pool_size_;
unsigned int max_idle_time_ = 0; // 10 seconds
unsigned int max_idle_time_ = 10; // 10 seconds
};
} // namespace meta