MySQL Forums
Forum List  »  Newbie

Re: Why is mysql hoarding so much RAM?
Posted by: Peter Brawley
Date: December 02, 2021 08:09PM

Usually, innodb_buffer_pool_size should be about 75% of RAM available to MySQL, and if the value of ...

select round( sum(data_length+index_length)/1024/1024/1024, 2 ) as innoload
from information_schema.tables
where engine= 'innodb';

... is greater than 75% of RAM available to MySQL, consider adding RAM.

Options: ReplyQuote


Subject
Written By
Posted
Re: Why is mysql hoarding so much RAM?
December 02, 2021 08:09PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.