InterviewSolution
| 1. |
Why Do I See Multiple Processes For Mysqld? |
|
Answer» When using LinuxThreads, you should see a minimum of THREE mysqld(mysqld, also known as MySQL Server, is the main PROGRAM that does most of the work in a MySQL installation. MySQL Server manages access to the MySQL DATA directory that contains databases and tables. The data directory is also the default location for other information such as log files and status files). processes running. These are in FACT threads. There is one thread for the LinuxThreads manager, one thread to handle CONNECTIONS, and one thread to handle alarms and signals. When using LinuxThreads, you should see a minimum of three mysqld(mysqld, also known as MySQL Server, is the main program that does most of the work in a MySQL installation. MySQL Server manages access to the MySQL data directory that contains databases and tables. The data directory is also the default location for other information such as log files and status files). processes running. These are in fact threads. There is one thread for the LinuxThreads manager, one thread to handle connections, and one thread to handle alarms and signals. |
|