memory leak in 4.0.2
by Mark Proctor
For stateful sessions a memory leak has been found, and fixed, for 4.0.2
http://jira.jboss.org/jira/browse/JBRULES-1279
We will release 4.0.3 early next week that address this issue. Stateless
sessions are not affected, but if you are using stateful with lots
sessions on the same rulebase then its recommended you stay with 4.0.1
until we release 4.0.3 next week.
Mark
17 years, 2 months
eclipse 3.3
by Mark Proctor
I've just updated the build system to use Eclipse 3.3, this means on the
first time you use it there will be a delay while it downloads the new
Eclipse and GEF artifacts to the "local-eclipse-drop-mirror" folder.
Kris has updated the eclipse project so it should work.
Hudson is doing its first build of this (will finish in about an hour
from now, due to download), #879, if that finishes successfully you
should be able to download the eclipse 3.3 plugin and play with it - and
hopefully find any regressions :)
https://hudson.jboss.org/hudson/job/drools/ - build information
http://dev45.qa.atl.jboss.com:8585/hudson/job/drools/ws/trunk/target/ -
workspace for downloads
Have fun
Mark
17 years, 2 months
Expressivity in business rules.
by Javier Chamizo
Hello all,
I am doing an study about differences between business rules and
semantic web rules and came up with a doubt.
While in semantic web there is a need in having decidable rules,
frameworks such us Pellet works with rules considered DL-Safe that
guarantees the decidability; business rules engines instead try to offer the
more expressivity possible. Does it mean that business rules are not
decidable? Why such difference?
Thank you very much
Javier Chamizo
17 years, 2 months
Mike Kisker is out of the office.
by mkisker@simon.com
I will be out of the office starting 10/12/2007 and will not return until
10/16/2007.
I will respond to your message when I return.
17 years, 2 months
Re: [rules-dev] Documentation: BRMS on Weblogic using MySQL instead of Derby Database
by Fernando Meyer
Hi Mike,
Could you also contribute/share this information into drools wiki?
On 10/8/07, Fernando Meyer <fernando(a)fmeyer.org> wrote:
>
> Hi Mike,
>
> Could you also can contribute/share this information into drools wiki?
> http://wiki.jboss.org/wiki/Wiki.jsp?page=Deploying_JBoss_Drools_BRMS_on_W...
>
>
> Regards
>
> On 10/8/07, Mike McMahon <michael.mcmahon(a)activewire.net> wrote:
> >
> > Paul,
> > thanks for the great info. Like you I have reconfigured jackrabbit to
> > use a (non-derby) database and here are some comments:
> >
> > 1) I find the speed is about 20X slower this way versus using derby
> > (almost unacceptably slow.. maybe because I use JNDIDatabaseFileSystem?)
> >
> > 2) if you prefer to use a WebLogic connection pooled connection it goes
> > like this:
> >
> > <PersistenceManager
> > class="
> > org.apache.jackrabbit.core.persistence.db.JNDIDatabasePersistenceManager
> > ">
> > <param name="dataSourceLocation"
> > value="java:comp/env/jdbc/MyJndiPoolName"/>
> > <param name="schema" value="mysql"/>
> > <param name="schemaObjectPrefix" value="${wsp.name}_"/>
> > <param name="externalBLOBs" value="false" />
> > </PersistenceManager>
> >
> > 3) you can also use the database instead of local filesystem storage:
> >
> > <FileSystem class="
> > org.apache.jackrabbit.core.fs.db.JNDIDatabaseFileSystem">
> > <param name="dataSourceLocation"
> > value="java:comp/env/jdbc/MyJndiPoolName"/>
> > <param name="schema" value="mssql"/>
> > <param name="schemaObjectPrefix" value="${ wsp.name}"/>
> > </FileSystem>
> >
> >
> > Paul Browne wrote:
> > > Michael,
> > >
> > > I've documented the process of getting Drools BRMS running on Weblogic
> > > (i.e. non JBoss App Server) at
> > >
> > http://www.firstpartners.net/kb/index.php/Deploying_JBoss_Drools_BRMS_on_...
> > > <http://www.firstpartners.net/kb/index.php/Deploying_JBoss_Drools_BRMS_on_...
> > >.
> > >
> > > It also covers using a non-Derby DB - the sample used is MySQL , but
> > > just as easy for Sql-Server or Oracle.
> > >
> > > Two Questions:
> > >
> > > a) Is there anything that you think I've missed?
> > > b) I'm happy for this doc to live on my Wiki (and link to it), or
> > > would you prefer to add this to the JBoss Drools Wiki?
> > >
> > > I'm still trying to 'break' this, but let me know what you think.
> > >
> > > Paul
> > >
> > > www.firstpartners.net/blog < http://www.firstpartners.net/blog>
> > >
> > >
> > >
> > ------------------------------------------------------------------------
> > >
> > > _______________________________________________
> > > rules-dev mailing list
> > > rules-dev(a)lists.jboss.org
> > > https://lists.jboss.org/mailman/listinfo/rules-dev
> > >
> >
> > _______________________________________________
> > rules-dev mailing list
> > rules-dev(a)lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/rules-dev
> >
>
>
>
> --
> Fernando Meyer http://fmeyer.org
> JBoss Rules Core Developer
> fmcamargo(a)gmail.com
>
--
Fernando Meyer http://fmeyer.org
JBoss Rules Core Developer
fmcamargo(a)gmail.com
17 years, 2 months
Re: [rules-dev] Documentation: BRMS on Weblogic using MySQL instead of Derby Database
by Fernando Meyer
Hi Paul,
I think you did a great job documenting this covering both mysql and
weblogic. you haven't missed anything.
You can keep the docs on your wiki and also copy/publish into the
jboss-drools Wiki ( http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossRules )
that is the preferred source for Drools' related information.
Again Thanks for your contribution.
Regards
On 10/8/07, Fernando Meyer <fernando(a)fmeyer.org> wrote:
>
> Hi Paul,
>
> I think you did a great job documenting this covering both mysql and
> weblogic. you haven't missed anything.
>
> You can keep the docs on your wiki and also copy/publish into the
> jboss-drools Wiki ( http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossRules )
> that is the preferred source for Drools' related information.
>
> Again Thanks for your contribution.
>
> Regards
>
> On 10/8/07, Paul Browne <paulb(a)firstpartners.net> wrote:
>
> > Michael,
> >
> > I've documented the process of getting Drools BRMS running on Weblogic (
> > i.e. non JBoss App Server) at http://www.firstpartners.net/kb/index.php/Deploying_JBoss_Drools_BRMS_on_...
> > .
> >
> > It also covers using a non-Derby DB - the sample used is MySQL , but
> > just as easy for Sql-Server or Oracle.
> >
> > Two Questions:
> >
> > a) Is there anything that you think I've missed?
> > b) I'm happy for this doc to live on my Wiki (and link to it), or would
> > you prefer to add this to the JBoss Drools Wiki?
> >
> > I'm still trying to 'break' this, but let me know what you think.
> >
> > Paul
> >
> > www.firstpartners.net/blog
> >
> >
> >
> > _______________________________________________
> > rules-dev mailing list
> > rules-dev(a)lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/rules-dev
> >
> >
>
>
> --
> Fernando Meyer http://fmeyer.org
> JBoss Rules Core Developer
> fmcamargo(a)gmail.com
--
Fernando Meyer http://fmeyer.org
JBoss Rules Core Developer
fmcamargo(a)gmail.com
17 years, 2 months
Re: [rules-dev] Documentation: BRMS on Weblogic using MySQL instead of Derby Database
by Fernando Meyer
On 10/8/07, Fernando Meyer <fernando(a)fmeyer.org> wrote:
>
> Hi Mike,
>
> Could you also contribute/share this information into drools wiki?
> http://wiki.jboss.org/wiki/Wiki.jsp?page=Deploying_JBoss_Drools_BRMS_on_W...
>
>
> Regards
>
> On 10/8/07, Mike McMahon <michael.mcmahon(a)activewire.net> wrote:
> >
> > Paul,
> > thanks for the great info. Like you I have reconfigured jackrabbit to
> > use a (non-derby) database and here are some comments:
> >
> > 1) I find the speed is about 20X slower this way versus using derby
> > (almost unacceptably slow.. maybe because I use JNDIDatabaseFileSystem?)
> >
> > 2) if you prefer to use a WebLogic connection pooled connection it goes
> > like this:
> >
> > <PersistenceManager
> > class="
> > org.apache.jackrabbit.core.persistence.db.JNDIDatabasePersistenceManager
> > ">
> > <param name="dataSourceLocation"
> > value="java:comp/env/jdbc/MyJndiPoolName"/>
> > <param name="schema" value="mysql"/>
> > <param name="schemaObjectPrefix" value="${wsp.name}_"/>
> > <param name="externalBLOBs" value="false" />
> > </PersistenceManager>
> >
> > 3) you can also use the database instead of local filesystem storage:
> >
> > <FileSystem class="
> > org.apache.jackrabbit.core.fs.db.JNDIDatabaseFileSystem">
> > <param name="dataSourceLocation"
> > value="java:comp/env/jdbc/MyJndiPoolName"/>
> > <param name="schema" value="mssql"/>
> > <param name="schemaObjectPrefix" value="${ wsp.name}"/>
> > </FileSystem>
> >
> >
> > Paul Browne wrote:
> > > Michael,
> > >
> > > I've documented the process of getting Drools BRMS running on Weblogic
> > > (i.e. non JBoss App Server) at
> > >
> > http://www.firstpartners.net/kb/index.php/Deploying_JBoss_Drools_BRMS_on_...
> > > <http://www.firstpartners.net/kb/index.php/Deploying_JBoss_Drools_BRMS_on_...
> > >.
> > >
> > > It also covers using a non-Derby DB - the sample used is MySQL , but
> > > just as easy for Sql-Server or Oracle.
> > >
> > > Two Questions:
> > >
> > > a) Is there anything that you think I've missed?
> > > b) I'm happy for this doc to live on my Wiki (and link to it), or
> > > would you prefer to add this to the JBoss Drools Wiki?
> > >
> > > I'm still trying to 'break' this, but let me know what you think.
> > >
> > > Paul
> > >
> > > www.firstpartners.net/blog < http://www.firstpartners.net/blog>
> > >
> > >
> > >
> > ------------------------------------------------------------------------
> > >
> > > _______________________________________________
> > > rules-dev mailing list
> > > rules-dev(a)lists.jboss.org
> > > https://lists.jboss.org/mailman/listinfo/rules-dev
> > >
> >
> > _______________________________________________
> > rules-dev mailing list
> > rules-dev(a)lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/rules-dev
> >
>
>
>
> --
> Fernando Meyer http://fmeyer.org
> JBoss Rules Core Developer
> fmcamargo(a)gmail.com
>
--
Fernando Meyer http://fmeyer.org
JBoss Rules Core Developer
fmcamargo(a)gmail.com
17 years, 2 months
Re: [rules-dev] Documentation: BRMS on Weblogic using MySQL instead of Derby Database
by Fernando Meyer
On 10/8/07, Fernando Meyer <fernando(a)fmeyer.org> wrote:
>
> Hi Paul,
>
> I think you did a great job documenting this covering both mysql and
> weblogic. you haven't missed anything.
>
> You can keep the docs on your wiki and also copy/publish into the
> jboss-drools Wiki ( http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossRules )
> that is the preferred source for Drools' related information.
>
> Again Thanks for your contribution.
>
> Regards
>
> On 10/8/07, Paul Browne <paulb(a)firstpartners.net> wrote:
>
> > Michael,
> >
> > I've documented the process of getting Drools BRMS running on Weblogic (
> > i.e. non JBoss App Server) at http://www.firstpartners.net/kb/index.php/Deploying_JBoss_Drools_BRMS_on_...
> > .
> >
> > It also covers using a non-Derby DB - the sample used is MySQL , but
> > just as easy for Sql-Server or Oracle.
> >
> > Two Questions:
> >
> > a) Is there anything that you think I've missed?
> > b) I'm happy for this doc to live on my Wiki (and link to it), or would
> > you prefer to add this to the JBoss Drools Wiki?
> >
> > I'm still trying to 'break' this, but let me know what you think.
> >
> > Paul
> >
> > www.firstpartners.net/blog
> >
> >
> >
> > _______________________________________________
> > rules-dev mailing list
> > rules-dev(a)lists.jboss.org
> > https://lists.jboss.org/mailman/listinfo/rules-dev
> >
> >
>
>
> --
> Fernando Meyer http://fmeyer.org
> JBoss Rules Core Developer
> fmcamargo(a)gmail.com
--
Fernando Meyer http://fmeyer.org
JBoss Rules Core Developer
fmcamargo(a)gmail.com
17 years, 2 months