de97ef305a
Currently gnocchi metricd is really slow making some tests timeout, because the tooz backend is mysql. And the futur autoscaling will reach the max connections of mysql by creating many tooz locks. This change switches to redis, this is one of the recommended backend to use (mysql is not). Change-Id: Iae81848e883f74b7f8f8f4cad58c2168e01b7321
8 lines
158 B
Puppet
8 lines
158 B
Puppet
class openstack_integration::redis {
|
|
include ::openstack_integration::config
|
|
|
|
class { '::redis':
|
|
bind => $::openstack_integration::config::host
|
|
}
|
|
}
|