Lambda Connection Issue

0

we are getting an error Error while making REST call. Retry: 0, Message: IOException: Connection reset by peer, StackTrace: [java.net.http/jdk.internal.net.http.HttpClientImpl.send(Unknown Source), java.net.http/jdk.internal.net.http.HttpClientFacade.send(Unknown Source), but some time it is giving 200 status

1 個回答
0

Hi there

The error "Connection reset by peer" implies that the Downstream Service (the one that the Lambda Function is making a call to) has abruptly aborted the connection in the midst of the connection. The "java.io.IOException: Connection reset by peer" is also a type of IO exception.

It is a response from the server that it is not going to process this request. When the application establishes a TCP connection with a peer in the network, if that peer closes the connection on the far end, it will throw "java.io.IOException: Connection reset by peer in Java".

The most common reasons for the "java.io.IOException: Connection reset by peer in Java" error:

  • The Downstream Service (the one that the Lambda Function is making a call to) has abruptly aborted the connection in the middle of a transaction.
  • The Downstream Service was unavailable.
  • There can be a problem with the PUT, POST, and GET requests.

The reasons are not limited to the above. Those errors need to be investigated from the perspective of the Downstream Service.

AWS
支援工程師
TheLich
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南