Increase redo log capacity.

This commit is contained in:
2024-02-06 05:22:36 +00:00
parent e32877da42
commit 813e987904

View File

@@ -19,6 +19,10 @@ job "mysql" {
config { config {
image = "mysql:8.3" image = "mysql:8.3"
args = [
# 200M, up from default of 100M to see if it helps with running out and crashing (glusterfs weirdness suspected)
"--innodb-redo-log-capacity=209715200",
]
ports = ["db"] ports = ["db"]
volumes = [ volumes = [
"/data/compute/appdata/mysql:/var/lib/mysql", "/data/compute/appdata/mysql:/var/lib/mysql",