适用于私有云的 Edge v4.19.01
Edge Router 和消息处理器对请求/响应标头大小和行大小有预定义的限制。
为路由器配置限制
对于路由器,请修改 /opt/apigee/customer/application/router.properties
中的以下属性以更改默认值:
# Request buffers # default: # conf_load_balancing_load.balancing.driver.large.header.buffers=8 16k # new value: conf_load_balancing_load.balancing.driver.large.header.buffers=8 32k # Response buffers # default: # conf_load_balancing_load.balancing.driver.proxy.buffer.size=64k # new value: conf_load_balancing_load.balancing.driver.proxy.buffer.size=128k
如果该文件不存在,请创建一个。
对于 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