无法将Google Cloud CDN缓存与入口控制器,Transfer-Encoding标头一起使用

时间:2018-03-15 10:38:31

标签: google-cloud-platform google-kubernetes-engine transfer-encoding kubernetes-ingress google-cloud-cdn

我尝试将Google Cloud CDN配置为我的容器引擎项目。

遵循文档它具有Content-Length标头或Transfer-Encoding标头,以便进行缓存。

我的后端使用gzip压缩,所以我有Transfer-Encoding:chunked

问题是入口负载均衡器似乎删除了Transfer-encoding标头,因此我无法进行“缓存命中”

我使用“kubectl port-forward”将direclty连接到实例后端,并且我有Transfer-encoding标头。

但是当我连接到外部IP时,标题已消失。

这是我的入口配置

sql

这是我的部署配置

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: gateway-preprod3-ingress
  annotations:
    kubernetes.io/ingress.global-static-ip-name: gateway-preprod2-static-ip
spec:
  tls:
  - secretName: gateway-preprod-secret-2018-with-ca-7
  backend:
    serviceName: gateway-preprod
    servicePort: 80

相反,对于某些没有GZIP压缩的资源,给出了Content-length头,我有一个成功的“缓存命中”

kubernetes版本是1.7.12-gke.1

这是一个测试它的网址:https://preprod-writecontrol.ovh

1 个答案:

答案 0 :(得分:2)

我不确定您的回复为何Transfer-Encoding标头。此标头不应位于源(您的应用程序),并且通常由其他跃点添加,例如Cloud HTTP Load Balancer(= Ingress)等代理。

此处Transfer-Encoding的更多信息:https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Transfer-Encoding

我能够使用Content-Encoding标题让CDN使用GZIP响应:

首先阅读https://cloud.google.com/cdn/docs/caching处的缓存要求。您需要Content-Length和/或Cache-Control: public标头。因此,将这些标头编码到您的应用程序服务器中。

在Ingress创建的负载均衡器上启用CDN后,执行两个请求,如果您在第二个请求中看到Age标头(如下所示),则表示您的请求现在由CDN提供服务。

curl -vH Accept-Encoding:gzip 35.186.195.233
> [...]
>
< HTTP/1.1 200 OK
< Content-Encoding: gzip
< Date: Tue, 27 Mar 2018 19:38:20 GMT
< Content-Length: 87
< Content-Type: application/x-gzip
< Via: 1.1 google
< Cache-Control: max-age=600,public

��H����Q(�/�IQ�
* Connection #0 to host 35.186.195.233 left intact
K-*��ϳR0�3�3���/.�K�M�R�)+OM�55575��L�4ѭ�N+L���K��4A

第二个请求(注意Age标题):

$ curl -vH Accept-Encoding:gzip 35.186.195.233
[...]
>
< HTTP/1.1 200 OK
< Cache-Control: max-age=600,public
< Content-Encoding: gzip
< Date: Tue, 27 Mar 2018 19:42:01 GMT
< Content-Length: 87
< Content-Type: application/x-gzip
< Via: 1.1 google
< Age: 314
<
��H����Q(�/�IQ�
* Connection #0 to host 35.186.195.233 left intact
K-*��ϳR0�3�3���/.�K�M�R�)+OM�55575��L�4ѭ�N+L���K��4A