[JBoss JIRA] (ISPN-8464) Calculate & adjust default persistence size
by Sebastian Łaskawiec (JIRA)
[ https://issues.jboss.org/browse/ISPN-8464?page=com.atlassian.jira.plugin.... ]
Sebastian Łaskawiec updated ISPN-8464:
--------------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
> Calculate & adjust default persistence size
> -------------------------------------------
>
> Key: ISPN-8464
> URL: https://issues.jboss.org/browse/ISPN-8464
> Project: Infinispan
> Issue Type: Enhancement
> Components: Cloud Integrations
> Reporter: Pedro Zapata
> Assignee: Sebastian Łaskawiec
> Priority: Minor
>
> There's a persistence volume claim of 1GiB. However, the amount of data to be stored for runtime info, given no cache store will be used, should be minimal.
> Goal: get some measures of the expected amount of persistent space consumed and reduce the 1GiB claim to a more adjusted amount.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 2 months
[JBoss JIRA] (ISPN-8397) Tune eviction and memory settings for Caching Service
by Sebastian Łaskawiec (JIRA)
[ https://issues.jboss.org/browse/ISPN-8397?page=com.atlassian.jira.plugin.... ]
Sebastian Łaskawiec commented on ISPN-8397:
-------------------------------------------
Current setup:
* Container Size - Xmx (100 MB)
* JVM overhead (200 MB)
* 30% of Container Capacity (measured empirically, lower value caused the container to crash)
Test details:
* Test was performed with 1K key and value
* 2 Threads were inserting and getting values from the cache
Test results:
* https://docs.google.com/spreadsheets/u/1/d/1ILk1gqdtY8bYArfwKCg5DBcjLO1gs...
* For 700 MB Container, the calculated eviction size is 190 MB.
* For 512 MB, it's ~59 MB.
* 430 MB is the smallest container you can get with those values. Otherwise negative eviction parameter is calculated, which is not valid.
* 1 GB container was ran using 10K keys and values. Calculated eviction size was 346 MB.
[~william.burns] mentioned that:
* Off-heap scales pretty good and the lowest observer overhead was 100 B/entry.
* There is no noticeable difference between 1 and 2 threads in the test.
* Someones eviction doesn't work for some reason.
* Calling {{clear}} might be a potential problem because it load all entries on heap.
Full explanation has been described [here|http://post-office.corp.redhat.com/archives/jboss-clustering-team/20...]. The calibration work will be continued in ISPN-8540.
> Tune eviction and memory settings for Caching Service
> -----------------------------------------------------
>
> Key: ISPN-8397
> URL: https://issues.jboss.org/browse/ISPN-8397
> Project: Infinispan
> Issue Type: Feature Request
> Components: Cloud Integrations
> Reporter: Sebastian Łaskawiec
> Assignee: Sebastian Łaskawiec
>
> We need to prevent going out of memory. This requires tuning memory as well as eviction settings.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 2 months
[JBoss JIRA] (ISPN-8543) Make Global configuration persistence pluggable
by Tristan Tarrant (JIRA)
Tristan Tarrant created ISPN-8543:
-------------------------------------
Summary: Make Global configuration persistence pluggable
Key: ISPN-8543
URL: https://issues.jboss.org/browse/ISPN-8543
Project: Infinispan
Issue Type: Enhancement
Components: Configuration
Affects Versions: 9.2.0.Beta1
Reporter: Tristan Tarrant
Assignee: Tristan Tarrant
Fix For: 9.2.0.Beta2
The configuration persistence backend implemented in ISPN-7776 should be made pluggable so that we can support alternate implementations such as ones that tie into the server model.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 2 months
[JBoss JIRA] (ISPN-8542) IndexedField annotation in proto file causes java.lang.NumberFormatException
by Adrian Nistor (JIRA)
[ https://issues.jboss.org/browse/ISPN-8542?page=com.atlassian.jira.plugin.... ]
Adrian Nistor updated ISPN-8542:
--------------------------------
Git Pull Request: https://github.com/infinispan/infinispan/pull/5592/, https://github.com/infinispan/infinispan/pull/5593 (was: https://github.com/infinispan/infinispan/pull/5592/)
> IndexedField annotation in proto file causes java.lang.NumberFormatException
> ----------------------------------------------------------------------------
>
> Key: ISPN-8542
> URL: https://issues.jboss.org/browse/ISPN-8542
> Project: Infinispan
> Issue Type: Bug
> Components: Remote Querying
> Affects Versions: 9.1.0.Final
> Reporter: Adrian Nistor
> Assignee: Adrian Nistor
> Fix For: 9.2.0.Beta2, 9.1.4.Final
>
>
> The Query Tests are both failing in the CR2 build with the following error:
> {noformat}
> Start 7: queryTest
> 7: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest
> 7: Test timeout computed to be: 1500
> 7: Tests for Query
> 7: User(id=3,name=Tom,surname=Cat)
> 7: User(id=4,name=Jerry,surname=Mouse)
> 7: Tom Cat
> 7: Jerry Mouse
> 7: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 7: what(): java.lang.NumberFormatException: For input string: "_null_"
> 7/22 Test #7: queryTest ........................***Exception: Other 0.27 sec
> test 8
> Start 8: queryTest-static
> 8: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest-static
> 8: Test timeout computed to be: 1500
> 8: Tests for Query
> 8: User(id=3,name=Tom,surname=Cat)
> 8: User(id=4,name=Jerry,surname=Mouse)
> 8: Tom Cat
> 8: Jerry Mouse
> 8: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 8: what(): java.lang.NumberFormatException: For input string: "_null_"
> 8/22 Test #8: queryTest-static .................***Exception: Other 0.08 sec
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 2 months
[JBoss JIRA] (ISPN-8542) IndexedField annotation in proto file causes java.lang.NumberFormatException
by Adrian Nistor (JIRA)
[ https://issues.jboss.org/browse/ISPN-8542?page=com.atlassian.jira.plugin.... ]
Adrian Nistor updated ISPN-8542:
--------------------------------
Status: Pull Request Sent (was: Coding In Progress)
Git Pull Request: https://github.com/infinispan/infinispan/pull/5592/
> IndexedField annotation in proto file causes java.lang.NumberFormatException
> ----------------------------------------------------------------------------
>
> Key: ISPN-8542
> URL: https://issues.jboss.org/browse/ISPN-8542
> Project: Infinispan
> Issue Type: Bug
> Components: Remote Querying
> Affects Versions: 9.1.0.Final
> Reporter: Adrian Nistor
> Assignee: Adrian Nistor
> Fix For: 9.2.0.Beta2, 9.1.4.Final
>
>
> The Query Tests are both failing in the CR2 build with the following error:
> {noformat}
> Start 7: queryTest
> 7: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest
> 7: Test timeout computed to be: 1500
> 7: Tests for Query
> 7: User(id=3,name=Tom,surname=Cat)
> 7: User(id=4,name=Jerry,surname=Mouse)
> 7: Tom Cat
> 7: Jerry Mouse
> 7: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 7: what(): java.lang.NumberFormatException: For input string: "_null_"
> 7/22 Test #7: queryTest ........................***Exception: Other 0.27 sec
> test 8
> Start 8: queryTest-static
> 8: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest-static
> 8: Test timeout computed to be: 1500
> 8: Tests for Query
> 8: User(id=3,name=Tom,surname=Cat)
> 8: User(id=4,name=Jerry,surname=Mouse)
> 8: Tom Cat
> 8: Jerry Mouse
> 8: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 8: what(): java.lang.NumberFormatException: For input string: "_null_"
> 8/22 Test #8: queryTest-static .................***Exception: Other 0.08 sec
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 2 months
[JBoss JIRA] (ISPN-8542) IndexedField annotation in proto file causes java.lang.NumberFormatException
by Adrian Nistor (JIRA)
[ https://issues.jboss.org/browse/ISPN-8542?page=com.atlassian.jira.plugin.... ]
Adrian Nistor updated ISPN-8542:
--------------------------------
Fix Version/s: 9.2.0.Beta2
9.1.4.Final
> IndexedField annotation in proto file causes java.lang.NumberFormatException
> ----------------------------------------------------------------------------
>
> Key: ISPN-8542
> URL: https://issues.jboss.org/browse/ISPN-8542
> Project: Infinispan
> Issue Type: Bug
> Components: Remote Querying
> Affects Versions: 9.1.0.Final
> Reporter: Adrian Nistor
> Assignee: Adrian Nistor
> Fix For: 9.2.0.Beta2, 9.1.4.Final
>
>
> The Query Tests are both failing in the CR2 build with the following error:
> {noformat}
> Start 7: queryTest
> 7: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest
> 7: Test timeout computed to be: 1500
> 7: Tests for Query
> 7: User(id=3,name=Tom,surname=Cat)
> 7: User(id=4,name=Jerry,surname=Mouse)
> 7: Tom Cat
> 7: Jerry Mouse
> 7: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 7: what(): java.lang.NumberFormatException: For input string: "_null_"
> 7/22 Test #7: queryTest ........................***Exception: Other 0.27 sec
> test 8
> Start 8: queryTest-static
> 8: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest-static
> 8: Test timeout computed to be: 1500
> 8: Tests for Query
> 8: User(id=3,name=Tom,surname=Cat)
> 8: User(id=4,name=Jerry,surname=Mouse)
> 8: Tom Cat
> 8: Jerry Mouse
> 8: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 8: what(): java.lang.NumberFormatException: For input string: "_null_"
> 8/22 Test #8: queryTest-static .................***Exception: Other 0.08 sec
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 2 months
[JBoss JIRA] (ISPN-8542) IndexedField annotation in proto file causes java.lang.NumberFormatException
by Adrian Nistor (JIRA)
[ https://issues.jboss.org/browse/ISPN-8542?page=com.atlassian.jira.plugin.... ]
Work on ISPN-8542 started by Adrian Nistor.
-------------------------------------------
> IndexedField annotation in proto file causes java.lang.NumberFormatException
> ----------------------------------------------------------------------------
>
> Key: ISPN-8542
> URL: https://issues.jboss.org/browse/ISPN-8542
> Project: Infinispan
> Issue Type: Bug
> Components: Remote Querying
> Affects Versions: 9.1.0.Final
> Reporter: Adrian Nistor
> Assignee: Adrian Nistor
>
> The Query Tests are both failing in the CR2 build with the following error:
> {noformat}
> Start 7: queryTest
> 7: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest
> 7: Test timeout computed to be: 1500
> 7: Tests for Query
> 7: User(id=3,name=Tom,surname=Cat)
> 7: User(id=4,name=Jerry,surname=Mouse)
> 7: Tom Cat
> 7: Jerry Mouse
> 7: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 7: what(): java.lang.NumberFormatException: For input string: "_null_"
> 7/22 Test #7: queryTest ........................***Exception: Other 0.27 sec
> test 8
> Start 8: queryTest-static
> 8: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest-static
> 8: Test timeout computed to be: 1500
> 8: Tests for Query
> 8: User(id=3,name=Tom,surname=Cat)
> 8: User(id=4,name=Jerry,surname=Mouse)
> 8: Tom Cat
> 8: Jerry Mouse
> 8: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 8: what(): java.lang.NumberFormatException: For input string: "_null_"
> 8/22 Test #8: queryTest-static .................***Exception: Other 0.08 sec
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 2 months
[JBoss JIRA] (ISPN-8542) IndexedField annotation in proto file causes java.lang.NumberFormatException
by Adrian Nistor (JIRA)
[ https://issues.jboss.org/browse/ISPN-8542?page=com.atlassian.jira.plugin.... ]
Adrian Nistor moved JDG-1370 to ISPN-8542:
------------------------------------------
Project: Infinispan (was: JBoss Data Grid)
Key: ISPN-8542 (was: JDG-1370)
Workflow: GIT Pull Request with Triage workflow (was: CDW with loose statuses v1)
Component/s: Remote Querying
(was: Indexing)
Affects Version/s: 9.1.0.Final
(was: JDG 7.1.1 CR2)
> IndexedField annotation in proto file causes java.lang.NumberFormatException
> ----------------------------------------------------------------------------
>
> Key: ISPN-8542
> URL: https://issues.jboss.org/browse/ISPN-8542
> Project: Infinispan
> Issue Type: Bug
> Components: Remote Querying
> Affects Versions: 9.1.0.Final
> Reporter: Adrian Nistor
> Assignee: Adrian Nistor
>
> The Query Tests are both failing in the CR2 build with the following error:
> {noformat}
> Start 7: queryTest
> 7: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest
> 7: Test timeout computed to be: 1500
> 7: Tests for Query
> 7: User(id=3,name=Tom,surname=Cat)
> 7: User(id=4,name=Jerry,surname=Mouse)
> 7: Tom Cat
> 7: Jerry Mouse
> 7: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 7: what(): java.lang.NumberFormatException: For input string: "_null_"
> 7/22 Test #7: queryTest ........................***Exception: Other 0.27 sec
> test 8
> Start 8: queryTest-static
> 8: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest-static
> 8: Test timeout computed to be: 1500
> 8: Tests for Query
> 8: User(id=3,name=Tom,surname=Cat)
> 8: User(id=4,name=Jerry,surname=Mouse)
> 8: Tom Cat
> 8: Jerry Mouse
> 8: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 8: what(): java.lang.NumberFormatException: For input string: "_null_"
> 8/22 Test #8: queryTest-static .................***Exception: Other 0.08 sec
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 2 months
[JBoss JIRA] (ISPN-8542) IndexedField annotation in proto file causes java.lang.NumberFormatException
by Adrian Nistor (JIRA)
[ https://issues.jboss.org/browse/ISPN-8542?page=com.atlassian.jira.plugin.... ]
Adrian Nistor updated ISPN-8542:
--------------------------------
Status: Open (was: New)
> IndexedField annotation in proto file causes java.lang.NumberFormatException
> ----------------------------------------------------------------------------
>
> Key: ISPN-8542
> URL: https://issues.jboss.org/browse/ISPN-8542
> Project: Infinispan
> Issue Type: Bug
> Components: Remote Querying
> Affects Versions: 9.1.0.Final
> Reporter: Adrian Nistor
> Assignee: Adrian Nistor
>
> The Query Tests are both failing in the CR2 build with the following error:
> {noformat}
> Start 7: queryTest
> 7: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest
> 7: Test timeout computed to be: 1500
> 7: Tests for Query
> 7: User(id=3,name=Tom,surname=Cat)
> 7: User(id=4,name=Jerry,surname=Mouse)
> 7: Tom Cat
> 7: Jerry Mouse
> 7: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 7: what(): java.lang.NumberFormatException: For input string: "_null_"
> 7/22 Test #7: queryTest ........................***Exception: Other 0.27 sec
> test 8
> Start 8: queryTest-static
> 8: Test command: /artifacts/jdg-cpp-client-JDG_7.1.1.Final-BOTH/rhel7/build/queryTest-static
> 8: Test timeout computed to be: 1500
> 8: Tests for Query
> 8: User(id=3,name=Tom,surname=Cat)
> 8: User(id=4,name=Jerry,surname=Mouse)
> 8: Tom Cat
> 8: Jerry Mouse
> 8: terminate called after throwing an instance of 'infinispan::hotrod::HotRodClientException'
> 8: what(): java.lang.NumberFormatException: For input string: "_null_"
> 8/22 Test #8: queryTest-static .................***Exception: Other 0.08 sec
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 2 months