Skip to main content

Build Wine rpm with 32 bit application support

Wine is a software to allow running Windows applications in Linux, MAC etc. platforms. It is available for installation from package managers like yum (RHEL, CentOS) and apt (Ubuntu). You can find more details on how it works in Wine wiki . But the default Wine package available from package manager does not have support for 32 bit Windows applications. This was the case for me. In Redhat Enterprise Linux 7.3, the wine package did not contain support for 32 bit windows applications. So the only option was to build a separate rpm of wine which will include this support. All the steps are executed on a RHEL 7.3 VM (x86_64). Step 1 Download and run shell script which will make wine 64 and 32 support for RHEL: https://github.com/zma/usefulscripts/blob/master/script/install-wine-i686-centos7.sh It accepts a version no. as CLI parameter e.g. 2.0.3 The script installs wine in /usr/local/ directory by default. We can verify the files that are being copied for wine using "

Using Multi threading with Drools

Drools is a very popular rule engine. It is based on Rete algorithm. To understand what is a rule engine and how to use it check here. But here I will assume that you have some working knowledge on Drools.

What I am going to discuss in this post is 'how to use multi-threading with Drools'. Below is a snippet which creates a KnowledgeBase from a DRL file.


If this method is called from multiple threads I get below exception -



Exception in thread "Thread-60" [Error: incomplete statement: (possible use of reserved keyword as identifier: )]
[Near : {... globals != empt ....}]
^
[Line: 0, Column: 0]
at org.mvel2.MVELInterpretedRuntime.parseAndExecuteInterpreted(* MVELInterpretedRuntime.java:153*)
at org.mvel2.MVELInterpretedRuntime.parse(* MVELInterpretedRuntime.java:44*)
at org.mvel2.MVEL.eval(*MVEL.java:514*)
at org.mvel2.templates.res.IfNode.eval(*IfNode.java:61*)
at org.mvel2.templates.res.TextNode.eval(*TextNode.java:46*)
at org.mvel2.templates.res.TerminalNode.eval(*TerminalNode.java:39*)
at org.mvel2.templates.res.ForEachNode.eval(*ForEachNode.java:116*)
at org.mvel2.templates.res.TextNode.eval(*TextNode.java:46*)
at org.mvel2.templates.res.TerminalNode.eval(*TerminalNode.java:39*)
at org.mvel2.templates.res.IfNode.eval(*IfNode.java:64*)
at org.mvel2.templates.res.TextNode.eval(*TextNode.java:46*)
at org.mvel2.templates.res.ExpressionNode.eval(* ExpressionNode.java:53*)
at org.mvel2.templates.res.TextNode.eval(*TextNode.java:46*)
at org.mvel2.templates.TemplateRuntime.execute(* TemplateRuntime.java:195*)
at org.mvel2.templates.TemplateRuntime.execute(* TemplateRuntime.java:190*)
at org.mvel2.templates.TemplateRuntime.execute(* TemplateRuntime.java:180*)
at org.mvel2.templates.TemplateRuntime.execute(* TemplateRuntime.java:169*)
at org.drools.rule.builder.dialect.java.AbstractJavaRuleBuilder.generatTemplates( *AbstractJavaRuleBuilder.java:126*)
at org.drools.rule.builder.dialect.java.JavaConsequenceBuilder.build( *JavaConsequenceBuilder.java:128*)
at org.drools.rule.builder.RuleBuilder.build(*RuleBuilder.java:86*)
at org.drools.compiler.PackageBuilder.addRule(* PackageBuilder.java:1159*)
at org.drools.compiler.PackageBuilder.addPackage(* PackageBuilder.java:649*)
at org.drools.compiler.PackageBuilder.addPackageFromDrl(* PackageBuilder.java:290*)
at org.drools.compiler.PackageBuilder.addKnowledgeResource(* PackageBuilder.java:488*)
at org.drools.builder.impl.KnowledgeBuilderImpl.add(* KnowledgeBuilderImpl.java:25*)
at com.myfirm.RuleFlowProcess.init(*RuleFlowProcess.java:25*)
at com.myfirm.RuleFlowProcess.clone(*RuleFlowProcess.java:53*)
at com.myfirm.ThreadTest$CloneThread.run(*ThreadTest.java:35*)
Caused by: *java.lang.NullPointerException*
at org.mvel2.MVELInterpretedRuntime.parseAndExecuteInterpreted(* MVELInterpretedRuntime.java:113*)
... 27 more



The exception normally occurs at KnowledgeBuilder.add(...) method. This can happen infrequently depending on the thread behavior. But there is always a chance to find this error in your production environment.
Now the question is, how do we resolve this? One way, is to share the same knowledge base for all threads. But due to synchronized APIs you will not achieve the performance. Threads will run sequentially. There is another simple solution -


I have used synchronization on current Class object (don't confuse with the new instance of class). There is a single lock available for a Class. So, we can make threads sequential by synchronizing on the class level lock. This will not hit the performance much. Once the KnowledgeBase is created you can run parallel threads for rule execution. No further synchronization required.

Comments

  1. it workd ..thanks dude..u r champ

    ReplyDelete
  2. Can u post complere implementation of two drools file executing simultaneously using multithreading

    ReplyDelete
    Replies
    1. Sorry, it was quite sometime back. I do not have the files with me now. I will ring up my colleagues and see if they have a backup.

      Delete
  3. This comment has been removed by a blog administrator.

    ReplyDelete
  4. Its like you read my mind! You seem to know so much about this, like you wrote the book in it or something. I think that you can do with a few pics to drive the message home a bit, but instead of that, this is magnificent blog. A fantastic read. I will certainly be back.managed services support

    ReplyDelete
  5. When implemented correctly, it unlocks significant efficiency gains, making it a valuable tool for developers working with Drools. PVP Game Modes You can find details on working on software. Window support to pc.

    ReplyDelete

Post a Comment