适用于私有云的 Edge v. 4.17.09
边缘路由器和消息处理器对请求/响应的大小预定义了限制 标头和行大小
配置路由器的限制
对于路由器,请修改以下属性 在 /opt/apigee/customer/application/router.properties 更改默认值:
# Request buffers conf_load_balancing_load.balancing.driver.large.header.buffers=8 16k # Response buffers conf_load_balancing_load.balancing.driver.proxy.buffer.size=64k
如果该文件不存在,请创建它。
对于 conf_load_balancing_load.balancing.driver.large.header.buffers
,第一个参数
用于指定缓冲区的数量,而秒则指定每个缓冲区的大小。
缓冲区会动态分配,并在使用后释放。
只有请求标头超过 1 KB 时才会使用这些设置。
对于标头请求 URI 小于 1 KB 的请求,系统甚至不会使用较大的缓冲区。
对于 conf_load_balancing_load.balancing.driver.proxy.buffer.size
,请指定响应缓冲区的大小。
边缘路由器使用 Nginx 实现。如需详细了解这些属性,请参阅:
- conf_load_balancing_load.balancing.driver.large.header.buffers
- conf_load_balancing_load.balancing.driver.proxy.buffer.size
更改这些属性后,必须重启路由器:
> /opt/apigee/apigee-service/bin/apigee-service edge-router restart
配置消息处理器的限制
对于处理向后端服务传出请求的消息处理器,请修改 /opt/apigee/customer/application/message-processor.properties 中的以下属性 更改这些默认值:
conf/http.properties+HTTPRequest.line.limit=7k conf/http.properties+HTTPRequest.headers.limit=25k conf/http.properties+HTTPResponse.line.limit=2k conf/http.properties+HTTPResponse.headers.limit=25k
如果该文件不存在,请创建它。
更改以下属性后,必须重新启动消息处理器:
> /opt/apigee/apigee-service/bin/apigee-service edge-message-processor restart