Thundering herd is an issue common to webapp that rely on heavy caching where if lots of items expire at the same time due to a server restart or temporal event, then suddenly lots of calls will go to database at same time. This can even bring down the database in extreme cases. I wont go into much detail but the app need to do two things solve this issue.
1) Add consistent hashing to cache layer : This way when a memcache server is added/removed from the pool, entire cache is not invalidated. We use memcahe from both python and Java layer and I still have to find a consistent caching solution that is portable across both languages. hash_ring and spymemcached both use different points for server so need to read/test more.
2) Add a jitter to cache or randomise the expiry time: We expire long term cache records every 8 hours after that key was added and short term cache expiry is 2 hours. As our customers usually comes to work in morning and access the cloud file server it can happen that lots of them access at same time and populate short term cache and this cache may get invalidated at same time, causing lots of db access at same time. To avoid this we expire keys randomly between 2 hours and 2 hours 10 minutes.
1) Add consistent hashing to cache layer : This way when a memcache server is added/removed from the pool, entire cache is not invalidated. We use memcahe from both python and Java layer and I still have to find a consistent caching solution that is portable across both languages. hash_ring and spymemcached both use different points for server so need to read/test more.
2) Add a jitter to cache or randomise the expiry time: We expire long term cache records every 8 hours after that key was added and short term cache expiry is 2 hours. As our customers usually comes to work in morning and access the cloud file server it can happen that lots of them access at same time and populate short term cache and this cache may get invalidated at same time, causing lots of db access at same time. To avoid this we expire keys randomly between 2 hours and 2 hours 10 minutes.
Comments
Post a Comment