Nhibernate查询失败了

时间:2015-01-28 11:07:01

标签: nhibernate

我很难确定来自NHibernate(3.3)的问题。该应用程序在六节点NLB群集中提供大约150 req / s。应用程序通常运行正常,但有时可能会在1-2天内在日志中出现以下错误,并且所有查询都会失败。

我使用的adonet.batch_size为15,MultipleActiveResultSets=True设置为true。所有控制器都继承自AsyncController(这是一个ASP.NET MVC 4应用程序),因此会话状态是只读的,以最大化并发性。

最初,我们在NHibernate会话处理方面遇到了很多麻烦,因为AbstractBatcher在管理哪些读者与哪个连接相关方面做得很差。因此,在高负载下,读者会尝试从已经关闭的连接中读取。我们通过手动定义稳定事物的SQLConnection的生命周期来解决这个问题。

但是,经常出现以下情况。我认为这是会话工厂出现问题的一个症状。在这一点上,当我抛出这种类型的未处理异常时,我正在考虑重新初始化会话工厂,但这并不好。有没有人知道为什么会这样?

System.NotSupportedException: PartialEvaluationExceptionExpression
   at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression)
   at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression)
   at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression)
   at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression)
   at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression)
   at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitBinaryExpression(BinaryExpression expression)
   at NHibernate.Linq.Visitors.HqlGeneratorExpressionTreeVisitor.VisitExpression(Expression expression)
   at NHibernate.Linq.Visitors.QueryModelVisitor.VisitWhereClause(WhereClause whereClause, QueryModel queryModel, Int32 index)
   at Remotion.Linq.Clauses.WhereClause.Accept(IQueryModelVisitor visitor, QueryModel queryModel, Int32 index)
   at Remotion.Linq.QueryModelVisitorBase.VisitBodyClauses(ObservableCollection`1 bodyClauses, QueryModel queryModel)
   at Remotion.Linq.QueryModelVisitorBase.VisitQueryModel(QueryModel queryModel)
   at NHibernate.Linq.Visitors.QueryModelVisitor.GenerateHqlQuery(QueryModel queryModel, VisitorParameters parameters, Boolean root)
   at NHibernate.Linq.NhLinqExpression.Translate(ISessionFactoryImplementor sessionFactory)
   at NHibernate.Hql.Ast.ANTLR.ASTQueryTranslatorFactory.CreateQueryTranslators(String queryIdentifier, IQueryExpression queryExpression, String collectionRole, Boolean shallow, IDictionary`2 filters, ISessionFactoryImplementor factory)
   at NHibernate.Engine.Query.QueryPlanCache.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow, IDictionary`2 enabledFilters)
   at NHibernate.Impl.AbstractSessionImpl.GetHQLQueryPlan(IQueryExpression queryExpression, Boolean shallow)
   at NHibernate.Impl.AbstractSessionImpl.CreateQuery(IQueryExpression queryExpression)
   at NHibernate.Linq.DefaultQueryProvider.PrepareQuery(Expression expression, IQuery& query, NhLinqExpression& nhQuery)
   at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression)
   at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression)
   at System.Linq.Queryable.FirstOrDefault[TSource](IQueryable`1 source)

1 个答案:

答案 0 :(得分:0)

对于那些可能面临这个问题的人,我想我会对我们为解决这个问题而制定的修复工作(数千名用户)提供两年的见解。

在基础构造函数中,我们有类似的东西:

        public MvcBaseController()
        {
            try
            {
                var currentRepositorySession = RepositorySession.Current;

                dbConnection = new SqlConnection(currentRepositorySession.GetConnectionString());
                dbConnection.Open();
                session = currentRepositorySession.Create(false, dbConnection);

            }
            catch (Exception e)
            {
                LogDebug("Error was thrown: " + e.Message);
            }
        }

强制将db连接绑定到NHibernate会话是确保AbstractBatcher在所有读取器完成之前不会关闭会话的唯一方法。在Dispose我们有以下内容:

    protected override void Dispose(bool disposing)
    {
        if (disposing)
        {
            try
            {
                if (session != null)
                {
                    session.Dispose();
                    session = null;
                }
            }
            catch (Exception ex)
            {
                LogDebug("Error was thrown: " + ex.Message);
            }
            try
            {
                if (dbConnection != null)
                {
                    dbConnection.Close();
                    dbConnection.Dispose();
                    dbConnection = null;
                }
            }
            catch (Exception ex)
            {
                LogDebug("Error was thrown: " + ex.Message);
            }
        }

        base.Dispose(disposing);
    }

这意味着为每个请求打开一个连接,这很好。我们不得不增加SQL Server工作者,但系统已经稳定了两年了。我们唯一一次看到NHibernate会话工厂中断是从数据库中分页的大量数据,比如100万条记录。然后应用程序池溢出,并且是孤立的。这些主要是代码错误,与问题中描述的并发问题无关。