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
Upstream issue reported at PomeloFoundation/Pomelo.EntityFrameworkCore.MySql#633
Insert/Update queries that use Batching in EF Core used to consume ~4MiB of memory are now consuming 2000-5000MiB of memory.
Mitigation was to downgrade from 0.42.2 to 0.42.1: PomeloFoundation/Pomelo.EntityFrameworkCore.MySql#638
Possible root cause commits solely based on the version number are these 2:
The text was updated successfully, but these errors were encountered:
The excess memory usage appears to be related to ResizableArray:
ResizableArray
Sorry, something went wrong.
@caleblloyd I'll ship a fix for this as soon as the Appveyor build stops having spurious failures.
Fix unbounded memory growth.
4d43f06
Before, any call to resize would always double the size of the array.
Fixed in 0.42.3.
bgrainger
No branches or pull requests
Upstream issue reported at PomeloFoundation/Pomelo.EntityFrameworkCore.MySql#633
Insert/Update queries that use Batching in EF Core used to consume ~4MiB of memory are now consuming 2000-5000MiB of memory.
Mitigation was to downgrade from 0.42.2 to 0.42.1: PomeloFoundation/Pomelo.EntityFrameworkCore.MySql#638
Possible root cause commits solely based on the version number are these 2:
The text was updated successfully, but these errors were encountered: