Changing MySQL system variables (innodb_ft_min_token_size)
Hi! I want to change the
innodb_ft_min_token_size
system variable for improved search.
Here, https://docs.railway.app/databases/mysql#changing-system-variables, it is mentioned that changing system variables is not supported.
1. Is there any alternative solution? I would like to still host the database on Railway. Maybe combining the new docker image deploy with a volume?
2. Are there any plans to support natively changing MySQL system variables like the one I mentioned? And if so, what is the ETA?
Thanks!Solution:Jump to solution
docker image deploy or dockerfile deploy + volume will allow you to change practically anything you'd like about the database, so have at it!
7 Replies
Project ID:
N/A
N/A
Solution
docker image deploy or dockerfile deploy + volume will allow you to change practically anything you'd like about the database, so have at it!
Thanks @Brody.
Although I am not sure volumes are built for this, as the storage limit is quite low (10-50 GB as per the docs)?
volumes where actually built exactly for this, if you need more than 10gb of storage for your database, then youd want to upgrade to pro, then if you need more than 50gb of storage youd want to work something out with the team, im sure theyd have no problem bumping that limit for a legit use case
Ah ok, perfect - thanks Brody!
no problem!