Monday, November 8, 2010

Learning to Drool... Part 1

This series of posts will be about me getting to grips with JBoss Drools. The reasoning behind it is: SAP bought out my company's current rules engine and Drools is one alternative we will be looking into as soon as someone has the skills to get a proof of concept up.

Although there seems to be a fair amount of documentation, I always find it helps having walked through examples, which is what I am going to do here.Drools on first glance can be quite daunting, it is made up of :

Drools Expert (rule engine)
Being a developer this is where I will begin, the actual rules and implementation of them.

The other parts I'll get to later are:
Drools Guvnor (BRMS/BPMS)
Drools Flow (process/workflow)
Drools Fusion (event processing/temporal reasoning)
Drools Planner (automated planning)

So to begin.
For part 1, I just want to get my feet wet, I download only the Eclipse plugin and the binaries

Need to install the Eclipse plugin, used the update site. Unzip the binaries to a directory and withing the Eclipse plugin settings point to that directory.

The eclipse plugin will allow you to create a Drools Project and that includes the "Drools Library", but if you are using maven you need to point to the JBoss release repo for the Drools dependencies, The KnowledgeRuntimeLoggerFactory needs XStream which you can just get from the standard maven repo. Below is my POM:


To add a rule, on src/main/rules, Right click -> New -> Other... Drools/Rule Resource, be sure to choose the "individual rule". This leaves you with an empty drl file:



To understand and use the rule language, I read the Drools Documentation and the examples project.
What actually took me a little to grasp, was the basic syntax and how objects were handled in the rules and I did struggle to find anything that actually explains it simply so I will give it a shot.

A note on variable names.. they do not need to have the '$' but it was used in the example and without it quickly gets quite confusing.


Now to step through the parts of a rule:



The package, and import keyword are self explanatory, what happens after the when is not.
What is happening in "$vo : RoolVO( stringValue == "Learning to drool", $booleanVal : booleanValue )" broken down actually is:

stringValue == "Learning to drool" - This is a constraint that allows us to find all RoolVO objects known to the knowledge base that have the getStringValue() value equals to "Learning to drool". If there are multiple instances of RoolVO that comply we will run this rule more than once, these are also referred to as matched objects. You can also have multiple constraints separated by a ",".

$booleanVal : booleanValue - We are declaring a new local variable of type boolean called $booleanVal and gets it value from isBooleanValue.

$vo : RoolVO - We are declaring a new local variable of type RoolVO called $vo.

The next line:
"eval( $booleanVal )" - Evaluates the boolean variable, this needs to evaluate to true for the 'then' part of the rule to be called.
Then:
System.out.println( "First Rule" ); - Standard sys out.
$vo.setStringValue("Done."); - Sets the String value on the current RoolVO object that matched the constraints to Done.

The main classes / interfaces needed for a basic rule execution seem to be the following:
org.drools.KnowledgeBase and it's factory
org.drools.KnowledgeBaseFactory:
This is the repository of all the relevant knowledge definitions; it contains rules, processes, functions, type models.

org.drools.builder.KnowledgeBuilder and it's factory org.drools.builder.KnowledgeBuilderFactory:
Transforms / parses a source file (.drl, .xsl) into a KnowledgePackage that a KnowledgeBase can understand.

StatefulKnowledgeSession created by the KnowledgeBase .newStatefulKnowledgeSession();
This session is used to communicate with the actual rules engine.

To quote the drools JavaDocs:
StatefulKnowledgeSession is the most common way to interact with a rules engine. A StatefulKnowledgeSession allows the application to establish an iterative conversation with the engine, where the reasoning process may be triggered multiple times for the same set of data.


I wrote a simple test for the rule I described earlier.


To be honest, Drools is not nearly as intuitive as Quickrules was from what I have seen in this first task. However, in Part 2, I will start looking at using the rule flows, decision table functionality as well as the guided rules:


Those in partnership with the DSL (Domain Specific Language) construct hopefully do allow for more intuitive rules creation.

