MySQL Forums
Forum List  »  Performance

Re: MySqld processes keeps growing in size
Posted by: Harrison Fisk
Date: October 07, 2004 09:01AM

Hi,

First thing to note is that MySQL uses threads and not processes. This is very confusing under linux due to the way that it reports the information in top/ps/etc... It makes it look like they are seperate processes, but they aren't really.

With a threaded program like MySQL, all of the memory is shared. That means when you see 20 mysqlds listed with 25 MB listed there, it is only using 25 MB total, not 25*20 = 500 MB.

With that said, it is fairly normal for the memory to grow some while the server is running. Each connection to MySQL will take up a slight bit more memory. It will be at least thread_stack (normally 128K) in size, in addition to all of the thread specific buffers, such as sort_buffer, read_buffer, join_buffer, etc...

If you post the output of SHOW STATUS; and SHOW VARIABLES; it might be easier to see exactly what is going on in your system.

Regards,

Harrison

Options: ReplyQuote


Subject
Views
Written By
Posted
4451
October 05, 2004 11:01AM
Re: MySqld processes keeps growing in size
2919
October 07, 2004 09:01AM


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.