Set standalone mariadb innodb buffer pool to 4G

This increases the innodb buffer pool size from the default of
128M to 4G.  Some increase is necessary for creating large indexes,
but probably not this much.  Having a large pool allows for
significant performance improvement.  To that end, allocate half of
our RAM to this.

https://mariadb.com/kb/en/innodb-buffer-pool/#innodb_buffer_pool_size

Change-Id: I0a20cb2e11edc88dac6a55191a05637e7634773f
This commit is contained in:
James E. Blair 2024-04-04 09:58:15 -07:00
parent 81bcc41f70
commit 1a2e341fed

View File

@ -13,3 +13,4 @@ character-set-server = utf8mb4
collation-server = utf8mb4_bin
character_set_server = utf8mb4
collation_server = utf8mb4_bin
innodb_buffer_pool_size = 4294967296