No problem with that. Even android smartphones do that too, to preserve internal storage flash wear. Process RAM is highly compressible by its nature in most scenarios.
i have many containers on my self-hosted mini-server, each of them has some kind of database, mostly mariadb too. Maybe it uses a little bit of ram, but most of it is static and can be easily swapped by the OS. Nothing to worry about tbh.
You can easily dΜΆoΜΆwΜΆnΜΆlΜΆoΜΆaΜΆdΜΆ ΜΆtΜΆhΜΆeΜΆ ΜΆrΜΆaΜΆmΜΆ enable zram on your KVM/QEMU vps by doing this:
modprobe zram
echo lz4 > /sys/block/zram0/comp_algorithm
echo 16G > /sys/block/zram0/disksize
mkswap --label zram0 /dev/zram0
swapon --priority 100 /dev/zram0
works 99% of the time. You can execute it in a script directly at startup.
default mysql installation is a bit resource consuming, so yeah, you have to fiddle with some configs to make it more memory efficient and then it will run even on 321 MB RAM VPS