vote up 0 vote down star
1

how can one know that each process or a thread is consuming how much memory in MYSQL?

flag
I would guess this is system dependent. You might want to put the system you are using in case. – Arthur Thomas Sep 19 '08 at 0:11

2 Answers

vote up 1 vote down

Assuming you just want just the memory usage of the mysql server program.

On windows you can use Process Explorer

On linux you can use the top command.

  1. Use "ps -e" to find the pid of the mysql process
  2. Then use "top -p {pid}" where {pid} is the pid of the mysql process.
link|flag
vote up 0 vote down

on linux you can also use top|grep mysql to get a running report of the stats of the mysql process, 1 row per top refresh period.

link|flag

Your Answer

Get an OpenID
or

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