我对 mod_cache 越来越疯狂了!
我目前的设置:
Ubuntu 上的 Apache 2.4:
- mpm_worker
- mod_jk
- mod_cache
- mod_cache_disk
- mod_expires
- mod_deflate
HTTP 和 HTTPS 请求由 modjk 平衡到 5 个 Tomcat AppServer。我想缓存 Tomcat 实例提供的媒体资产,但在使用 mod_cache 时遇到了问题。
我当前的缓存配置:
CacheRoot /srv/volatile/cache
CacheDirLevels 3
CacheDirLength 2
CacheEnable disk /medias
# Currently active:
CacheQuickHandler off
CacheLock on
CacheLockPath /tmp/mod_cache-lock
CacheLockMaxAge 5
CacheIgnoreHeaders Set-Cookie
# This is another configuration i tried:
#CacheIgnoreNoLastMod On
#CacheIgnoreCacheControl On
#CacheIgnoreQueryString On
#CacheIgnoreHeaders Set-Cookie
我检查了很多教程和指南,但没有成功。
Apache 可以很好地处理第一个请求,以下请求失败并出现奇怪的错误:
Recalled cached URL info header https://...
Recalled headers for URL https://...
Adding CACHE_SAVE filter for /medias...
Adding CACHE_REMOVE_URL filter for /medias...
cache: /media... responded with an uncacheable 304, retrying the request. Reason: contradiction: 304 Not Modified, but Content-Length modified
cache: Removing url https://
Deleting /srv/volatile/cache/.../.header from cache.
Deleting /srv/volatile/cache/.../.data from cache.
Deleting directory /srv/volatile/cache/.../7n from cache.
URL https://... failed the size check (0 < 1)
我认为这可能是一个负载平衡问题,因为 walk 抛出了多个节点或类似的东西,但行为不是确定性的。使用 apache-bench 和 jmeter 进行的测试显示 60-70% 的请求失败,因此并非每个 X 请求都失败了。
如果设置了CacheIgnoreCacheControl On选项,请求抛出 jmeter 和 apache-bench 没有失败,但访问抛出浏览器失败。
有人知道吗?
谢谢陶兰特