設定路由器或訊息處理器的郵件大小限制

Private Cloud v4.18.05 專用 Edge

為避免 Edge 發生記憶體問題,路由器和訊息處理器的訊息酬載大小限制為 10 MB。超出這些大小會導致 protocol.http.TooBigBody 錯誤。

使用下列屬性來變更路由器、訊息處理器或兩者皆有的限制。 這兩個屬性的預設值都是「10m」,對應的大小為 10MB:

  • conf_http_HTTPRequest.body.buffer.limit
  • conf_http_HTTPResponse.body.buffer.limit

如要設定這些屬性,請按照下列步驟操作:

  1. 在編輯器中開啟 router.properties 檔案或 message-processor.properties 檔案。如果檔案不存在,請建立檔案:
    vi /opt/apigee/customer/application/router.properties

    或是:

    vi /opt/apigee/customer/application/message-processor.properties
  2. 視需要設定屬性:
    conf_http_HTTPRequest.body.buffer.limit=15m
    conf_http_HTTPResponse.body.buffer.limit=15m
  3. 儲存變更。
  4. 請確認屬性檔案由「apigee」使用者擁有:
    chown apigee:apigee /opt/apigee/customer/application/router.properties

    或是:

    chown apigee:apigee /opt/apigee/customer/application/message-processor.properties
  5. 重新啟動 Edge 元件:
    /opt/apigee/apigee-service/bin/apigee-service edge-router restart

    或是:

    /opt/apigee/apigee-service/bin/apigee-service edge-message-processor restart