-
Notifications
You must be signed in to change notification settings - Fork 859
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQS client async requests leaking HttpWebRequest objects #1808
Comments
Might be related to #1602 |
@ashishdhingra, it might be a contributing factor but if so, a very minor one. Don’t get me wrong, if this leak exists, it is vital that it is plugged. If anything, it’s further evidence that the .NET SQS client is dodgy and needs re-engineering. The performance issues identified in #1602 are a result of the underlying/fundamental design of the .NET SQS client, which makes heavy use of string concatenation, which by its nature is going to be EXTREMELY heap allocation heavy. i.e., the performance issues identified in #1602 are (from my analysis) primarily a result of a ludicrous amount of heap allocation and memory copying. You could at least consider using a StringBuilder and then pooling the StringBuilder instances. That would make a dramatic improvement in performance. But that still wouldn’t be the right answer. I recommend you look into the high-performance messaging transport work done with System.IO.Pipelines and its application in ASP.NET Core, as well as with the .NET gRPC transport developed by James Newton-King. I’d also suggest reaching out to David Fowler (Microsoft) to take advantage of the work he’s been doing with “project bedrock”, for which new APIs are apparently slated for .NET 6 in November. |
David Fowler has a blog post explaining the work they did with System.IO.Pipelines here. |
By the way @ashishdhingra, I’m thrilled that #1602 is still at least visible to AWS, as evidenced by your referencing it above. It would be very much appreciated if someone from AWS could respond to my query for a status update in issue #1602. |
We have noticed this issue has not received attention in 1 year. We will close this issue for now. If you think this is in error, please feel free to comment and reopen the issue. |
Description
I'm using the AmazonSQSClient to send and receive (via long-polling) messages. My (simple) app sends a message once a minute to a queue, and sits long-polling another queue for incoming messages. I am seeing memory usage increase slowly while running, from c.20MB on app startup to c.160MB after 48 hours of operation. All my app is doing is this SQS message queue interaction.
Reproduction Steps
Instantiate the client:
Code executed on a timer to send a message:
Method to receive messages from a queue. This is actually called by a timer rather than in a loop so I can back off after errors.
Logs
Running in debug (in VS 2019 on Win 10) does not show increasing memory to the same level so this is hard to troubleshoot.
Running Release builds (Server 2012 R2) shows increasing memory. I dumped the memory to PerfView after running my app for 48 hours. During this time my app has been doing nothing but the SQS client calls, effectively it is idling, and it has received no messages from the SQS queue. The dump shows:
All those HttpWebRequests seem to be referenced from within the AWS SDK:
Environment
Resolution
I am far from an expert in analyzing memory dumps. To me, this looks like the SDK is not disposing of HttpWebRequest objects after they're finished with. That would explain the increasing memory. But I could be reading the dump incorrectly.
I can't see any .Dispose() method on the ReceiveMessageRequest, ReceiveMessageResponse or SendMessageResponse classes, so I don't there's anything I can do to clean up after a message request returns.
This is a 🐛 bug-report
The text was updated successfully, but these errors were encountered: