Lock wait timeout
If a process running in your application acquired a lock from MySQL for a long period of time, you receive MySQL error messages like this:- There are multiple places acquiring locks in different order. For example, code path 1 first locks record A and then locks record B, while code path 2 first locks record B and then locks record A.
- There is a long-running background process executed by your application that holds the lock until it ends.
SHOW FULL PROCESSLIST \G to list DB queries waiting for locks.
To determine where to debug, find output like the following:
ps aufx on your application container.
Make sure that locks are acquired in a pre-defined order and released as soon as possible.
Definer/invoker of view lack rights to use them
There is a single MySQL user, so you cannot use the “DEFINER” Access Control mechanism for Stored Programs and Views. When creating aVIEW, you may need to explicitly set the SECURITY parameter to INVOKER:
Server has gone away
Disk space issues
Errors such asPDO Exception 'MySQL server has gone away' are usually the result of exhausting your available disk space.
Get an estimate of current disk usage using the CLI command upsun db:size.
Note that this is an estimate, not an exact value.
Allocate more space to the service by running the upsun resources:set command.
For more information, see how to manage resources.
As table space can grow rapidly,
set your database mount size to twice the size reported by the db:size command.
Consider adding a low-disk warning
to get notified about low disk space before it becomes an issue.
Packet size limitations
MySQL server has gone away errors may be caused by the size of the database packets.
If so, the logs may show warnings like Error while sending QUERY packet before the error.
One way to resolve the issue is to use the max_allowed_packet parameter.
Worker timeout
MySQL server has gone away errors may be caused by server timeouts.
MySQL has a built-in timeout for idle connections, which defaults to 10 minutes.
Most typical web connections end long before that’s ever approached,
but a long-running worker may idle and not need the database for longer than the timeout, leading to a “server has gone away” message.
The best approach is to wrap your connection logic in code that detects a “server has gone away” exception
and tries to re-establish the connection.
Alternatively, if your worker is idle for too long it can self-terminate.
Upsun automatically restarts the worker process and the new process can establish a new database connection.
Too many connections
You may get the following error message:Error 1040: Too many connections.
A common way to solve this issue is to increase the max_connections property in your MariaDB service configuration.
However, on Upsun, you cannot configure max_connections, as it is calculated automatically based on available memory.
The max_connections property cannot be configured in Upsun service configurations, nor can it be influenced by any other config. It is calculated automatically based on available container memory and increases automatically when the container size increases.
How it works
The following formula determinesmax_connections for a given container:
size depends on its container profile.
For example, MariaDB has a HIGH_MEMORY container profile.
For --size mariadb:1, this means 1 CPU and 2432 MB of memory.
Using the configuration above, where --size mariadb:1 is 2432 MB, the calculation becomes:
Additionally,
max_connections has a minimum value of 15 and a maximum value of 500.
If the result is less than 15, it is set to 15.
If the result is greater than 500, it is capped at 500.