HTTP 요청/응답 헤더 한도 설정

에지 라우터 및 메시지 프로세서에는 요청/응답 크기에 사전 정의된 한도가 있습니다. 지정할 수 있습니다.

라우터 제한 구성

라우터의 다음 속성을 수정합니다. /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의 경우 첫 번째 매개변수는 버퍼의 수를 지정하며, 초는 각 버퍼의 크기를 지정합니다. 버퍼는 동적으로 할당 및 사용 후 해제됩니다. 이 설정은 요청 헤더가 1KB 이상입니다. 헤더 요청 URI가 1KB 미만인 요청의 경우 큰 버퍼는 사용되지 않을 것입니다.

conf_load_balancing_load.balancing.driver.proxy.buffer.size의 경우 크기를 지정합니다. 응답 버퍼입니다.

에지 라우터는 Nginx를 사용하여 구현됩니다. 이러한 속성에 대한 자세한 내용은 다음을 참조하세요.

다음 속성을 변경한 후에는 라우터를 다시 시작해야 합니다.

/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