Bug 724607 (BRMS-519) - NullPointer in retractLeftTuple()
Summary: NullPointer in retractLeftTuple()
Keywords:
Status: CLOSED NEXTRELEASE
Alias: BRMS-519
Product: JBoss Enterprise BRMS Platform 5
Classification: JBoss
Component: BRE (Expert, Fusion)
Version: 5.1.0 GA
Hardware: Unspecified
OS: Unspecified
high
unspecified
Target Milestone: ---
: ---
Assignee: Tihomir Surdilovic
QA Contact:
URL: http://jira.jboss.org/jira/browse/BRM...
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2010-12-22 17:35 UTC by Matt Davis
Modified: 2011-06-07 14:40 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2011-01-19 20:32:19 UTC
Type: Bug


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Bugzilla 724631 0 high CLOSED Fix for BRMS-519 2021-02-22 00:41:40 UTC
Red Hat Bugzilla 780393 0 urgent CLOSED Fix for BRMS-519 for SOA branch 2021-02-22 00:41:40 UTC
Red Hat Issue Tracker BRMS-519 0 None None None Never
Red Hat Issue Tracker JBRULES-2810 0 None None None Never

Internal Links: 724631 780393

Description Matt Davis 2010-12-22 17:35:39 UTC
Complexity: High
Help Desk Ticket Reference: https://c.na7.visual.force.com/apex/Case_View?id=500A0000005fJq7&sfdc.override=1
securitylevel_name: Public

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 2010-12-22 17:36:23 UTC
Link: Added: This issue Cloned to JBRULES-2810


Comment 3 Matt Davis 2011-01-19 19:02:31 UTC
Link: Added: This issue Cloned from BRMS-538


Comment 4 Matt Davis 2011-01-19 19:19:24 UTC
Link: Added: This issue Cloned from SOA-2815


Comment 5 Tihomir Surdilovic 2011-01-19 20:32:19 UTC
Release Notes Text: Added: Fixes merged into 5.1.x branch


Comment 6 Tihomir Surdilovic 2011-06-07 13:31:27 UTC
Link: Added: This issue depends BRMS-599


Comment 7 Tihomir Surdilovic 2011-06-07 14:39:08 UTC
Link: Removed: This issue depends BRMS-599 


Comment 8 Tihomir Surdilovic 2011-06-07 14:40:00 UTC
Link: Added: This issue is incorporated by BRMS-599



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