Tagged Questions

Drools is a business rule management system (BRMS) with a forward chaining inference based rules engine, more correctly known as a production rule system, using an enhanced implementation of the Rete algorithm. Drools is hosted at JBoss

learn more… | top users | synonyms

17
votes
3answers
6k views

Pros and cons of Java rules engines

What are the pros and cons to adopting the Java rules engines JESS and Drools? Are there any other players? I understand that Drools is Open Source and JESS is not, but how do they compare in other ...
15
votes
7answers
437 views

Rules engine for .NET

We have a business requirement to let power users edit rules for insurance rates and enrollments. We need a web ui that lets them say "this product is only for people <55 unless they are from ...
9
votes
8answers
3k views

Using Drools in a heavy batch process

We used Drools as part of a solution to act as a sort of filter in a very intense processing application, maybe running up to 100 rules on 500,000 + working memory objects. turns out that it is ...
8
votes
2answers
3k views

Forward Chaining vs Backward Chaining

What is one good for that the other's not in practice? I understand the theory of what they do, but what are their limitations and capabilities in practical use? I'm considering Drools vs a java ...
8
votes
2answers
4k views

Drools.NET vs Windows Workflow Foundation (WF)

I am currently in the process of searching for a rules engine that works in .NET. Our logic is pretty simple, +, -, *, /, and, or, basic order of operations stuff. However we are going to need to ...
7
votes
2answers
535 views

What are the myths about rules engine?

I'm writing a presentation about rule engine technology, specifically JBoss Drools. What are some of the 'myths' about rule engines. One I can think of is that it allows business users to control ...
7
votes
1answer
1k views

Best practices for using Drools Expert/Flow in a Web Application

I'm currently teaching myself Drools Expert/Flow as well as GWT. I want to use Drools Flow as an event/command bus and business rule engine to achieve loose coupling between different parts of the ...
5
votes
3answers
138 views

Best way to implement rule check while communicating with GPS device

We are developing a vehicle tracking system. Like every VTS, we have GPS devices fitted into the vehicles which keep sending location information to the server. On server, our TCP communicator process ...
5
votes
4answers
287 views

Implementing methods having raw types in Scala

I have a problem in using Drools Planner (written in Java) in Scala. One of interfaces in Drools planner is declared as: public interface Score<S extends Score> extends Comparable<S> ...
5
votes
8answers
1k views

What are some real world examples of using Drools?

I am looking into learning more about Drools, but so far I am having trouble finding a reason to use it in any of my current apps. I am hoping to get some guidance on how it has been used in real ...
5
votes
2answers
2k views

how to learn Drools or another rule engine fast

We're embarking on a module which will generate some recommendations based on some criteria. The criteria will be in the form of set of Business Rules and hence I was considering using a Business Rule ...
4
votes
2answers
680 views

How to stop threads when undeploying a JEE application?

I undeploy my JEE app that uses an asynchronous logger that logs in its own thread from the Drools rules engine. I use it to log decisions the rules engine makes but I cannot let it have impact on the ...
4
votes
1answer
807 views

Using drools expert with dynamic decision tables

Here's what I had like to do. I had like to put "rules" in a database table. This is sort of like the drools xls decision table format except that all the rules will be rows in a table. This way I ...
4
votes
4answers
2k views

Should I use Drools in this situation?

I'll use a university's library system to explain my use case. Students register in the library system and provide their profile: gender, age, department, previously completed courses, currently ...
3
votes
2answers
148 views

Play! framework [1.2.4] with Drools on Heroku

I've tried to make simple web app integrated with Drools rule engine and deployed it on heroku. In controller action I'm executing method which imports and parses DRL file, and returns result. I've ...
3
votes
3answers
184 views

drools rule flow

I'm having a strange issue with drools : I have the following rules : rule "is my dog a baby?" ruleflow-group "dog" salience 10 when dog : Dog(age <1 ) then ...
3
votes
1answer
284 views

