[JBoss JIRA] (JGRP-1905) FORK: RPCs might block if fork channel or fork stack is not available
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/JGRP-1905?page=com.atlassian.jira.plugin.... ]
Paul Ferraro commented on JGRP-1905:
------------------------------------
Your strategy of connecting all fork channels first doesn't gel with the way WildFly provisions its channels. Infinispan is no longer the only consumer of JGroups channels, as was the case in AS7 - and thus no longer designed to control the lifecycle of the main channel. Effectively, there is no definitive set of forks for a given …
[View More]deployment - these are created and connected as needed by the requisite clustering services required to fulfill the components used by that deployment.
> FORK: RPCs might block if fork channel or fork stack is not available
> ---------------------------------------------------------------------
>
> Key: JGRP-1905
> URL: https://issues.jboss.org/browse/JGRP-1905
> Project: JGroups
> Issue Type: Bug
> Reporter: Bela Ban
> Assignee: Bela Ban
> Priority: Critical
> Fix For: 3.6.2
>
>
> When we have nodes A,B,C,D, but fork-stack "fs-2" is not available on B, or fork-channel "ch-3" is not available on B, then an RPC invoked by A on all cluster nodes will time out.
> h5. Solution
> * Throw an exception on B if a fork-stack or -channel is not available on a target node. This way, the RPC would return quickly and B's response would be set to the exception (e.g. "fork channel fc-2 not available").
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
[View Less]
10 years, 2 months
[JBoss JIRA] (WFCORE-497) OperationStepHandlers for audit log handler add ops prematurely validate
by Brian Stansberry (JIRA)
Brian Stansberry created WFCORE-497:
---------------------------------------
Summary: OperationStepHandlers for audit log handler add ops prematurely validate
Key: WFCORE-497
URL: https://issues.jboss.org/browse/WFCORE-497
Project: WildFly Core
Issue Type: Bug
Components: Domain Management
Affects Versions: 1.0.0.Alpha15
Reporter: Brian Stansberry
Assignee: Brian Stansberry
…
[View More]Fix For: 1.0.0.Alpha16
SyslogAuditLogHandlerAddHandler and FileAuditLogHandlerAddHandler are doing reference validation directly in populateModel. This should instead be done in a separate step, removing the requirement to have the add op for the formatter occur before the add op for the handler, so long as both ops occur within the set of ops handled by the same OperationContext.
This will simplify booting from a filesystem tree instead of xml, removing the need to persist ordering information about formatter/handler in the FS.
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
[View Less]
10 years, 2 months
[JBoss JIRA] (JGRP-1905) FORK: RPCs might block if fork channel or fork stack is not available
by Bela Ban (JIRA)
[ https://issues.jboss.org/browse/JGRP-1905?page=com.atlassian.jira.plugin.... ]
Bela Ban commented on JGRP-1905:
--------------------------------
Sure, a ResponseFilter would also work, but what about my proposal above ?
> FORK: RPCs might block if fork channel or fork stack is not available
> ---------------------------------------------------------------------
>
> Key: JGRP-1905
> URL: https://issues.jboss.org/browse/JGRP-1905
> …
[View More] Project: JGroups
> Issue Type: Bug
> Reporter: Bela Ban
> Assignee: Bela Ban
> Priority: Critical
> Fix For: 3.6.2
>
>
> When we have nodes A,B,C,D, but fork-stack "fs-2" is not available on B, or fork-channel "ch-3" is not available on B, then an RPC invoked by A on all cluster nodes will time out.
> h5. Solution
> * Throw an exception on B if a fork-stack or -channel is not available on a target node. This way, the RPC would return quickly and B's response would be set to the exception (e.g. "fork channel fc-2 not available").
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
[View Less]
10 years, 2 months
[JBoss JIRA] (DROOLS-678) Constraints index Null values as 0s
by Mario Fusco (JIRA)
[ https://issues.jboss.org/browse/DROOLS-678?page=com.atlassian.jira.plugin... ]
Mario Fusco resolved DROOLS-678.
--------------------------------
Fix Version/s: 6.2.0.Final
Resolution: Done
Fixed by https://github.com/droolsjbpm/drools/commit/1d7be3fc5dd86a6051ae09fd494b1...
> Constraints index Null values as 0s
> -----------------------------------
>
> Key: DROOLS-678
> URL: https://issues.jboss.org/browse/DROOLS-678
> …
[View More] Project: Drools
> Issue Type: Bug
> Reporter: Mario Fusco
> Assignee: Mario Fusco
> Fix For: 6.2.0.Final
>
>
> In the following test case:
> {code}
> @Test
> public void testAlphaIndexing() throws Exception {
> String drl =
> " package org.drools.test; " +
>
> " declare ObjectB " +
> " name : String " +
> " intValue : Integer " +
> " end " +
>
> " rule 'insert object' " +
> " when " +
> " then " +
> " insert( new ObjectB( null, 0 ) ); " +
> " end " +
>
> " rule 'rule 1' " +
> " when " +
> " ObjectB( intValue == 1 ) " +
> " then " +
> " end " +
>
> " rule 'rule 2' " +
> " when " +
> " ObjectB( intValue == 2 ) " +
> " then " +
> " end " +
>
> " rule 'rule 3' " +
> " when " +
> " $b : ObjectB( intValue == null ) " +
> " then\n" +
> " System.out.println( $b ); " +
> " end" +
> "\n" ;
>
> KieHelper helper = new KieHelper();
> helper.addContent( drl, ResourceType.DRL );
> assertTrue( helper.verify().getMessages( org.kie.api.builder.Message.Level.ERROR ).isEmpty() );
> helper.build( ).newKieSession().fireAllRules();
> }
> {code}
> rule 3 fires even if it shouldn't
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
[View Less]
10 years, 2 months