[JBoss JIRA] (WFCORE-3677) get-provider-points return /profile addresses for host level resources
by Darran Lofthouse (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3677?page=com.atlassian.jira.plugi... ]
Darran Lofthouse reassigned WFCORE-3677:
----------------------------------------
Assignee: Jeff Mesnil (was: Darran Lofthouse)
> get-provider-points return /profile addresses for host level resources
> ----------------------------------------------------------------------
>
> Key: WFCORE-3677
> URL: https://issues.jboss.org/browse/WFCORE-3677
> Project: WildFly Core
> Issue Type: Enhancement
> Components: Management
> Reporter: Claudio Miranda
> Assignee: Jeff Mesnil
> Priority: Minor
>
> key-manager resource at /host=master/subsystem=elytron/key-manager=*
> contains the "key-store" attribute, which has a "capability-reference" => "org.wildfly.security.key-store"
> get-provider-points returns /profile addresses that should not be a valid reference for a host level resource
> {code}
> /host=master/core-service=capability-registry:get-provider-points(name="org.wildfly.security.key-store")
> {
> "outcome" => "success",
> "result" => [
> "/host=master/subsystem=elytron/key-store=*",
> "/host=master/subsystem=elytron/ldap-key-store=*",
> "/host=master/subsystem=elytron/filtering-key-store=*",
> "/profile=*/subsystem=elytron/key-store=*",
> "/profile=*/subsystem=elytron/ldap-key-store=*",
> "/profile=*/subsystem=elytron/filtering-key-store=*",
> "/profile=*/subsystem=security/elytron-key-store=*",
> "/profile=*/subsystem=security/elytron-trust-store=*"
> ]
> }
> {code}
> A test case
> {code}
> /profile=full/subsystem=elytron/key-store=ks_full:add(credential-reference={clear-text=senha},type=JKS)
> /host=master/subsystem=elytron/key-manager=my_km:add(key-store=ks_full,credential-reference={clear-text=senha})
> {
> "outcome" => "failed",
> "result" => {},
> "failure-description" => {"host-failure-descriptions" => {"master" => "WFLYCTL0369: Required capabilities are not available:
> org.wildfly.security.key-store.ks_full in context 'host'; Possible registration points for this capability:
> /host=master/subsystem=elytron/key-store=*
> /host=master/subsystem=elytron/ldap-key-store=*
> /host=master/subsystem=elytron/filtering-key-store=*
> /profile=*/subsystem=elytron/key-store=*
> /profile=*/subsystem=elytron/ldap-key-store=*
> /profile=*/subsystem=elytron/filtering-key-store=*
> /profile=*/subsystem=security/elytron-key-store=*
> /profile=*/subsystem=security/elytron-trust-store=*"}},
> "rolled-back" => true
> }
> {code}
> The returned addresses in the error message should contains only valid addresses.
> side note: CLI code completion works correctly in not showing resources from /profile addresses.
> /host=master/subsystem=elytron/key-manager=my_km:add(key-store=<tab>
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 11 months
[JBoss JIRA] (DROOLS-2854) MVEL: expression (1 + 2 * 3 + $v ) causes "no such method or function " for bind variable
by Hiroko Miura (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2854?page=com.atlassian.jira.plugi... ]
Hiroko Miura updated DROOLS-2854:
---------------------------------
Description:
When MVEL evaluates
m.setStatus( 1 + 2 * 3 + m.getStatus() );
the following exception happens.
{noformat}
Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
[Near : {... m.setStatus( 1 + 2 * 3 + m.getStatus() ); ....}]
{noformat}
If this is something like
Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
m.setStatus( 1 + 2 + 3 + m.getStatus() ); <== Multiplication "*" is not used
it works without above exception.
This happens in both LHS and RHS with dialect "mvel"
was:
When MVEL evaluates
m.setStatus( 1 + 2 * 3 + m.getStatus() );
the following exception happens.
Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
[Near : {... m.setStatus( 1 + 2 * 3 + m.getStatus() ); ....}]
If this is something like
Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
m.setStatus( 1 + 2 + 3 + m.getStatus() ); <== Multiplication "*" is not used
it works without above exception.
This happens in both LHS and RHS with dialect "mvel"
> MVEL: expression (1 + 2 * 3 + $v ) causes "no such method or function " for bind variable
> -------------------------------------------------------------------------------------------
>
> Key: DROOLS-2854
> URL: https://issues.jboss.org/browse/DROOLS-2854
> Project: Drools
> Issue Type: Bug
> Components: core engine
> Affects Versions: 7.9.0.Final
> Environment: MVEL2 2.4.0 Final
> Reporter: Hiroko Miura
> Assignee: Mario Fusco
> Attachments: mvel2-var-test.zip
>
>
> When MVEL evaluates
> m.setStatus( 1 + 2 * 3 + m.getStatus() );
> the following exception happens.
> {noformat}
> Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
> [Near : {... m.setStatus( 1 + 2 * 3 + m.getStatus() ); ....}]
> {noformat}
> If this is something like
> Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
> m.setStatus( 1 + 2 + 3 + m.getStatus() ); <== Multiplication "*" is not used
> it works without above exception.
> This happens in both LHS and RHS with dialect "mvel"
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 11 months
[JBoss JIRA] (DROOLS-2854) MVEL: expression (1 + 2 * 3 + $v ) causes "no such method or function " for bind variable
by Hiroko Miura (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2854?page=com.atlassian.jira.plugi... ]
Hiroko Miura updated DROOLS-2854:
---------------------------------
Attachment: mvel2-var-test.zip
> MVEL: expression (1 + 2 * 3 + $v ) causes "no such method or function " for bind variable
> -------------------------------------------------------------------------------------------
>
> Key: DROOLS-2854
> URL: https://issues.jboss.org/browse/DROOLS-2854
> Project: Drools
> Issue Type: Bug
> Components: core engine
> Affects Versions: 7.9.0.Final
> Environment: MVEL2 2.4.0 Final
> Reporter: Hiroko Miura
> Assignee: Mario Fusco
> Attachments: mvel2-var-test.zip
>
>
> When MVEL evaluates
> m.setStatus( 1 + 2 * 3 + m.getStatus() );
> the following exception happens.
> Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
> [Near : {... m.setStatus( 1 + 2 * 3 + m.getStatus() ); ....}]
> If this is something like
> Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
> m.setStatus( 1 + 2 + 3 + m.getStatus() ); <== Multiplication "*" is not used
> it works without above exception.
> This happens in both LHS and RHS with dialect "mvel"
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 11 months
[JBoss JIRA] (DROOLS-2855) MVEL: expression (1 + 2 * 3 + $v ) causes "no such method or function " for bind variable
by Hiroko Miura (JIRA)
Hiroko Miura created DROOLS-2855:
------------------------------------
Summary: MVEL: expression (1 + 2 * 3 + $v ) causes "no such method or function " for bind variable
Key: DROOLS-2855
URL: https://issues.jboss.org/browse/DROOLS-2855
Project: Drools
Issue Type: Bug
Components: core engine
Affects Versions: 7.9.0.Final
Environment: MVEL2 2.4.0 Final
Reporter: Hiroko Miura
Assignee: Mario Fusco
When MVEL evaluates
m.setStatus( 1 + 2 * 3 + m.getStatus() );
the following exception happens.
Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
[Near : {... m.setStatus( 1 + 2 * 3 + m.getStatus() ); ....}]
If this is something like
Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
m.setStatus( 1 + 2 + 3 + m.getStatus() ); <== Multiplication "*" is not used
it works without above exception.
This happens in both LHS and RHS with dialect "mvel"
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 11 months
[JBoss JIRA] (DROOLS-2854) MVEL: expression (1 + 2 * 3 + $v ) causes "no such method or function " for bind variable
by Hiroko Miura (JIRA)
Hiroko Miura created DROOLS-2854:
------------------------------------
Summary: MVEL: expression (1 + 2 * 3 + $v ) causes "no such method or function " for bind variable
Key: DROOLS-2854
URL: https://issues.jboss.org/browse/DROOLS-2854
Project: Drools
Issue Type: Bug
Components: core engine
Affects Versions: 7.9.0.Final
Environment: MVEL2 2.4.0 Final
Reporter: Hiroko Miura
Assignee: Mario Fusco
When MVEL evaluates
m.setStatus( 1 + 2 * 3 + m.getStatus() );
the following exception happens.
Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
[Near : {... m.setStatus( 1 + 2 * 3 + m.getStatus() ); ....}]
If this is something like
Exception executing consequence for rule "Hello World" in com.sample: [Error: no such method or function: m]
m.setStatus( 1 + 2 + 3 + m.getStatus() ); <== Multiplication "*" is not used
it works without above exception.
This happens in both LHS and RHS with dialect "mvel"
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 11 months
[JBoss JIRA] (WFWIP-28) [Artemis 2.x upgrade] Unexptected crash of server in SOAK test
by Francesco Nigro (JIRA)
[ https://issues.jboss.org/browse/WFWIP-28?page=com.atlassian.jira.plugin.s... ]
Francesco Nigro updated WFWIP-28:
---------------------------------
Attachment: sosreport-rvaisdebug.asd-20180807101658.tar.xz
> [Artemis 2.x upgrade] Unexptected crash of server in SOAK test
> --------------------------------------------------------------
>
> Key: WFWIP-28
> URL: https://issues.jboss.org/browse/WFWIP-28
> Project: WildFly WIP
> Issue Type: Bug
> Components: Artemis
> Reporter: Miroslav Novak
> Assignee: Martyn Taylor
> Priority: Blocker
> Labels: feature-branch-blocker
> Attachments: sosreport-rvaisdebug.asd-20180807101658.tar.xz
>
>
> After ~13 hours there is unexpected crash of one server in SOAK test. There is no error/warning in the logs.
> Test Scenario:
> * Start 2 servers
> * Client sends messages to input queue. Messages then go through:
> * One server to another through MDB reading and sending them from remote container through resource adapter
> * Messages are forwarded from one server to another over JMS bridge and back over Core bridge
> * Messages have JMSReplyTo defined with a temporary queue, that is filled with responses for the client
> * Messages are read from the destination with stateless EJB and sent back to clients
> * Client reads the messages after the pass through all the soak modules.
> Pass Criteria: In the last step receiver consumes all messages sent by producer.
> Actual Result:
> After ~13 hours 1st server suddenly crashes. There is no error/warning in server logs.
> Issue was hit with Artemis 2.5.0 with https://github.com/jmesnil/wildfly/tree/WFLY-9407_upgrade_artemis_2.4.0_w... (commit 51dd8102f103ccb0470a3cfc8713d3f9bdb1b65d)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 11 months
[JBoss JIRA] (WFWIP-28) [Artemis 2.x upgrade] Unexptected crash of server in SOAK test
by Francesco Nigro (JIRA)
[ https://issues.jboss.org/browse/WFWIP-28?page=com.atlassian.jira.plugin.s... ]
Francesco Nigro commented on WFWIP-28:
--------------------------------------
My suspects have been confirmed and it has turned to be a kill due to OOM Killer:
{code:bash}
$ sudo grep -i kill /var/log/messages*
/var/log/messages:Aug 6 23:25:30 eap-test-rhel7x-10735 kernel: java invoked oom-killer: gfp_mask=0x280da, order=0, oom_score_adj=0
/var/log/messages:Aug 6 23:25:30 eap-test-rhel7x-10735 kernel: [<ffffffff82f980c4>] oom_kill_process+0x254/0x3d0
/var/log/messages:Aug 6 23:25:30 eap-test-rhel7x-10735 kernel: Out of memory: Kill process 4600 (java) score 345 or sacrifice child
/var/log/messages:Aug 6 23:25:30 eap-test-rhel7x-10735 kernel: Killed process 4600 (java) total-vm:8462596kB, anon-rss:2763608kB, file-rss:0kB, shmem-rss:0kB
{code}
I have uploaded the SOS report of the job with the killed node of the job: https://mw-messaging-qe-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/view/EAP/...
> [Artemis 2.x upgrade] Unexptected crash of server in SOAK test
> --------------------------------------------------------------
>
> Key: WFWIP-28
> URL: https://issues.jboss.org/browse/WFWIP-28
> Project: WildFly WIP
> Issue Type: Bug
> Components: Artemis
> Reporter: Miroslav Novak
> Assignee: Martyn Taylor
> Priority: Blocker
> Labels: feature-branch-blocker
>
> After ~13 hours there is unexpected crash of one server in SOAK test. There is no error/warning in the logs.
> Test Scenario:
> * Start 2 servers
> * Client sends messages to input queue. Messages then go through:
> * One server to another through MDB reading and sending them from remote container through resource adapter
> * Messages are forwarded from one server to another over JMS bridge and back over Core bridge
> * Messages have JMSReplyTo defined with a temporary queue, that is filled with responses for the client
> * Messages are read from the destination with stateless EJB and sent back to clients
> * Client reads the messages after the pass through all the soak modules.
> Pass Criteria: In the last step receiver consumes all messages sent by producer.
> Actual Result:
> After ~13 hours 1st server suddenly crashes. There is no error/warning in server logs.
> Issue was hit with Artemis 2.5.0 with https://github.com/jmesnil/wildfly/tree/WFLY-9407_upgrade_artemis_2.4.0_w... (commit 51dd8102f103ccb0470a3cfc8713d3f9bdb1b65d)
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 11 months