Ingestion failed from AWS S3 due to error "java.net.SocketException: Connection reset"

Follow

Comments

1 comment

  • creigelde

    Connection reset simply means that a TCP RST was received. This happens when your peer receives data that it can't process, and there can be various reasons for that. The simplest is when you close the socket, and then write more data on the output stream. By closing the socket, you told your peer that you are done talking, and it can forget about your connection. When you send more data on that stream anyway, the peer rejects it with an RST to let you know it isn't listening.

    0
    Comment actions Permalink

Please sign in to leave a comment.