[rules-users] Starting engine using fireUntilHalt and inserting no facts results in 50% CPU usage

jschmied nabble at juergenschmied.de
Sun Oct 24 07:06:02 EDT 2010


Hi!

fireUntilHalt uses one processor with 100%. You have a dualcore, so it's
50%. It's by design like this.

You can:
- Call fireAllRules after every insert if you have no ruleflow.

- Use fireAllRules in a loop with a small sleep and check for the end of the
ruleflow in the loop:

while (prc.getState() == ProcessInstance.STATE_ACTIVE) {
	Threads.sleep(20);
	ksession.fireAllRules();
}

with both methods you get a low cpu load.

bye

juergen
-- 
View this message in context: http://drools-java-rules-engine.46999.n3.nabble.com/Starting-engine-using-fireUntilHalt-and-inserting-no-facts-results-in-50-CPU-usage-tp1760370p1761821.html
Sent from the Drools - User mailing list archive at Nabble.com.



More information about the rules-users mailing list