Profiles¶
Charmed MySQL’s usage of resources depends on the chosen profile:
juju deploy mysql --config profile=<profile>
Profile values¶
Value |
Description |
Details |
---|---|---|
|
~75% of unit memory granted for MySQL |
|
|
|
You can also see all MySQL charm configuration options on Charmhub.
Change profile¶
To change the profile, use the juju config
command. For example:
juju deploy mysql --config profile=testing && \
juju config mysql profile=production
Juju constraints¶
Juju constraints allows setting RAM/CPU limits for units:
juju deploy mysql --constraints cores=8 mem=16G
Juju constraints can be set together with the charm profile:
juju deploy mysql --constraints cores=8 mem=16G --config profile=testing