How to define constant in jboss drools?

All I want to know that how to define contant variable in jboss drools rule. So, Admin has to change only one place to modify the configurable value. Thanks.
3
votes
3answers
759 views

Configuring drools and maven and writing hello world application using them

I want to learn drools and maven can any one help me with the links for configuring drools and maven and writing a basic hello world example using them. Thanks in advance
3
votes
1answer
460 views

Does Drools Fusion have a concept of “now”?

I'm trying to write a rule that delays firing until, at least, 15 minutes have passed since the last firing. However, the temporal operators in Drools Fusion only allow reasoning about two events in ...
3
votes
3answers
674 views

Drools testing with junit

What is the best practice to test drools rules with junit? Until now we used junit with dbunit to test rules. We had sample data that was put to hsqldb. We had couple of rule packages and by the end ...
3
votes
1answer
681 views

ETL , Esper or Drools?

The question environment relates to JavaEE, Spring I am developing a system which can start and stop arbitrary TCP (or other) listeners for incoming messages. There could be a need to authenticate ...
3
votes
1answer
1k views

How to share individual rules between .drl files in JBoss Rules?

We are using JBoss Rules (a.k.a. Drools) and have several .drl files that each contain several rules. Is there a way to avoid duplication between files, so that we can define common rules that are ...
2
votes
2answers
54 views

Test if a bit is set in a BitSet on the left hand side of a rule

I have a member which is a BitSet, and in a given rule, I'd like to test whether a particular bit is set, for example: class Foo { BitSet bar; // getter & setter } My rule that I would ...
2
votes
1answer
84 views

Drools: How to use an enum in the lhs of a rule?

I am having difficulties in writing a rule which match with an enum value in its lhs. For example, if I have the following enum: public enum EStatus { OK, NOT_OK } I would like to use it in ...
2
votes
3answers
168 views

How to compile a .drl file through an ant build script

I am new to Drools. I want to know if it is possible to compile a .drl file using some kind of a command that can be entered in the windows command line (shell/cmd). I looked through the binaries that ...
2
votes
3answers
120 views

Drools Expert output object in Scala

I'm a novice in both Scala and Drools Expert, and need some help getting information out of a Drools session. I've successfully set up some Scala classes that get manipulated by Drools rules. Now I ...
2
votes
1answer
191 views

How to improve drools performance?

Is there a way to log / monitor the time taken for rule in a Drools rule set? Is there a way to make sure that one rule is not executed more than once(It seems to be happening in my case) What are ...
2
votes
0answers
88 views

Google collect import in Drools

When I try to import MultiMap in Drools rule it caused an error below [11,25]: [ERR 102] Line 11:25 mismatched input 'COLLECT' expecting 'identifier' in import Does anyone know how can I import ...
2
votes
1answer
168 views

Evaluating XPath expressions in JBoss Drools

I am working within a enterprise architecture that is processing a large amount of XML messages. We have recently been given the requirement to perform some calculations on data contained in those ...
2
votes
1answer
172 views

Drools Fusion and Java EE

What are the best practices for using Drools Fusion on a Web/Enterprise Application? Do you know of any useful document? I've looked through the examples on JBoss ...
2
votes
1answer
228 views

Share model from global area to different package in Guvnor

In Guvnor global area I have uploaded different jar which contains model classes. After that, I create some packages and create DRL rule inside. Is it possible for these package's rules reference to ...
2
votes
2answers
1k views

Decision trees and rule engines (Drools)

In the application that I'm working on right now, I need to periodically check eligibility of tens of thousands of objects for some kind of a service. The decision diagram itself is in the following ...
2
votes
1answer
330 views

Seam Drool Security Rules - Additional Facts in Working Memory?

I've created a class called ApplicationLoginContext that contains information about a user once they've authenticated (username, login timestamp, remote IP address, etc.) I'm using JBoss Seam ...
2
votes
2answers
680 views

quick loading of a drools knowledge base

