vote up 0 vote down star

Hi,

I would like to know how it is possible to set an upper limit on the amount of memory MySQL uses on a Linux server. Right now, MySQL will keep taking up memory with every new query requested so that it eventually runs out of memory. Is there a way to place a limit so that no more than that amount is used by MySQL?

Thanks in advance, Timothy

flag
Google fails me for this one. – Chacha102 Jul 24 at 16:52

1 Answer

vote up 0 vote down

Database memory usage is a complex topic. The MySQL Performance Blog does a good job of covering your question, and lists many reasons why it's hugely impractical to "reserve" memory.

If you really want to impose a hard limit, you could do so, but you'd have to do it at the OS level as there is no built-in setting. In linux, you could utilize ulimit, but you'd likely have to modify the way MySQL starts in order to impose this.


The best solution is to tune your server down, so that a combination of the usual MySQL memory settings will result in generally lower memory usage by your MySQL installation. This will of course have a negative impact on the performance of your database, but some of the settings you can tweak in my.ini are:

key_buffer_size
query_cache_size
query_cache_limit
table_cache
max_connections
tmp_table_size
innodb_buffer_pool_size

I'd start there and see if you can get the results you want. There are many articles out there about adjusting MySQL memory settings.

link|flag
Hi! Thanks for your answer. I have noticed that the equation that people quote is the following: key_buffer_size+(read_buffer_size+sort_buffer_size)*max_connections=Total Memory. I have set the following: key_buffer_size=128M, read_buffer_size=1M, sort_buffer_size=2M, max_connections=120, and the total memory on the server is 512M. However, after many queries, the free memory has gone as low as 12M and would probably continue to go down with further usage. Is there a reason why this is so and can it be prevented? Thanks! – Timothy Mifsud Jul 25 at 15:22
Or maybe I need to take into consideration not the total memory on the server (512M) but the free memory (i.e. memory available after loading all OS related and other programs)? – Timothy Mifsud Jul 25 at 16:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.