Bug 780393 (SOA-2815) - Fix for BRMS-519 for SOA branch
Summary: Fix for BRMS-519 for SOA branch
Keywords:
Status: CLOSED NEXTRELEASE
Alias: SOA-2815
Product: JBoss Enterprise SOA Platform 5
Classification: JBoss
Component: unspecified
Version: 5.0.2
Hardware: Unspecified
OS: Unspecified
urgent
urgent
Target Milestone: ---
: 5.1.0 GA,5.1.0.CR1
Assignee: Kevin Conner
QA Contact:
URL: http://jira.jboss.org/jira/browse/SOA...
Whiteboard:
Depends On: SOA-2841
Blocks:
TreeView+ depends on / blocked
 
Reported: 2011-01-19 19:18 UTC by Matt Davis
Modified: 2011-02-16 09:25 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2011-02-16 09:25:27 UTC
Type: Bug


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Bugzilla 724607 0 high CLOSED NullPointer in retractLeftTuple() 2021-02-22 00:41:40 UTC
Red Hat Issue Tracker JBRULES-2810 0 None None None Never
Red Hat Issue Tracker SOA-2815 0 None None None Never

Internal Links: 724607

Description Matt Davis 2011-01-19 19:18:48 UTC
Help Desk Ticket Reference: https://c.na7.visual.force.com/apex/Case_View?id=500A0000005fJq7&sfdc.override=1
project_key: SOA

We recently switched to Drools 5.1.1 and BRMS 5.1.0 GA in our testing environments, and we are seeing a NullPointerException on a number of rule base / test case combinations. These all worked fine in 5.0.1.

The rule in question is relatively simple, but the rule base is complex.
It's difficult to send a test case, because the exception appears to occur only in large rule bases and layered rule flows.

We have had to roll back to Drools 5.0.1 and are unable to adopt 5.1.1 until this is resolved.


The relevant stack trace info is below.


com.test.ARGenT.Execution.ARGenTRunTimeException - org.drools.runtime.rule.ConsequenceException: rule: RS7673.1.3_RF6365_83_50011728
...

Caused by:
rule: RS7673.1.3_RF6365_83_50011728
at org.drools.runtime.rule.impl.DefaultConsequenceExceptionHandler.handleException(DefaultConsequenceExceptionHandler.java:39)
at org.drools.common.DefaultAgenda.fireActivation(DefaultAgenda.java:927)
at org.drools.common.DefaultAgenda.fireNextItem(DefaultAgenda.java:856)
at org.drools.common.DefaultAgenda.fireAllRules(DefaultAgenda.java:1071)
at org.drools.common.AbstractWorkingMemory.fireAllRules(AbstractWorkingMemory.java:785)
at org.drools.common.AbstractWorkingMemory.fireAllRules(AbstractWorkingMemory.java:751)
at org.drools.impl.StatefulKnowledgeSessionImpl.fireAllRules(StatefulKnowledgeSessionImpl.java:218)
...

Caused by:
null
at org.drools.reteoo.RightInputAdapterNode.retractLeftTuple(RightInputAdapterNode.java:154)
at org.drools.reteoo.SingleLeftTupleSinkAdapter.doPropagateRetractLeftTuple(SingleLeftTupleSinkAdapter.java:217)
at org.drools.reteoo.SingleLeftTupleSinkAdapter.propagateRetractRightTuple(SingleLeftTupleSinkAdapter.java:124)
at org.drools.reteoo.JoinNode.retractRightTuple(JoinNode.java:151)
at org.drools.reteoo.ModifyPreviousTuples.retractTuples(ModifyPreviousTuples.java:132)
at org.drools.reteoo.EntryPointNode.modifyObject(EntryPointNode.java:176)
at org.drools.common.AbstractWorkingMemory.update(AbstractWorkingMemory.java:1442)
at org.drools.common.AbstractWorkingMemory.update(AbstractWorkingMemory.java:1349)
at org.drools.base.DefaultKnowledgeHelper.update(DefaultKnowledgeHelper.java:183)
at org.drools.base.DefaultKnowledgeHelper.update(DefaultKnowledgeHelper.java:196)
at com.test.GeneratedRules.Rule_RS7673_1_3_RF6365_83_50011728_0.defaultConsequence(Rule_RS7673_1_3_RF6365_83_50011728_0.java:9)
at com.test.GeneratedRules.Rule_RS7673_1_3_RF6365_83_50011728_0DefaultConsequenceInvoker.evaluate(Rule_RS7673_1_3_RF6365_83_50011728_0DefaultConsequenceInvoker.java:29)
at org.drools.common.DefaultAgenda.fireActivation(DefaultAgenda.java:917)
at org.drools.common.DefaultAgenda.fireNextItem(DefaultAgenda.java:856)
at org.drools.common.DefaultAgenda.fireAllRules(DefaultAgenda.java:1071)
at org.drools.common.AbstractWorkingMemory.fireAllRules(AbstractWorkingMemory.java:785)
at org.drools.common.AbstractWorkingMemory.fireAllRules(AbstractWorkingMemory.java:751)
at org.drools.impl.StatefulKnowledgeSessionImpl.fireAllRules(StatefulKnowledgeSessionImpl.java:218)
...



The line identified in in the exception from retractLeftTuple is in the for loop, and it references factHandle without first checking for null:

        // retrieve handle from memory
        final InternalFactHandle factHandle = (InternalFactHandle) memory.remove( tuple );

 >>>>>> for ( RightTuple rightTuple = factHandle.getFirstRightTuple(); rightTuple != null; rightTuple = (RightTuple) rightTuple.getHandleNext() ) {
            rightTuple.getRightTupleSink().retractRightTuple( rightTuple,
                                                              context,
                                                              workingMemory );
        }
        factHandle.setFirstRightTuple( null );

Comment 1 Matt Davis 2011-01-19 19:19:24 UTC
Link: Added: This issue Cloned to BRMS-519


Comment 2 Matt Davis 2011-01-19 19:19:24 UTC
Link: Added: This issue Cloned to JBRULES-2810


Comment 3 Len DiMaggio 2011-01-20 15:16:35 UTC
Link: Added: This issue is related to BRMS-538


Comment 4 Kevin Conner 2011-01-24 15:53:55 UTC
Link: Added: This issue depends SOA-2841


Comment 5 trev 2011-02-15 11:25:35 UTC
fixed as part of BRMS backport

Comment 6 Lukáš Petrovický 2011-02-16 09:25:27 UTC
Verified fixed on the branch.


Note You need to log in before you can comment on or make changes to this bug.