[JBoss JIRA] (ISPN-6828) PersistentStateTransferQueryIndexTest.testFetchingPersistentStateUpdatesIndex random failures
by Dan Berindei (JIRA)
Dan Berindei created ISPN-6828:
----------------------------------
Summary: PersistentStateTransferQueryIndexTest.testFetchingPersistentStateUpdatesIndex random failures
Key: ISPN-6828
URL: https://issues.jboss.org/browse/ISPN-6828
Project: Infinispan
Issue Type: Bug
Components: Test Suite - Query
Affects Versions: 9.0.0.Alpha2
Reporter: Dan Berindei
Priority: Critical
{noformat}
java.lang.AssertionError: expected:<4> but was:<2>
at org.testng.AssertJUnit.fail(AssertJUnit.java:59)
at org.testng.AssertJUnit.failNotEquals(AssertJUnit.java:364)
at org.testng.AssertJUnit.assertEquals(AssertJUnit.java:80)
at org.testng.AssertJUnit.assertEquals(AssertJUnit.java:245)
at org.testng.AssertJUnit.assertEquals(AssertJUnit.java:252)
at org.infinispan.query.statetransfer.BaseReIndexingTest$1.call(BaseReIndexingTest.java:104)
at org.infinispan.test.TestingUtil.withCacheManager(TestingUtil.java:1311)
at org.infinispan.query.statetransfer.BaseReIndexingTest.addNodeCheckingContentsAndQuery(BaseReIndexingTest.java:95)
at org.infinispan.query.statetransfer.PersistentStateTransferQueryIndexTest.testFetchingPersistentStateUpdatesIndex(PersistentStateTransferQueryIndexTest.java:58)
{noformat}
The failure seems more state transfer + passivation-related than query-related.
http://ci.infinispan.org/project.html?projectId=Infinispan&testNameId=352...
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6689) Scala @switch doesn't work for OperationStatus Enumeration
by Dan Berindei (JIRA)
[ https://issues.jboss.org/browse/ISPN-6689?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-6689:
-------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
> Scala @switch doesn't work for OperationStatus Enumeration
> ----------------------------------------------------------
>
> Key: ISPN-6689
> URL: https://issues.jboss.org/browse/ISPN-6689
> Project: Infinispan
> Issue Type: Bug
> Components: Build process
> Affects Versions: 9.0.0.Alpha2
> Reporter: Dan Berindei
> Assignee: Vojtech Juranek
> Priority: Minor
> Fix For: 9.0.0.Alpha3
>
>
> {noformat}
> [WARNING] /tmp/privatebuild/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/OperationStatus.scala:36: warning: could not emit switch for @switch annotated match
> [INFO] (st: @switch) match {
> [INFO] ^
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6754) Get rid of feature and deprecation warnings when compiling Hotrod server
by Dan Berindei (JIRA)
[ https://issues.jboss.org/browse/ISPN-6754?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-6754:
-------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 9.0.0.Alpha3
Resolution: Done
> Get rid of feature and deprecation warnings when compiling Hotrod server
> ------------------------------------------------------------------------
>
> Key: ISPN-6754
> URL: https://issues.jboss.org/browse/ISPN-6754
> Project: Infinispan
> Issue Type: Task
> Components: Server
> Reporter: Vojtech Juranek
> Assignee: Vojtech Juranek
> Priority: Minor
> Fix For: 9.0.0.Alpha3
>
>
> there's couple of feature and deprecation warning when compiling Hotrod server:
> {noformat}
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/iteration/IterationManager.scala:120: warning: inferred existential type Option[org.infinispan.filter.KeyValueFilterConverterFactory[_$2,_$3,_$4]] forSome { type _$2; type _$3; type _$4 }, which cannot be expressed by wildcards, should be enabled
> [INFO] by making the implicit value scala.language.existentials visible.
> [INFO] This can be achieved by adding the import clause 'import scala.language.existentials'
> [INFO] or by setting the compiler option -language:existentials.
> [INFO] See the Scala docs for value scala.language.existentials for a discussion
> [INFO] why the feature should be explicitly enabled.
> [INFO] Option(filterConverterFactoryMap.get(name)).orElse(throw log.missingKeyValueFilterConverterFactory(name))
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/iteration/IterationManager.scala:123: warning: inferred existential type Some[(org.infinispan.filter.KeyValueFilterConverter[_$5,_$6,_$7], Boolean)] forSome { type _$5; type _$6; type _$7 }, which cannot be expressed by wildcards, should be enabled
> [INFO] by making the implicit value scala.language.existentials visible.
> [INFO] factory match {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/package.scala:21: warning: implicit conversion method asScalaFunction should be enabled
> [INFO] by making the implicit value scala.language.implicitConversions visible.
> [INFO] This can be achieved by adding the import clause 'import scala.language.implicitConversions'
> [INFO] or by setting the compiler option -language:implicitConversions.
> [INFO] See the Scala docs for value scala.language.implicitConversions for a discussion
> [INFO] why the feature should be explicitly enabled.
> [INFO] implicit def asScalaFunction[T, U](f: J8Function[T, U]): T => U = new Function[T, U] {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/package.scala:25: warning: implicit conversion method asJavaFunction should be enabled
> [INFO] by making the implicit value scala.language.implicitConversions visible.
> [INFO] implicit def asJavaFunction[T, U](f: T => U): J8Function[T, U] = new J8Function[T, U] {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/package.scala:29: warning: implicit conversion method asJavaConsumer should be enabled
> [INFO] by making the implicit value scala.language.implicitConversions visible.
> [INFO] implicit def asJavaConsumer[T](f: T => Unit): J8Consumer[T] = new J8Consumer[T] {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/package.scala:33: warning: implicit conversion method asJavaBiConsumer should be enabled
> [INFO] by making the implicit value scala.language.implicitConversions visible.
> [INFO] implicit def asJavaBiConsumer[T, U](f: (T, U) => Unit): J8BiConsumer[T, U] = new J8BiConsumer[T, U] {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/package.scala:37: warning: implicit conversion method asJavaRunnable should be enabled
> [INFO] by making the implicit value scala.language.implicitConversions visible.
> [INFO] implicit def asJavaRunnable(f: () => Unit): Runnable = new Runnable {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/AbstractTopologyAwareEncoder1x.scala:24: warning: method numVirtualNodes in class HashConfiguration is deprecated: see corresponding Javadoc for more information.
> [INFO] cfg.clustering().hash().numVirtualNodes())
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/hotrod/src/main/scala/org/infinispan/server/hotrod/AbstractTopologyAwareEncoder1x.scala:125: warning: method getHashFunction in trait ConsistentHash is deprecated: see corresponding Javadoc for more information.
> [INFO] val normalizedHash = ch.getHashFunction.hash(i) & Integer.MAX_VALUE
> [INFO] ^
> [WARNING] 9 warnings found
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6827) ReplTotalOrderVersionedStateTransferTest.testStateTransfer random failures
by Dan Berindei (JIRA)
[ https://issues.jboss.org/browse/ISPN-6827?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-6827:
-------------------------------
Attachment: ReplTotalOrderVersionedStateTransferTest_pr_rvansa_ISPN-5989_20160314.log.zip
Found an older TRACE log on my machine.
> ReplTotalOrderVersionedStateTransferTest.testStateTransfer random failures
> ---------------------------------------------------------------------------
>
> Key: ISPN-6827
> URL: https://issues.jboss.org/browse/ISPN-6827
> Project: Infinispan
> Issue Type: Bug
> Components: Core, Test Suite - Core
> Affects Versions: 9.0.0.Alpha2
> Reporter: Dan Berindei
> Priority: Critical
> Labels: testsuite_stability
> Fix For: 9.0.0.Alpha3
>
> Attachments: ReplTotalOrderVersionedStateTransferTest_pr_rvansa_ISPN-5989_20160314.log.zip
>
>
> {noformat}
> java.lang.RuntimeException: Timed out waiting for rebalancing to complete on node ReplTotalOrderVersionedStateTransferTest-NodeB-17608, expected member list is [ReplTotalOrderVersionedStateTransferTest-NodeB-17608, ReplTotalOrderVersionedStateTransferTest-NodeC-39826], current member list is [ReplTotalOrderVersionedStateTransferTest-NodeA-54647, ReplTotalOrderVersionedStateTransferTest-NodeB-17608, ReplTotalOrderVersionedStateTransferTest-NodeC-39826]!
> at org.infinispan.test.TestingUtil.waitForRehashToComplete(TestingUtil.java:267)
> at org.infinispan.test.TestingUtil.waitForRehashToComplete(TestingUtil.java:277)
> at org.infinispan.container.versioning.VersionedReplStateTransferTest.testStateTransfer(VersionedReplStateTransferTest.java:74)
> {noformat}
> http://ci.infinispan.org/project.html?tab=testDetails&testNameId=-7264982...
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6827) ReplTotalOrderVersionedStateTransferTest.testStateTransfer random failures
by Dan Berindei (JIRA)
Dan Berindei created ISPN-6827:
----------------------------------
Summary: ReplTotalOrderVersionedStateTransferTest.testStateTransfer random failures
Key: ISPN-6827
URL: https://issues.jboss.org/browse/ISPN-6827
Project: Infinispan
Issue Type: Bug
Components: Core, Test Suite - Core
Affects Versions: 9.0.0.Alpha2
Reporter: Dan Berindei
Priority: Critical
Fix For: 9.0.0.Alpha3
{noformat}
java.lang.RuntimeException: Timed out waiting for rebalancing to complete on node ReplTotalOrderVersionedStateTransferTest-NodeB-17608, expected member list is [ReplTotalOrderVersionedStateTransferTest-NodeB-17608, ReplTotalOrderVersionedStateTransferTest-NodeC-39826], current member list is [ReplTotalOrderVersionedStateTransferTest-NodeA-54647, ReplTotalOrderVersionedStateTransferTest-NodeB-17608, ReplTotalOrderVersionedStateTransferTest-NodeC-39826]!
at org.infinispan.test.TestingUtil.waitForRehashToComplete(TestingUtil.java:267)
at org.infinispan.test.TestingUtil.waitForRehashToComplete(TestingUtil.java:277)
at org.infinispan.container.versioning.VersionedReplStateTransferTest.testStateTransfer(VersionedReplStateTransferTest.java:74)
{noformat}
http://ci.infinispan.org/project.html?tab=testDetails&testNameId=-7264982...
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months