Rejecting queries when server is overloaded

Hi folks,

Im trying to see if there is a feature within mysql/percona/mariadb in general that does this kind of feature to reject queries when a service is overloaded. Similar to back pressure system.

TIA

1 Like

Hi @elisia,
When MySQL reaches max connections, it will simply error out saying that max connections has been reached. There are no queuing capabilities built-in.

1 Like

Cool. thank you @matthewb

1 Like