您正在查看 Apigee Edge 說明文件。
前往 Apigee X 說明文件。 info
問題
您可能會看到來自路由器的錯誤,且在追蹤記錄中看不到 429
,因為要求並未傳送至訊息處理器。直接呼叫路由器本身,也會傳回 429
。
錯誤訊息
<html> <head> <title>429 Too Many Requests</title> </head> <body> <center> <h1>429 Too Many Requests</h1> </center> <hr> <center>server</center> </body> </html>
可能的原因
一般來說,nginx 設定檔的設定為 conf_load_balancing_load.balancing.driver.nginx.limit_conn=5000
,這可能會導致傳入連線過低。
診斷
-
使用下列指令檢查 nginx 路由器的預設限制:
/opt/apigee/apigee-service/bin/apigee-service edge-router configure -search conf_load_balancing_load.balancing.driver.nginx.limit_conn
-
檢查虛擬主機
access_log
項目是否有429
錯誤,並確認這些錯誤並非來自上游訊息處理器,而是直接來自路由器:cd /opt/apigee/var/log/edge-router/nginx/ grep "429 " org~env-port_access_log
解析度
- 使用
ssh
指令,逐一連線至路由器節點。 -
開啟下列檔案 (如果不存在,請建立):
/opt/apigee/customer/application/router.properties
-
新增下列程式碼:
conf_load_balancing_load.balancing.driver.nginx.limit_conn=25000
- 儲存檔案。
-
請確認檔案擁有
apigee:apigee:
的擁有權sudo chown apigee:apigee router.properties
-
重新啟動路由器:
/opt/apigee/apigee-service/bin/apigee-service edge-router restart
-
請使用下列指令驗證,確認已設定屬性:
/opt/apigee/apigee-service/bin/apigee-service edge-router configure -search conf_load_balancing_load.balancing.driver.nginx.limit_conn
- 重複執行每個路由器的步驟。