puppet-openstack-integration/manifests/redis.pp
Mehdi Abaakouk de97ef305a gnocchi: use redis as coordination url
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
2017-05-04 11:53:03 +02:00

8 lines
158 B
Puppet

class openstack_integration::redis {
include ::openstack_integration::config
class { '::redis':
bind => $::openstack_integration::config::host
}
}