diff options
author | heikki@hundin.mysql.fi <> | 2003-05-03 19:46:03 +0300 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2003-05-03 19:46:03 +0300 |
commit | 33e1b9398a2d4c1b7b95c985d570ad6132768065 (patch) | |
tree | 587aa88530b3685b2dba726fd89c017c4f51596e /innobase | |
parent | 971f770946419091a7a8a474679c79a180ab8cc3 (diff) | |
download | mariadb-git-33e1b9398a2d4c1b7b95c985d570ad6132768065.tar.gz |
srv0srv.c:
Clean up the working of the main thread; add a tunable parameter srv_max_buf_pool_modified_pct which can be used to make the flush phase in shutdown quicker
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/srv/srv0srv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/srv/srv0srv.c b/innobase/srv/srv0srv.c index 97841056b1e..75742d8f670 100644 --- a/innobase/srv/srv0srv.c +++ b/innobase/srv/srv0srv.c @@ -162,7 +162,7 @@ in the buffer pool to all database pages in the buffer pool smaller than the following number. But it is not guaranteed that the value stays below that during a time of heavy update/insert activity. */ -ulint srv_max_buf_pool_modified_pct = 30; +ulint srv_max_buf_pool_modified_pct = 100; /* If the following is != 0 we do not allow inserts etc. This protects the user from forgetting the innodb_force_recovery keyword to my.cnf */ |