[JBoss JIRA] (AS7-3462) Server instances in domain aren't running with '-server' argument out-of-the-box
by Rostislav Svoboda (JIRA)
Rostislav Svoboda created AS7-3462:
--------------------------------------
Summary: Server instances in domain aren't running with '-server' argument out-of-the-box
Key: AS7-3462
URL: https://issues.jboss.org/browse/AS7-3462
Project: Application Server 7
Issue Type: Bug
Components: Domain Management
Reporter: Rostislav Svoboda
Assignee: Brian Stansberry
Fix For: 7.1.0.Final
AS7-2491 fixed '-server' issue for PC and HC but server instances in domain aren't running with '-server' argument out-of-the-box. For standalone it's running out-of-the-box.
Please develop functionality to add '-server' argument automatically (if JVM enables that) during server instances initialization.
Currently user is forced to edit host.xml, section 'jvms':
{code}
<jvm name="default">
<heap size="64m" max-size="256m"/>
<permgen size="256m" max-size="256m"/>
<jvm-options>
<option value="-server"/>
</jvm-options>
</jvm>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 2 months
[JBoss JIRA] Created: (JBRULES-3075) window:length windows retaining events when they shouldnt
by Radai Rosenblatt (JIRA)
window:length windows retaining events when they shouldnt
---------------------------------------------------------
Key: JBRULES-3075
URL: https://issues.jboss.org/browse/JBRULES-3075
Project: Drools
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: drools-core (fusion)
Affects Versions: 5.2.0.CR1
Environment: win64, jdk 6u24
Reporter: Radai Rosenblatt
Assignee: Mark Proctor
Attachments: drools length window bug.zip
using the following DRL:
package contrived.example
import contrived.example.EventWithTimestamp
declare EventWithTimestamp
@role(event)
@duration( duration )
@timestamp( timestamp )
end
rule "no event in window"
when
not EventWithTimestamp (someProp=="whatever") over window:length(3) from entry-point "Event Stream"
then
System.err.println("retract");
end
if we start with an initial matching (someProp=="whatever") event and a fire a long sequence of non-matching events:
{"something else", "something else" ... "something else"}
the rule should fire sometime into the long chain of "something else" events (it should fire after the 3rd such event).
in practice the rule never fires. worse, it also retains all the events in memory ehrn it should only keep the last 3.
to reproduce the issue, simply build the attached maven project (mvn clean install)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 2 months