[JBoss JIRA] (ISPN-11805) Fix tests in Infinispan Anchored Keys
by Will Burns (Jira)
[ https://issues.redhat.com/browse/ISPN-11805?page=com.atlassian.jira.plugi... ]
Will Burns updated ISPN-11805:
------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
> Fix tests in Infinispan Anchored Keys
> -------------------------------------
>
> Key: ISPN-11805
> URL: https://issues.redhat.com/browse/ISPN-11805
> Project: Infinispan
> Issue Type: Bug
> Affects Versions: 11.0.0.Dev05
> Reporter: Pedro Ruivo
> Assignee: Pedro Ruivo
> Priority: Major
> Fix For: 11.0.0.CR1
>
>
> There are 2 failure in this module:
> {code}
> java.lang.AssertionError: Class org.infinispan.anchored.ScaleUpWithoutStateTransferTest has an invalid testName: stationary.ScalingUpWithoutStateTransferTest
> {code}
> {code}
> org.infinispan.commons.CacheConfigurationException: Anchored keys requires cache to be in replication mode
> {code}
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
4 years, 8 months
[JBoss JIRA] (ISPN-11424) Deprecate StorageType Configuration in favour of MediaType
by Will Burns (Jira)
[ https://issues.redhat.com/browse/ISPN-11424?page=com.atlassian.jira.plugi... ]
Will Burns updated ISPN-11424:
------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 11.0.0.CR1
Resolution: Done
> Deprecate StorageType Configuration in favour of MediaType
> ----------------------------------------------------------
>
> Key: ISPN-11424
> URL: https://issues.redhat.com/browse/ISPN-11424
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Affects Versions: 11.0.0.Alpha2
> Reporter: Gustavo Fernandes
> Assignee: Gustavo Fernandes
> Priority: Major
> Fix For: 11.0.0.CR1
>
>
> Currently caches have configuration to specify memory storing aspects that affects eviction, e.g.
> {code:xml}
> <memory>
> <object size="20000"/>
> </memory>
> {code}
> {code:xml}
> <memory>
> <off-heap size="10000000" eviction="MEMORY"/>
> </memory>
> {code}
> {code:xml}
> <memory>
> <binary strategy="EXCEPTION" eviction="MEMORY" size="5000"/>
> </memory>
> {code}
> Each of those configurations affect the format that the data will be stored, being {{object}} the default on-heap storage, {{off-heap}} the {{byte[]}} out of heap storage and {{binary}} an on-heap format that mix {{byte[]}}, {{String}} and primitives.
> This ticket proposes to have the {{MediaType}} of the keys and values to dictate the storage format, and let the {{<memory>}} element to be responsible to choose between on-heap and off-heap storage, eliminating the {{Binary}} option altogether. The configuration would be something like:
> {code:xml}
> <!-- Default configuration, heap storage with POJOs -->
> <memory storage="heap">
> <eviction size="20000"/>
> </memory>
> {code}
> {code:xml}
> <!-- Storing java serialized objects, on-heap -->
> <encoding>
> <key media-type="application/x-java-serialized-object"/>
> <value media-type="application/x-java-serialized-object"/>
> </encoding>
> <memory storage="heap">
> <eviction size="20000"/>
> </memory>
> {code}
> {code:xml}
> <!-- Off-heap configuration, in protobuf format -->
> <encoding>
> <key media-type="application/x-protostream"/>
> <value media-type="application/x-protostream"/>
> </encoding>
> <memory storage="off-heap">
> <eviction size="10000000" eviction="MEMORY"/>
> </memory>
> {code}
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
4 years, 8 months
[JBoss JIRA] (ISPN-11807) Create a FORKED mode for InfinispanServerRule
by Gustavo Lira e Silva (Jira)
Gustavo Lira e Silva created ISPN-11807:
-------------------------------------------
Summary: Create a FORKED mode for InfinispanServerRule
Key: ISPN-11807
URL: https://issues.redhat.com/browse/ISPN-11807
Project: Infinispan
Issue Type: Enhancement
Components: Test Suite
Affects Versions: 11.0.0.CR1
Reporter: Gustavo Lira e Silva
Assignee: Gustavo Lira e Silva
As a QE there's is some scenarios which we want to run the tests using a forked process instead of container or embedded
EAP team wants to use InfinispanServerRule in his EAP clustering tests using a forked process.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
4 years, 8 months