[JBoss JIRA] (ISPN-8637) ReadAfterLostDataTest.testPutMap failure
by Pedro Ruivo (JIRA)
[ https://issues.jboss.org/browse/ISPN-8637?page=com.atlassian.jira.plugin.... ]
Pedro Ruivo updated ISPN-8637:
------------------------------
Status: Open (was: New)
> ReadAfterLostDataTest.testPutMap failure
> ----------------------------------------
>
> Key: ISPN-8637
> URL: https://issues.jboss.org/browse/ISPN-8637
> Project: Infinispan
> Issue Type: Bug
> Components: Test Suite - Core
> Reporter: Pedro Ruivo
> Assignee: Pedro Ruivo
> Labels: testsuite_stability
>
> assert fails:
> {code:java}
> Caused by: java.lang.AssertionError: SegmentBasedCollector{id=56430, topologyId=13, primaryResult=null, primaryResultReceived=false, backups={ReadAfterLostDataTest[DIST_SYNC]-NodeD-52928=[118], ReadAfterLostDataTest[DIST_SYNC]-NodeB-35269=[212, 86], ReadAfterLostDataTest[DIST_SYNC]-NodeC-19848=[252]}}
> {code}
> I need to investigate further, but I guess it is OK to replace the collector if the new has a topology id higher. the collector ignores acks from old topologies anyway.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (ISPN-8637) ReadAfterLostDataTest.testPutMap failure
by Pedro Ruivo (JIRA)
[ https://issues.jboss.org/browse/ISPN-8637?page=com.atlassian.jira.plugin.... ]
Pedro Ruivo updated ISPN-8637:
------------------------------
Labels: testsuite_stability (was: )
> ReadAfterLostDataTest.testPutMap failure
> ----------------------------------------
>
> Key: ISPN-8637
> URL: https://issues.jboss.org/browse/ISPN-8637
> Project: Infinispan
> Issue Type: Bug
> Components: Test Suite - Core
> Reporter: Pedro Ruivo
> Assignee: Pedro Ruivo
> Labels: testsuite_stability
>
> assert fails:
> {code:java}
> Caused by: java.lang.AssertionError: SegmentBasedCollector{id=56430, topologyId=13, primaryResult=null, primaryResultReceived=false, backups={ReadAfterLostDataTest[DIST_SYNC]-NodeD-52928=[118], ReadAfterLostDataTest[DIST_SYNC]-NodeB-35269=[212, 86], ReadAfterLostDataTest[DIST_SYNC]-NodeC-19848=[252]}}
> {code}
> I need to investigate further, but I guess it is OK to replace the collector if the new has a topology id higher. the collector ignores acks from old topologies anyway.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (ISPN-8640) Caching service - compatibility doesn't work
by Roman Macor (JIRA)
Roman Macor created ISPN-8640:
---------------------------------
Summary: Caching service - compatibility doesn't work
Key: ISPN-8640
URL: https://issues.jboss.org/browse/ISPN-8640
Project: Infinispan
Issue Type: Bug
Components: Cloud
Affects Versions: 9.1.3.Final
Reporter: Roman Macor
Compatibility doesn't work in caching service.
Steps to reproduce:
- put an entry via hotrod
- get the entry via rest
Result:
Rest code 404
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (ISPN-8639) Merge policy tests random failures with ArrayIndexOutOfBoundsException
by Dan Berindei (JIRA)
Dan Berindei created ISPN-8639:
----------------------------------
Summary: Merge policy tests random failures with ArrayIndexOutOfBoundsException
Key: ISPN-8639
URL: https://issues.jboss.org/browse/ISPN-8639
Project: Infinispan
Issue Type: Bug
Components: Test Suite - Core
Affects Versions: 9.2.0.Beta2
Reporter: Dan Berindei
Assignee: Dan Berindei
Fix For: 9.2.0.CR1
{{BaseMergePolicyTest.getCacheFromPreferredPartition()}} reads the cache status of all the running caches, including the {{CONFIG}} cache, but assumes a 1-to-1 mapping between the responses list and the input caches (the default cache on each node).
Depending on how the responses are ordered, it may try to return a cache that doesn't exist in the input array:
{noformat}
10:47:41,378 ERROR (testng-Test:[]) [TestSuiteProgress] Test failed: org.infinispan.conflict.impl.MergePolicyRemoveAllTest.testPartitionMergePolicy[DIST_SYNC, 5N]
java.lang.ArrayIndexOutOfBoundsException: 8
at org.infinispan.conflict.impl.BaseMergePolicyTest.getCacheFromPreferredPartition(BaseMergePolicyTest.java:190) ~[test-classes/:?]
at org.infinispan.conflict.impl.BaseMergePolicyTest.getCacheFromPreferredPartition(BaseMergePolicyTest.java:153) ~[test-classes/:?]
at org.infinispan.conflict.impl.BaseMergePolicyTest.testPartitionMergePolicy(BaseMergePolicyTest.java:124) ~[test-classes/:?]
{noformat}
{noformat}
16:57:12,012 ERROR (testng-Test:[]) [TestSuiteProgress] Test failed: org.infinispan.conflict.impl.MergePolicyCustomTest.testPartitionMergePolicy[DIST_SYNC, 4N]
java.lang.ArrayIndexOutOfBoundsException: 6
at org.infinispan.conflict.impl.BaseMergePolicyTest.getCacheFromPreferredPartition(BaseMergePolicyTest.java:190) ~[test-classes/:?]
at org.infinispan.conflict.impl.BaseMergePolicyTest.getCacheFromPreferredPartition(BaseMergePolicyTest.java:153) ~[test-classes/:?]
at org.infinispan.conflict.impl.BaseMergePolicyTest.testPartitionMergePolicy(BaseMergePolicyTest.java:124) ~[test-classes/:?]
{noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (ISPN-8639) Merge policy tests random failures with ArrayIndexOutOfBoundsException
by Dan Berindei (JIRA)
[ https://issues.jboss.org/browse/ISPN-8639?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-8639:
-------------------------------
Status: Open (was: New)
> Merge policy tests random failures with ArrayIndexOutOfBoundsException
> ----------------------------------------------------------------------
>
> Key: ISPN-8639
> URL: https://issues.jboss.org/browse/ISPN-8639
> Project: Infinispan
> Issue Type: Bug
> Components: Test Suite - Core
> Affects Versions: 9.2.0.Beta2
> Reporter: Dan Berindei
> Assignee: Dan Berindei
> Labels: testsuite_stability
> Fix For: 9.2.0.CR1
>
>
> {{BaseMergePolicyTest.getCacheFromPreferredPartition()}} reads the cache status of all the running caches, including the {{CONFIG}} cache, but assumes a 1-to-1 mapping between the responses list and the input caches (the default cache on each node).
> Depending on how the responses are ordered, it may try to return a cache that doesn't exist in the input array:
> {noformat}
> 10:47:41,378 ERROR (testng-Test:[]) [TestSuiteProgress] Test failed: org.infinispan.conflict.impl.MergePolicyRemoveAllTest.testPartitionMergePolicy[DIST_SYNC, 5N]
> java.lang.ArrayIndexOutOfBoundsException: 8
> at org.infinispan.conflict.impl.BaseMergePolicyTest.getCacheFromPreferredPartition(BaseMergePolicyTest.java:190) ~[test-classes/:?]
> at org.infinispan.conflict.impl.BaseMergePolicyTest.getCacheFromPreferredPartition(BaseMergePolicyTest.java:153) ~[test-classes/:?]
> at org.infinispan.conflict.impl.BaseMergePolicyTest.testPartitionMergePolicy(BaseMergePolicyTest.java:124) ~[test-classes/:?]
> {noformat}
> {noformat}
> 16:57:12,012 ERROR (testng-Test:[]) [TestSuiteProgress] Test failed: org.infinispan.conflict.impl.MergePolicyCustomTest.testPartitionMergePolicy[DIST_SYNC, 4N]
> java.lang.ArrayIndexOutOfBoundsException: 6
> at org.infinispan.conflict.impl.BaseMergePolicyTest.getCacheFromPreferredPartition(BaseMergePolicyTest.java:190) ~[test-classes/:?]
> at org.infinispan.conflict.impl.BaseMergePolicyTest.getCacheFromPreferredPartition(BaseMergePolicyTest.java:153) ~[test-classes/:?]
> at org.infinispan.conflict.impl.BaseMergePolicyTest.testPartitionMergePolicy(BaseMergePolicyTest.java:124) ~[test-classes/:?]
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (ISPN-8400) Adjust merge policies for JDG Online Services
by Ryan Emerson (JIRA)
[ https://issues.jboss.org/browse/ISPN-8400?page=com.atlassian.jira.plugin.... ]
Ryan Emerson updated ISPN-8400:
-------------------------------
Fix Version/s: 9.2.0.CR1
(was: 9.2.0.Beta2)
> Adjust merge policies for JDG Online Services
> ---------------------------------------------
>
> Key: ISPN-8400
> URL: https://issues.jboss.org/browse/ISPN-8400
> Project: Infinispan
> Issue Type: Feature Request
> Components: Cloud
> Reporter: Sebastian Łaskawiec
> Assignee: Ryan Emerson
> Fix For: 9.2.0.CR1
>
>
> Both Shared Memory and Caching Service require custom merge policies.
> In Caching Service we need to clear out all conflicted entries upon split brain. Shared Memory service might be a little bit more tricky and we might want to use some different strategy (but that needs to be checked out).
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (ISPN-8356) Embedded distribution names are confusing
by Ryan Emerson (JIRA)
[ https://issues.jboss.org/browse/ISPN-8356?page=com.atlassian.jira.plugin.... ]
Ryan Emerson updated ISPN-8356:
-------------------------------
Fix Version/s: 9.2.0.CR1
(was: 9.2.0.Beta2)
> Embedded distribution names are confusing
> -----------------------------------------
>
> Key: ISPN-8356
> URL: https://issues.jboss.org/browse/ISPN-8356
> Project: Infinispan
> Issue Type: Enhancement
> Components: Build
> Affects Versions: 9.1.1.Final
> Reporter: Tristan Tarrant
> Assignee: Tristan Tarrant
> Fix For: 9.2.0.CR1
>
>
> The binary distribution names for embedded libraries are confusing:
> I propose the following names
>
> - infinispan-${version}-all.zip -> infinispan-embedded-${version}-all.zip
> - infinispan-${version}-minimal.zip -> infinispan-embedded-${version}-minimal.zip
> - infinispan-${version}-remote.zip -> infinispan-remote-${version}.zip
> The website labelling needs to be modified accordingly too
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years