[JBoss JIRA] (DROOLS-4611) It is impossible to use infinity values
by Anna Dupliak (Jira)
Anna Dupliak created DROOLS-4611:
------------------------------------
Summary: It is impossible to use infinity values
Key: DROOLS-4611
URL: https://issues.jboss.org/browse/DROOLS-4611
Project: Drools
Issue Type: Bug
Components: Scenario Simulation and Testing
Reporter: Anna Dupliak
Assignee: Daniele Zonca
It is impossible to use infinity values.
*workaround
If one expect some infinity value as a result -> they could compare it with the "1/0" expression
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 7 months
[JBoss JIRA] (SWSQE-963) OCP 4.2 provisioning fails with Error creating OpenStack container object
by Filip Brychta (Jira)
[ https://issues.jboss.org/browse/SWSQE-963?page=com.atlassian.jira.plugin.... ]
Filip Brychta resolved SWSQE-963.
---------------------------------
Resolution: Done
Cleaned containers and created new tasks to prevent this issue from happening again.
> OCP 4.2 provisioning fails with Error creating OpenStack container object
> -------------------------------------------------------------------------
>
> Key: SWSQE-963
> URL: https://issues.jboss.org/browse/SWSQE-963
> Project: Kiali QE
> Issue Type: Bug
> Reporter: Filip Brychta
> Assignee: Filip Brychta
> Priority: Blocker
> Labels: infrastructure
>
> Full exception:
> level=debug msg="module.masters.openstack_compute_instance_v2.master_conf[0]: Still creating... [1m0s elapsed]"
> level=debug msg="module.masters.openstack_compute_instance_v2.master_conf[0]: Creation complete after 1m7s [id=440a6c32-ef73-4bbf-9ea9-1cdade8314d0]"
> level=error
> level=error msg="Error: Error creating OpenStack container object: Expected HTTP response code [] when accessing [PUT https://rhos-d.infra.prod.upshift.rdu2.redhat.com:13808/v1/AUTH_0d9514d7d...], but got 413 instead"
> level=error msg="Upload exceeds quota."
> level=error
> level=error msg=" on ../../../../../../../tmp/openshift-install-535787086/bootstrap/main.tf line 49, in resource \"openstack_objectstorage_object_v1\" \"ignition\":"
> level=error msg=" 49: resource \"openstack_objectstorage_object_v1\" \"ignition\" {"
> level=error
> level=error
> level=fatal msg="failed to fetch Cluster: failed to generate asset \"Cluster\": failed to create cluster: failed to apply using Terraform"
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 7 months
[JBoss JIRA] (WFLY-12643) Memory leak in FlashScope - expired elements are not cleared
by Bartosz Spyrko (Jira)
[ https://issues.jboss.org/browse/WFLY-12643?page=com.atlassian.jira.plugin... ]
Bartosz Spyrko updated WFLY-12643:
----------------------------------
Git Pull Request: https://github.com/jboss/mojarra/pull/45, https://github.com/eclipse-ee4j/mojarra/pull/4633/commits (was: https://github.com/jboss/mojarra/pull/42, https://github.com/eclipse-ee4j/mojarra/pull/4633/commits)
> Memory leak in FlashScope - expired elements are not cleared
> ------------------------------------------------------------
>
> Key: WFLY-12643
> URL: https://issues.jboss.org/browse/WFLY-12643
> Project: WildFly
> Issue Type: Bug
> Components: JSF
> Environment: * JBoss EAP 7.2.3 (also JBoss EAP 7.1.6 that is the latest version in 7.1.x is affected by this issue)
> Reporter: Bartosz Spyrko
> Assignee: Bartosz Spyrko
> Priority: Critical
>
> Objects in FlashScope is not cleared and keep accumulating even if POST-REDIRECT-BACK is completed.
> If we put a huge object to FlashScope continuously as the following code, Java heap space will be exhausted soon.
> {code:java}
> @Model
> public class Action {
> private static final int oneHundredMB = 1024 * 1024 * 100;
> public String next() {
> Flash flash = FacesContext.getCurrentInstance().getExternalContext().getFlash();
> flash.putNow("huge", new byte[oneHundredMB]);
> return "index.xhtml?faces-redirect=true";
> }
> }
> {code}
> When OutOfMemoryError is happened, flashInnerMap field in com.sun.faces.context.flash.ELFlash is bloated.
> {noformat}
> Class Name | Ref. Objects | Shallow Heap | Ref. Shallow Heap | Retained Heap
> -----------------------------------------------------------------------------------------------------------------------------------------
> java.lang.Thread @ 0xeea24380 default task-1 Thread | 1 | 120 | 64 | 20,800
> '- <Java Local> com.sun.faces.context.flash.ELFlash @ 0xee9e4608 | 1 | 40 | 64 | 64
> '- flashInnerMap java.util.concurrent.ConcurrentHashMap @ 0xee9e4630| 1 | 64 | 64 | 314,574,048
> -----------------------------------------------------------------------------------------------------------------------------------------
> {noformat}
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 7 months
[JBoss JIRA] (WFLY-12643) Memory leak in FlashScope - expired elements are not cleared
by Bartosz Spyrko (Jira)
[ https://issues.jboss.org/browse/WFLY-12643?page=com.atlassian.jira.plugin... ]
Bartosz Spyrko moved JBEAP-17741 to WFLY-12643:
-----------------------------------------------
Project: WildFly (was: JBoss Enterprise Application Platform)
Key: WFLY-12643 (was: JBEAP-17741)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: JSF
(was: JSF)
Affects Version/s: (was: 7.2.3.GA)
QE Test Coverage: (was: +)
Fix Version/s: (was: 7.2.5.GA)
> Memory leak in FlashScope - expired elements are not cleared
> ------------------------------------------------------------
>
> Key: WFLY-12643
> URL: https://issues.jboss.org/browse/WFLY-12643
> Project: WildFly
> Issue Type: Bug
> Components: JSF
> Environment: * JBoss EAP 7.2.3 (also JBoss EAP 7.1.6 that is the latest version in 7.1.x is affected by this issue)
> Reporter: Bartosz Spyrko
> Assignee: Bartosz Spyrko
> Priority: Critical
>
> Objects in FlashScope is not cleared and keep accumulating even if POST-REDIRECT-BACK is completed.
> If we put a huge object to FlashScope continuously as the following code, Java heap space will be exhausted soon.
> {code:java}
> @Model
> public class Action {
> private static final int oneHundredMB = 1024 * 1024 * 100;
> public String next() {
> Flash flash = FacesContext.getCurrentInstance().getExternalContext().getFlash();
> flash.putNow("huge", new byte[oneHundredMB]);
> return "index.xhtml?faces-redirect=true";
> }
> }
> {code}
> When OutOfMemoryError is happened, flashInnerMap field in com.sun.faces.context.flash.ELFlash is bloated.
> {noformat}
> Class Name | Ref. Objects | Shallow Heap | Ref. Shallow Heap | Retained Heap
> -----------------------------------------------------------------------------------------------------------------------------------------
> java.lang.Thread @ 0xeea24380 default task-1 Thread | 1 | 120 | 64 | 20,800
> '- <Java Local> com.sun.faces.context.flash.ELFlash @ 0xee9e4608 | 1 | 40 | 64 | 64
> '- flashInnerMap java.util.concurrent.ConcurrentHashMap @ 0xee9e4630| 1 | 64 | 64 | 314,574,048
> -----------------------------------------------------------------------------------------------------------------------------------------
> {noformat}
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 7 months