Sql Server会话上下文限制

时间:2017-04-25 17:01:58

标签: c# sql-server security dapper

我们在设置和清除会话上下文值时遇到问题。

我们收到以下错误: The value was not set for key X because the total size of keys and values in the session context would exceed the 1 MB limit

我们正在使用asp.net core和dapper进行数据访问。

打开连接时,我们执行sp_set_session_context并发送4个密钥。 3是整数,1是字符串。

在测试中,字符串为null,整数小于10.

执行sql命令后,我们将会话上下文值设置为null,关闭并处置连接。

我们使用以下查询来查看内存使用情况: SELECT SUM([pages_kb]) FROM [sys].[dm_os_memory_cache_counters] WHERE [type] = 'CACHESTORE_SESSION_CONTEXT'

该查询尚未超过1MB。

有谁知道我们收到此错误的原因?

1 个答案:

答案 0 :(得分:4)

这是known bug, which has been fixed in SQL Server 2016 and 2017。以下脚本可以可靠地重现它:

bool unset = true;
using (var command = new SqlCommand()) {
  command.CommandText = "sp_set_session_context";
  command.CommandType = CommandType.StoredProcedure;
  command.Parameters.Add("@key", SqlDbType.NVarChar, 128);
  command.Parameters.Add("@value", SqlDbType.Variant, -1);
  for (int cycles = 0; cycles != 10; ++cycles) { 
    ++cycles;
    using (var connection = 
      new SqlConnection(@"Data Source=(localdb)\MSSqlLocalDB;Integrated Security=SSPI")
    ) {
      connection.Open();
      // Set as many values as we can
      int keys = 0;
      while (true) {
        command.Connection = connection;
        command.Parameters["@key"].Value = keys.ToString();
        command.Parameters["@value"].Value = new String(' ', 8000);
        try {
          command.ExecuteNonQuery();
          ++keys;
        } catch (SqlException e) {
          Console.WriteLine("Failed setting at {0}: {1}", keys, e.Message);
          break;
        }
      }
      if (unset) {
        // Now unset them
        for (; keys >= 0; --keys) {
          command.Connection = connection;
          command.Parameters["@key"].Value = keys.ToString();
          command.Parameters["@value"].Value = DBNull.Value;
          try {
            command.ExecuteNonQuery();
          } catch (SqlException e) {
            Console.WriteLine("Failed unsetting at {0}: {1}", keys, e.Message);
            break;
          }
        }
      }
    }
  }
}

输出:

  

125设置失败:没有为键'125'设置值,因为会话上下文中键和值的总大小将超过1 MB限制。
  设置为120时失败:没有为键'120'设置值,因为会话上下文中键和值的总大小将超过1 MB限制。
  设置失败115:未为键'115'设置值,因为会话上下文中键和值的总大小将超过1 MB限制。
  设置失败为110:未为键“110”设置值,因为会话上下文中键和值的总大小将超过1 MB限制。
  105的设置失败:没有为密钥“105”设置该值,因为会话上下文中的密钥和值的总大小将超过1 MB的限制。

可用的上下文大小随着每个周期而减小。如果持续时间足够长,它将降至某个最小值(不一定为0)。此时,查询sys.dm_os_memory_cache_counters表明使用的远远少于1 MB,但即便如此,也不能再设置会话上下文。

此错误在SQL Server 2016 SP1 CU8和SQL Server 2017 CU6中已fixed。 (如果对参数使用NULL值,则修复会提及清除内存问题,但第一个不允许使用NULL值作为密钥即使在旧版本中也会产生错误。根据我的测试,它已经修复了取消设置。)

对于以前的版本,至少有两种解决方法:

  • 完成后不要将值设置为NULL,请让引擎清除它们。在上面的脚本中,如果将unset设置为false,则会发现没有会话上下文泄露。
  • 使用非NULL sentinel值来标记“已删除”值,例如空字符串。