Puppet Class: swift::memcache
- Defined in:
- manifests/memcache.pp
Overview
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Class: swift::memcache
This class creates a memcache configuration file
Parameters
- memcache_servers
-
You can use this single conf file instead of having memcache_servers set in several other conf files under [filter:cache] for example. You can specify multiple servers separated with commas, as in: 10.1.2.3:11211,10.1.2.4:11211 Default to [‘127.0.0.1:11211’]
- memcache_serialization_support
-
Sets how memcache values are serialized and deserialized: 0 = older, insecure pickle serialization 1 = json serialization but pickles can still be read (still insecure) 2 = json serialization only (secure and the default) To avoid an instant full cache flush, existing installations should upgrade with 0, then set to 1 and reload, then after some time (24 hours) set to 2 and reload. In the future, the ability to use pickle serialization will be removed. Default to $facts
- memcache_max_connections
-
Sets the maximum number of connections to each memcached server per worker Default to $facts
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'manifests/memcache.pp', line 62
class swift::memcache (
$memcache_servers = ['127.0.0.1:11211'],
$memcache_serialization_support = $facts['os_service_default'],
$memcache_max_connections = $facts['os_service_default'],
$connect_timeout = $facts['os_service_default'],
$pool_timeout = $facts['os_service_default'],
$tries = $facts['os_service_default'],
$io_timeout = $facts['os_service_default'],
) {
include swift::deps
include swift::params
file { '/etc/swift/memcache.conf':
ensure => file,
owner => $::swift::params::user,
group => $::swift::params::group,
mode => '0640',
}
swift_memcache_config {
'memcache/memcache_servers': value => join(any2array($memcache_servers), ',');
'memcache/memcache_serialization_support': value => $memcache_serialization_support;
'memcache/memcache_max_connections': value => $memcache_max_connections;
'memcache/connect_timeout': value => $connect_timeout;
'memcache/pool_timeout': value => $pool_timeout;
'memcache/tries': value => $tries;
'memcache/io_timeout': value => $io_timeout;
}
}
|