NHibernate和ADO.NET连接池

时间:2011-09-27 09:52:49

标签: .net nhibernate ado.net connection-pooling

似乎NHibernate不会集合ADO.NET数据库连接。仅在提交或回滚事务时关闭连接。对源代码的回顾表明,没有办法配置NHibernate,以便在处理ISession时关闭连接。

这种行为的意图是什么? ADO.NET本身就有连接池。在交易中不需要一直打开它们。使用此行为也是不必要的分布式事务创建。因此http://davybrion.com/blog/2010/05/avoiding-leaking-connections-with-nhibernate-and-transactionscope/中描述的可能的解决方法不起作用(至少不适用于NHibernate 3.1.0)。我正在使用Informix。对于每个其他数据库(NHibernate Connection Pooling),似乎存在同样的问题。

是否有其他解决方法或建议可以避免此问题?

这是一个重现问题的单元测试:

  [Test]
  public void DoesNotCloseConnection()
  {
     using (SessionFactoryCache sessionFactoryCache = new SessionFactoryCache())
     {
        using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required, new TransactionOptions() { IsolationLevel = IsolationLevel.ReadCommitted, Timeout = TimeSpan.FromMinutes(10) }))
        {
           fixture.Setup(); // Creates test data

           System.Data.IDbConnection connectionOne;
           System.Data.IDbConnection connectionTwo;

           using (ISessionFactory sessionFactory = sessionFactoryCache.CreateFactory(GetType(), new TestNHibernateConfigurator()))
           {
              using (ISession session = sessionFactory.OpenSession())
              {
                 var result = session.QueryOver<Library>().List<Library>();
                 connectionOne = session.Connection;
              }
           }

           // At this point the first IDbConnection used internally by NHibernate should be closed

           using (ISessionFactory sessionFactory = sessionFactoryCache.CreateFactory(GetType(), new TestNHibernateConfigurator()))
           {
              using (ISession session = sessionFactory.OpenSession())
              {
                 var result = session.QueryOver<Library>().List<Library>();
                 connectionTwo = session.Connection;
              }
           }

           // At this point the second IDbConnection used internally by NHibernate should be closed

           // Now two connections are open because the transaction is still running
           Assert.That(connectionOne.State, Is.EqualTo(System.Data.ConnectionState.Closed)); // Fails because State is still 'Open'
           Assert.That(connectionTwo.State, Is.EqualTo(System.Data.ConnectionState.Closed)); // Fails because State is still 'Open'
        }
     }
  }

处理NHibernate-Session没有任何作用,因为我们仍处于事务中

SessionImpl.cs:

public void Dispose()
    {
        using (new SessionIdLoggingContext(SessionId))
        {
            log.Debug(string.Format("[session-id={0}] running ISession.Dispose()", SessionId));
            if (TransactionContext!=null)
            {
                TransactionContext.ShouldCloseSessionOnDistributedTransactionCompleted = true;
                return;
            }
            Dispose(true);
        }
    }

注入自定义ConnectionProvider也不起作用,因为调用ConnectionProvider的ConnectionManager有几个先决条件,检查是否不允许在事务中关闭连接。

ConnectionManager.cs:

public IDbConnection Disconnect() {
        if (IsInActiveTransaction)
            throw  new InvalidOperationException("Disconnect cannot be called while a transaction is in progress.");

        try
        {
            if (!ownConnection)
            {
                return DisconnectSuppliedConnection();
            }
            else
            {
                DisconnectOwnConnection();
                ownConnection = false;
                return null;
            }
        }
        finally
        {
            // Ensure that AfterTransactionCompletion gets called since
            // it takes care of the locks and cache.
            if (!IsInActiveTransaction)
            {
                // We don't know the state of the transaction
                session.AfterTransactionCompletion(false, null);
            }
        }
    }

2 个答案:

答案 0 :(得分:9)

NHibernate有两种“模式”。

  • 您可以在应用程序中打开连接,然后由应用程序来管理它。将连接传递给sessionfactory.OpenSession(connection)时使用此“模式”。
  • 或者连接是由NH创建的。然后在会话结束时关闭它。未将连接传递给sessionfactory.OpenSession()
  • 时使用此“模式”

TransactionScope有一些支持。它最有可能使用第一个“模式”。可能连接不是由NH持有,而是由交易范围。我不确切知道,我不使用环境交易。

顺便说一句,

NH 使用ADO.NET连接池。

您还可以使用ISession.Disconnect()断开会话,然后使用ISession.Reconnect()重新连接。

documentation中找到:

  

方法ISession.Disconnect()将断开会话与   ADO.NET连接并返回到池的连接(除非你   提供连接)。

答案 1 :(得分:0)

您可以通过将以下设置添加到连接字符串来完成此操作。

Pooling=true; 
Min Pool Size=3;
Max Pool Size=25;
Connection Lifetime=7200;
Connection Timeout=15;
Incr Pool Size=3;
Decr Pool Size=5;

合并:为您的应用启用合并

最小池:即使所有会话都关闭也要保持打开的最小连接数。

最大池数:应用程序将向数据库打开的最大连接数。达到最大值时,它将等待“连接超时”指定的秒数,然后抛出异常。

连接超时:等待池中空闲连接的最长时间(以秒为单位)

连接生存期:当连接返回到池时,会将其创建时间与当前时间进行比较,如果该时间跨度(以秒为单位)超过Connection Lifetime指定的值,则会破坏连接。值为零(0)会导致池连接具有最大连接超时。

Incr Pool Size:控制使用所有连接时建立的连接数。

Decr Pool Size:控制在未使用过多已建立连接时关闭的连接数。

http://www.codeproject.com/Articles/17768/ADO-NET-Connection-Pooling-at-a-Glance