Which method will reduce the number of file handles in use?

While reviewing the MySQL error log, you see occasions where MySQL has exceeded the number
of file handles allowed to it by the operating system.
Which method will reduce the number of file handles in use?

While reviewing the MySQL error log, you see occasions where MySQL has exceeded the number
of file handles allowed to it by the operating system.
Which method will reduce the number of file handles in use?

A.
Disconnecting idle localhost client sessions

B.
Implementing storage engine data compression options

C.
Relocating your data and log files to separate storage devices

D.
Activating the MySQL Enterprise thread pool plugin

Explanation:



Leave a Reply 6

Your email address will not be published. Required fields are marked *


dp

dp

Should be A, since one mysql table is mapping to one file, disconnect the idle session will release file handlers in use.

vasben

vasben

It’s A becouse connections from localhost are made by the socket and every connection is an open file.

Thiago

Thiago

D

Jdo

Jdo

+1 – D. Best answer

Some application context has to be considered in disconnecting “idle” connections.