Description
I'm trying to upload files from different clients to S3 concurrently. Most of the concurrent uploads finish without issues, but for a few uploads, the patch request returns a 408-time-out error after 3 mins. Node js server application has thrown this error below
{
"code": "ECONNRESET",
"name": "Error",
"message": "aborted",
"stack": "Error: aborted\n at connResetException (node:internal/errors:720:14)\n at abortIncoming (node:_http_server:766:17)\n at socketOnClose (node:_http_server:760:3)\n at Socket.emit (node:events:529:35)\n at Socket.emit (node:domain:489:12)\n at TCP. (node:net:350:12)"
}
I tried a fix for the issue #409 and even with the latest version, the issue still remains.
Even when closing the closing the client app during upload, the same error is thrown in the server application.
Fyi,
- Chunk size configured in the client - 50MB
- S3 part size configured in the node js app - 50MB
- Node js app is running as fargate service