mysqlconnection ado.net高cpu使用率

2nbm6dog  于 2021-06-18  发布在  Mysql
关注(0)|答案(1)|浏览(351)

我有一个多线程应用程序,其中n个线程正在访问mysql数据库。每个查询将创建自己的mysqlconnection维护,以避免共享mysqldatareader。但是,我们的数据库服务器遇到了cpu峰值。我已经尝试运行show processlist,但是结果中没有慢查询。我怀疑根本原因是线程如何处理连接。
下面是我的查询方法示例。

public List<Configuration> GetAlertConfigByDeviceID(string deviceID) 
{
    List<Configuration> configurations =  new List<Configuration>();
    try
    {
        using (MySqlConnection dbConnection = new MySqlConnection(WinAlerterConfig.WebConnectionString))
        {
            dbConnection.Open();
            using (MySqlCommand dbCommand = dbConnection.CreateCommand())
            {
                dbCommand.CommandText = StoredProcedures.SqlGetAlertCfgDetailByDeviceID;
                dbCommand.Parameters.Add(new MySqlParameter("DeviceID", deviceID));

                using (MySqlDataReader dbResultSet = dbCommand.ExecuteReader())
                {
                    if (dbResultSet.HasRows)
                    {
                        while (dbResultSet.Read())
                        {
                            configurations.Add(new Configuration()
                            {
                                ConfigID = dbResultSet.GetUInt64Safe(0),
                                AlertType = dbResultSet.GetUInt64Safe(1),
                                ZoneID = dbResultSet.GetUInt64Safe(2),
                                Timeout = dbResultSet.GetInt64Safe(3),
                                DeviceID = dbResultSet.GetStringSafe(4),
                                FromZoneID = dbResultSet.GetUInt64Safe(5),
                                OtherZoneAlert = dbResultSet.GetBooleanSafe(6),
                                Remarks = dbResultSet.GetStringSafe(7)
                            });
                        }
                    }
                    dbResultSet.Close();
                    dbResultSet.Dispose();
                }
                dbCommand.Dispose();
            }
            dbConnection.Close();
            dbConnection.Dispose();
        }
    }
    catch (MySqlException ex)
    {
        Logger.LogErrorLine("GetAlertConfigByDeviceID: {0} {1} {2}", ex.Message, Environment.NewLine, ex.StackTrace);
    }
    catch (Exception ex)
    {
        Logger.LogErrorLine("GetAlertConfigByDeviceID: {0} {1} {2}", ex.Message, Environment.NewLine, ex.StackTrace);
    }

    return configurations;
}

我还包括“polling=true在我们的连接字符串中。所以我假设mysql或ado.net将处理连接池。
我的方法错了吗?连接池是否已经由ado.net处理?

myzjeezk

myzjeezk1#

删除所有关闭和处置呼叫。正在使用的块已经在处理了。
还要确保deviceid列上有索引。
然后再试一次。

相关问题