Activity log for bug #1441522

Date Who What changed Old value New value Message
2015-04-08 09:16:20 Vlad Okhrimenko bug added bug
2015-04-08 09:16:26 Vlad Okhrimenko horizon: assignee Vlad Okhrimenko (vokhrimenko)
2015-04-08 10:12:31 Timur Sufiev horizon: status New Confirmed
2015-04-08 10:12:39 Timur Sufiev horizon: importance Undecided Medium
2015-04-08 14:43:40 OpenStack Infra horizon: status Confirmed In Progress
2015-04-08 15:06:58 Vlad Okhrimenko description Horizon uses memcached servers for caching and it connects to all of them directly. So if one of them is not responding, it may lead to delays in Horizon operations. Workaround: 1) Edit /etc/openstack-dashboard/local_settings file and temporarily remove the problem controller IP:PORT from LOCATION line in CACHE structure: CACHES = { 'default': { 'BACKEND' : 'django.core.cache.backends.memcached.MemcachedCache', 'LOCATION' : "127.0.0.3:11211;127.0.0.5:11211;127.0.0.6:11211" }, 2) Restart apache web server Horizon uses memcached servers for caching and it connects to all of them directly. So if one of them is not responding, it may lead to delays in Horizon operations. Workaround: 1) Edit /etc/openstack-dashboard/local_settings file and temporarily remove the problem controller IP:PORT from LOCATION line in CACHE structure: CACHES = {     'default': {         'BACKEND' : 'django.core.cache.backends.memcached.MemcachedCache',         'LOCATION' : "127.0.0.3:11211;127.0.0.5:11211;127.0.0.6:11211"     }, 2) Restart apache web server For reproduce: sudo apt-get install memcached pip install python-memcache (in venv) in local_settings: CACHES = { 'default': { 'BACKEND' : 'django.core.cache.backends.memcached.MemcachedCache', 'LOCATION' : "127.0.0.1:11211" }, after this memcache works good, then set 'LOCATION' to "127.0.0.0:11211" -- we get large delay time
2015-06-12 16:58:29 Sergii Golovatiuk bug task added puppet-openstack