diff options
author | Alexey Botchkov <holyfoot@mysql.com> | 2009-06-04 19:37:20 +0500 |
---|---|---|
committer | Alexey Botchkov <holyfoot@mysql.com> | 2009-06-04 19:37:20 +0500 |
commit | 2f37188dc7b6ee31537b8c009052e89d15b3c556 (patch) | |
tree | 504acb9b573613b2b649f0e8496ba1bb079a265a /support-files | |
parent | c5280417bfa681e8376196ca5d643adecd107720 (diff) | |
download | mariadb-git-2f37188dc7b6ee31537b8c009052e89d15b3c556.tar.gz |
Bug#44470 innodb_file_io_threads precludes mysql from starting
the innodb_file_io_threads option isn't present here.
Changed with the innodb_read/write_io_threads
per-file comments:
support-files/my-innodb-heavy-4G.cnf.sh
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/my-innodb-heavy-4G.cnf.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/support-files/my-innodb-heavy-4G.cnf.sh b/support-files/my-innodb-heavy-4G.cnf.sh index 60b8138880e..3601812934d 100644 --- a/support-files/my-innodb-heavy-4G.cnf.sh +++ b/support-files/my-innodb-heavy-4G.cnf.sh @@ -397,9 +397,10 @@ innodb_data_file_path = ibdata1:10M:autoextend #innodb_data_home_dir = <directory> # Number of IO threads to use for async IO operations. This value is -# hardcoded to 4 on Unix, but on Windows disk I/O may benefit from a +# hardcoded to 8 on Unix, but on Windows disk I/O may benefit from a # larger number. -innodb_file_io_threads = 4 +innodb_write_io_threads = 8 +innodb_read_io_threads = 8 # If you run into InnoDB tablespace corruption, setting this to a nonzero # value will likely help you to dump your tables. Start from value 1 and |