Update readme
This commit is contained in:
parent
ee2d8d51d4
commit
5cae98532a
1 changed files with 25 additions and 0 deletions
25
README.md
25
README.md
|
@ -191,6 +191,31 @@ Be sure that innodb_stats_on_metadata is disabled.
|
|||
set global innodb_stats_on_metadata = 0;
|
||||
```
|
||||
|
||||
Fixing sysctl configuration (/etc/sysctl.conf)
|
||||
--
|
||||
|
||||
It is a system wide setting: [Linux FS Kernel settings](https://www.kernel.org/doc/html/latest/admin-guide/sysctl/fs.html#id1)
|
||||
|
||||
You can check its values via:
|
||||
|
||||
```bash
|
||||
$ cat /proc/sys/fs/aio-*
|
||||
65536
|
||||
2305
|
||||
```
|
||||
|
||||
For example, to set the aio-max-nr value, add the following line to the /etc/sysctl.conf file:
|
||||
|
||||
```bash
|
||||
fs.aio-max-nr = 1048576
|
||||
```
|
||||
|
||||
To activate the new setting:
|
||||
|
||||
```bash
|
||||
$ sysctl -p /etc/sysctl.conf
|
||||
```
|
||||
|
||||
Specific usage
|
||||
--
|
||||
|
||||
|
|
Loading…
Reference in a new issue