I'm trying to use Drools as the rule engine for a grammar relations to semantics mapping framework. The rule base is in excess of 5000 rules even now and will get extended. In using Drools currently ...
2
votes
1answer
1k views

Dynamic business rules engine for ruby on rails

I have an application which will require a "dynamic business rules" engine. Some of the business rules changes very frequently. Some of then applies for a limited set of business accounts. For ...
2
votes
4answers
818 views

are for loops possible in drools?

does anybody know if there is a way to do for loops in drools ?. I am trying to loop through a list of string to see if one of the strings matches a pattern e.g. def listOfStrings = ...
2
votes
2answers
276 views

Learning JBoss drools: what should be my model

I'm learning JBoss Drools and I'm playing with the genetics data from the hapmap project: ( http://hapmap.ncbi.nlm.nih.gov/genotypes/latest/forward/non-redundant/ ) . Each file in this directory is a ...
2
votes
2answers
790 views

Problem with Drools Eclipse Workbench

When I attempt to go through the "New Drools Project" wizard in Eclipse (for Drools 5.0, Eclipse Helios), I reach a point where I receive the message, " No Drools Runtimes have been defined, configure ...
2
votes
1answer
107 views

Drools for Complex Display Value Lookup

The purpose of this quetion is to evaluate the reasonability of using Drools for complex display value lookup processing within a web application. I have been tasked to retrieve coverage information ...
2
votes
2answers
192 views

Using Drools to provide error processing and consequence management

I am working on a module whose purpose is to process Java exceptions and decide upon a strategy for dealing with them. The exceptions could be things I know about (explicit business exceptions eg ...
2
votes
0answers
321 views

Integrating Drools with JBossESB

In recent weeks I've been researching Drools amongst other CEP/Rule Engines and I believe I would like to use Drools. I also have an JBossESB which is responsible for routing of messages between ...
2
votes
4answers
4k views

Experience with Drools Flow and/or OSWorkflow?

I'm looking for a straightforward Java workflow engine that: can handle both automated and manual (GUI-based) steps within a workflow supports long-running, asynchronous tasks provides support for ...
2
votes
6answers
1k views

Drools project idea needed [closed]

I was asked to make some drools traning for my teammates. Just to show them how it can be used and how usefull it may be. To do this training I first have to learn Drools, and I figured that the best ...
1
vote
1answer
25 views

Drools fires in a loop

Simple example loops ad infinitum if executed. If I add "no-loop true" it works. But why? There is no loop hole... package spikes; import org.springframework.roo.addon.javabean.RooJavaBean; ...
1
vote
0answers
22 views

How to maintain version of Drools Decision table

Here is my scenario I am using drools for storing the rules mainly decision tables not I have a scenario where I want to create version of my knowledge. and depending on certain param want to use the ...
1
vote
2answers
26 views

How to generate java code for a given JBoss Drool DRL file?

In JBoss Drools, I believe the PackageBuilder generates code for a given DRL file. But this is happening internally. How do I see that java code for a given DRL fike?
1
vote
1answer
42 views

Which Drools product to use for timetabling?

Yes, it's a newb question. I want to make a timetabling application that these points specific to my situation: At a single time, we are allocating a maximum of (3 teachers X 6 hours)X(3 classes X ...
1
vote
1answer
55 views

special characters in drools rules

I'm using jBoss drools (v5.1.0) along with Tohu (also a jBoss product used to generate dynamic questionnaires). The issue is drools and the special characters I want to put in the String in my rules. ...
1
vote
1answer
46 views

JBoss ESB, JBRMS and JBPM

Can anyone suggest books to understand writing rules looking upon business process and integrating that into ESB? I know how to write a rule and run a java application. That is where I reached for ...
1
vote
1answer
42 views

How to configure Drools to run with JBOSS?

I have a java application which is deployed in a jboss 5, and I m using drools in my application. so need some information on what i need to do to get the drools runtime environment in jboss. Thanks

1 2 3 4 5 6