gpt4 book ai didi

c# - Entity Framework Core 在 sleep 状态下留下许多连接

转载 作者:行者123 更新时间:2023-12-04 11:34:49 26 4
gpt4 key购买 nike

我有一个使用 Entity Framework Core 的 .net 核心 API。数据库上下文在 startup.cs 中注册如下:

  services.AddDbContext<AppDBContext>(options =>
options.UseSqlServer(connectionString,
providerOptions => providerOptions.CommandTimeout(60)));
在我设置的连接字符串中
  Pooling=true;Max Pool Size=100;Connection Timeout=300
Controller 调用服务中的方法,服务又调用存储库中的 aysnc 方法以进行数据检索和处理。
如果在负载测试期间并发用户数低于 500,则一切正常。然而,超过这个数字,我开始看到很多超时过期错误。当我检查数据库时,没有死锁,但我可以看到超过 100 个处于 sleep 模式的连接(API 托管在两个 kubernetes pod 上)。我在测试过程中监控了这些连接,看起来不是重用当前的 sleep 连接,而是将新的连接添加到池中。我的理解是 Entity Framework 核心管理打开和关闭连接,但情况似乎并非如此。还是我错过了什么?

The error looks like this:

StatusCode":500,"Message":"Error:Timeout expired. The timeout periodelapsed prior to obtaining a connection from the pool. This may haveoccurred because all pooled connections were in use and max pool sizewas reached. Stack Trace:



Microsoft.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnectionowningConnection, TaskCompletionSource`1 retry, DbConnectionOptionsuserOptions, DbConnectionInternal oldConnection, DbConnectionInternal&connection)\n



Microsoft.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnectionouterConnection, DbConnectionFactory connectionFactory,TaskCompletionSource1 retry, DbConnectionOptions userOptions)\n at Microsoft.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource1retry, SqlConnectionOverrides overrides)\n atMicrosoft.Data.SqlClient.SqlConnection.Open(SqlConnectionOverridesoverrides)\n


在 Microsoft.Data.SqlClient.SqlConnection.Open()\n 在

Microsoft.EntityFrameworkCore.Storage.RelationalConnection.OpenInternal(BooleanerrorsExpected)\n



Microsoft.EntityFrameworkCore.Storage.RelationalConnection.Open(BooleanerrorsExpected)\n atMicrosoft.EntityFrameworkCore.Storage.RelationalConnection.BeginTransaction(IsolationLevelisolationLevel)\n.....................

dbcontext 的一个例子被使用:
Controller 调用服务类中的方法:
  var result = await _myservice.SaveUserStatusAsync(userId, status);
然后在 'myservice' :
  var user = await _userRepo.GetUserAsync(userId);

....set user status to new value and then

return await _userRepo.UpdateUserAsync(user);
然后在 'userrepo' :
  _context.user.Update(user);
var updated = await _context.SaveChangesAsync();
return updated > 0;
更新:
非常感谢 Ivan Yang 慷慨地提供了赏金。尽管我仍在调查中,但通过阅读下面的所有评论和答案,我学到了很多东西。这是我迄今为止尝试过的:我将池大小增加到 200(我知道这不是解决问题的正确方法),增加了 Pod 的数量,以便 API 现在在 4 个 Pod 上运行并分配更多内存到每个 pod 。到目前为止的最终结果是好的:500 个错误在多达 2000 个并发用户的情况下完全消失。在尝试其他选项后,我将用我的发现更新这个问题。

最佳答案

Error:Timeout expired. The timeout period elapsed prior to obtaining aconnection from the pool. This may have occurred because all pooledconnections were in use and max pool size was reached.


这几乎总是连接泄漏。在这里,您的查询运行时间很短,并且您在服务器上看到空闲连接这一事实证实了这一点。在某个地方你要离开一个开放的连接。
DbContext 将打开/关闭底层连接,并在 Dispose 上将其返回到池中。但是如果你在一个连接上启动一个事务并且没有提交或回滚,这个连接将被隔离在池中并且不会被重用。或者,如果您返回 IEnumerableDataReader永远不会被迭代和处理,连接不能被重用。
查看“休眠” session 以查看它们的最后一个查询是什么,并将其与您的代码进行交叉引用以追踪泄漏连接的调用站点。首先尝试 DMV,例如
select s.session_id, s.open_transaction_count, ib.event_info
from sys.dm_exec_sessions s
cross apply sys.dm_exec_input_buffer(s.session_id,null) ib
或在必要时启动扩展事件跟踪。

关于c# - Entity Framework Core 在 sleep 状态下留下许多连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68786746/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com