40 comments:

  1. Promises to be an interesting series. I've wanted to look into Drools a couple of times, but never got to it. This was probably because it seemed to have a pretty steep learning curve and had too many bits and pieces.

    How will you handle migration from Quickrules, is there support for importing from other rules engines?

    By the way I thought I'd just let you know, it doesn't look like your code snippets are showing up in the RSS feed. I can see the code in the XML but when rendered in HTML it's blank.

    ReplyDelete
  2. yeah, I felt exactly the same way, been wanting to start learning for ages, so I "forced" myself by publicly declaring it in a previous post. :)

    There isn't any I have seen, all the quickrules rule info is in a DB... will have to write a custom conversion kit.

    Yeah, I know SyntaxHighlighter java script doesn't work in RSS, you know of something else I can use that will? (besides images).

    ReplyDelete
  3. Aye, migration from QuickRules will be painful. There are no standard structures for rule formats currently (JSR94 looks at execution as opposed to format - well at least the last time I looked at it). But Brian is volunteering to look at some kind of conversion tool.

    I reckon we will end up migration rulesets across and doing a bit of rules refactoring at the same time.

    ReplyDelete
  4. Note that eval() is not indexed, so if isBooleanValue() is constant or only changed using a modify statement then you should test its value inside a conditional expression instead.

    ReplyDelete
  5. Thanks, yeah I figured as much... this was also just to show another variable creation... but will keep it in mind.

    ReplyDelete
  6. Think of your "when" stuff as where clauses in a select statement.

    So RoolVO( stringValue == "Learning to drool" ) would be kind of like:

    SELECT * FROM RoolVO WHERE RoolVO.stringValue = 'Learning to drool';

    You'll find if you start thinking like this you'll start building more Drools-friendly rule constructs. I hope this helps.

    Best,
    Laird

    ReplyDelete
  7. Thanks for the comment Laird... that is actually a very nice way to think about it.

    ReplyDelete
  8. Hi, i like your drools-blog :) Will there be a part 3 with jBPM or other?

    What is your conclusion. Can Drools replace Yasu-Quickrules? How do you implement base rules in Drools?

    ReplyDelete
  9. very knowledgeable post.! Good to learn . It would be helpful for me if you could please provide example of : how to use Excel Spread sheet with drools, like dynamic calculations depending on the requirement..??

    ReplyDelete
  10. I have read your blog its very attractive and impressive. I like it your blog.

    Java Training in Chennai Core Java Training in Chennai Core Java Training in Chennai

    Java Online Training Java Online Training JavaEE Training in Chennai Java EE Training in Chennai

    ReplyDelete
  11. If more people that write articles really concerned themselves with writing great content like you, more readers would be interested in their writings. Thank you for caring about your content. Jammu Kashmir Ration Card Application

    ReplyDelete
  12. Thanks for your post. I have read your blog its very attractive and impressive. I like it your blog. geometry dash

    ReplyDelete
  13. This is very nice post. Thank you for the valuable information.
    Visit For More

    ReplyDelete
  14. Thank you for sharing! I hope you will continue to have great articles like this to share with everyone!

    ReplyDelete
  15. It's very useful article with inforamtive and insightful content and i had good experience with this information.Enroll today to get free access to our live demo session which is a great opportunity to interact with the trainer directly which is a placement based Salesforce training India with job placement and certification . I strongly recommend my friends to join this Salesforce training institutes in hyderabad practical course, great curriculum Salesforce training institutes in Bangalore with real time experienced faculty Salesforce training institutes in Chennai. Never delay to enroll for a free demo at Salesforce training institutes in Mumbai who are popular for Salesforce training institutes in Pune.

    ReplyDelete
  16. Thanks for providing recent updates regarding the concern, I look forward to read more. cheap instagram likes paypal

    ReplyDelete
  17. I will need to browse your next post, the approach you represent the points is superb to urge in-tuned to understand new trends and technologies for a similar. For more details, visit top mobile app development company or contact us: +91-9717270746 or email us: sales@appsquadz.com

    ReplyDelete
  18. https://www.omgka.com 우리카지노사이트
    https://www.omgka.com/theking 더킹카지노
    https://www.omgka.com/sands 샌즈카지노
    https://www.omgka.com/first 퍼스트카지노
    https://www.omgka.com/yes 예스카지노
    https://www.omgka.com/super 슈퍼카지노
    https://www.omgka.com/gatsby 개츠비카지노
    https://www.omgka.com/33 33카지노
    https://www.omgka.com/world 월드카지노
    https://www.omgka.com/merit 메리트카지노

    ReplyDelete
  19. https://www.omgqq.com 우리카지노사이트
    https://www.omgqq.com/thekingcasino 더킹카지노
    https://www.omgqq.com/sandscasino 샌즈카지노
    https://www.omgqq.com/firstcasino 퍼스트카지노
    https://www.omgqq.com/yescasino 예스카지노
    https://www.omgqq.com/supercasino 슈퍼카지노
    https://www.omgqq.com/gatsbycasino 개츠비카지노
    https://www.omgqq.com/33casino 33카지노
    https://www.omgqq.com/worldcasino 월드카지노
    https://www.omgqq.com/merit 메리트카지노

    ReplyDelete
  20. https://www.omgab.com 우리카지노사이트
    https://www.omgab.com/theking 더킹카지노
    https://www.omgab.com/sands 샌즈카지노
    https://www.omgab.com/first 퍼스트카지노
    https://www.omgab.com/yes 예스카지노
    https://www.omgab.com/super 슈퍼카지노
    https://www.omgab.com/gatsby 개츠비카지노
    https://www.omgab.com/33 33카지노
    https://www.omgab.com/world 월드카지노
    https://www.omgab.com/merit 메리트카지노

    ReplyDelete
  21. The content was very useful, we tend to are developing applications and helping business with high finish secured and interesting UI over the online and mobile apps get in touch for additional.   kotlin application development company. You can email us at sales@appsquadz.com or call us at +91-9717270746

    ReplyDelete
  22. Yeah bookmaking this wasn't a bad determination outstanding post!

    My web site; 강남안마

    ReplyDelete
  23. Order Valium Online from this website? Each medicine comes with high effects and a perfect range. Furthermore, this medication is containing a strong mind relaxing or calming. It gives instant results for treating multiples of psychological or physical stresses. Similarly, it clams the nerves and brain. In simple words, you can say that this drug manages by improving the action of specific neurotransmitters in the mind.

    ReplyDelete
  24. Situs judi online yang menyediakan poker online adalah website yang bergerak di bidang perjudian yang tidak perlu bertatap muka dengan orang lain, karena dijaman yang sudah canggih ini kita hanya cukup bermodalkan handphone android ataupun iOS/iphone maka kamu sudah bisa bermain dengan orang lain yang dimana bisa.

    ReplyDelete
  25. Are you looking for an order to buy cheap fake and real ID cards online? We are one of the best fake id websites. For more detail contact us.

    ReplyDelete
  26. Buy real and fake driver's licenses online at Passports service. We are a leading company that provides driver's licenses at the sale price.

    ReplyDelete
  27. We offer wide-quality vapes, e-fluids and extras from the world's driving organizations. We will likely serve you dependably by presenting to you the freshest and best substance from the vape local area all throughout the planet. Our responsibility is to furnish you with a charming and agreeable vaping experience directly at your doorstep. Go ahead and get the best vape pens and k2 splash.

    ReplyDelete
  28. We are top suppliers of k2 paper and e liquids..... kindly contact us and get the best quality.

    ReplyDelete
  29. How can you think of this? I thought about this, but I couldn't solve it as well as you.샌즈카지노I am so amazing and cool you are. I think you will help me. I hope you can help me.


    ReplyDelete
  30. https://rawgardenss.com/
    https://limestone420dispensary.com/

    ReplyDelete
  31. We are top providers of k2 paper and e liquids..... benevolently get in touch with us and get the best quality.
    https://www.bookmarking-maze.win/tiktok-ad-specs

    ReplyDelete
  32. Hey there, it is great content. Looking forward to reading more articles on your blog. Thanks to the creator for writing the post. The better a monitor's refresh rate, the higher it should be. Higher refresh rates will typically result in much smoother-looking movement, which can be seen even in how fluidly the mouse cursor goes across the screen. If you want to check the monitor refresh rate then you should visit online refresh rate checker website.

    ReplyDelete
  33. Every one deserves to be happy in their family or relationships, I was lucky enough to get my husband back , Doctor Robbinson helped me he is authentic , My Husband left me for 8 months and I was devastated and couldn't find any way out to get him back i tried all ways. At some point I was depressed, while i was reading through some post on the internet where people testified about how Dr Robbinson helped them Solve similar problems I contacted him and he never hesitated to help me as well, My husband is back home, my happiness is restored
    Text/call: +12267705795
    Email: Drrobbinssonspiritualhome@gmail.com

    ReplyDelete

Popular Posts

Followers