[JBoss JIRA] (ISPN-3724) REST RollUps -- Unsupported protocol version 60 throws annoying ERROR and WARN
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/ISPN-3724?page=com.atlassian.jira.plugin.... ]
RH Bugzilla Integration commented on ISPN-3724:
-----------------------------------------------
Tristan Tarrant <ttarrant(a)redhat.com> changed the Status of [bug 1031660|https://bugzilla.redhat.com/show_bug.cgi?id=1031660] from MODIFIED to ON_QA
> REST RollUps -- Unsupported protocol version 60 throws annoying ERROR and WARN
> ------------------------------------------------------------------------------
>
> Key: ISPN-3724
> URL: https://issues.jboss.org/browse/ISPN-3724
> Project: Infinispan
> Issue Type: Bug
> Affects Versions: 6.0.0.CR1
> Reporter: Tomas Sykora
> Assignee: Mircea Markus
> Labels: 620
> Fix For: 6.0.1.Final, 7.0.0.Alpha1
>
> Attachments: restRollups6dot0to6dot0tryingToGetHRkey, RestRollUpsUnsupportedProtocol60
>
>
> Trying to process REST rolling upgrades using latest infinispan server 6.0.0 snapshot as a TARGET node and the same server as a source node.
> Run Infinispan-server testsuite test for REST Rolling Upgrades.
> mvn clean verify -P suite.examples -Dtest=ExampleConfigsTest#testRestRollingUpgrades -DfailIfNoTests=false
> See new attached file with current stacktrace. REST rolling upgrades from 5.2.x to 6.0 will probably _not_ be supported.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years
[JBoss JIRA] (ISPN-4153) Server can't start a cache with custom cache store
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/ISPN-4153?page=com.atlassian.jira.plugin.... ]
RH Bugzilla Integration commented on ISPN-4153:
-----------------------------------------------
Tristan Tarrant <ttarrant(a)redhat.com> changed the Status of [bug 1080419|https://bugzilla.redhat.com/show_bug.cgi?id=1080419] from NEW to MODIFIED
> Server can't start a cache with custom cache store
> --------------------------------------------------
>
> Key: ISPN-4153
> URL: https://issues.jboss.org/browse/ISPN-4153
> Project: Infinispan
> Issue Type: Bug
> Components: Server
> Reporter: Jakub Markos
> Assignee: William Burns
> Fix For: 7.0.0.Alpha2, 7.0.0.Final
>
>
> This test https://github.com/infinispan/infinispan/blob/master/server/integration/t... fails with current snapshot on server startup:
> {code}
> 12:57:25,277 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-3) MSC000001: Failed to start service jboss.infinispan.local.default.config: org.jboss.msc.service.StartException in service jboss.infinispan.local.default.config: Failed to start service
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1767) [jboss-msc-1.0.4.GA-redhat-1.jar:1.0.4.GA-redhat-1]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1156) [rt.jar:1.7.0]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:626) [rt.jar:1.7.0]
> at java.lang.Thread.run(Thread.java:780) [vm.jar:1.7.0]
> Caused by: org.infinispan.commons.CacheConfigurationException: Missing BuiltBy annotation for configuration bean org.infinispan.configuration.cache.AbstractStoreConfiguration
> at org.infinispan.commons.configuration.ConfigurationUtils.builderFor(ConfigurationUtils.java:20)
> at org.infinispan.configuration.cache.PersistenceConfigurationBuilder.read(PersistenceConfigurationBuilder.java:124)
> at org.infinispan.configuration.cache.ConfigurationBuilder.read(ConfigurationBuilder.java:218)
> at org.infinispan.manager.DefaultCacheManager.defineConfiguration(DefaultCacheManager.java:356) at org.infinispan.manager.DefaultCacheManager.defineConfiguration(DefaultCacheManager.java:322) at org.jboss.as.clustering.infinispan.DefaultEmbeddedCacheManager.defineConfiguration(DefaultEmbeddedCacheManager.java:62)
> at org.jboss.as.clustering.infinispan.subsystem.AbstractCacheConfigurationService.start(AbstractCacheConfigurationService.java:81)
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.4.GA-redhat-1.jar:1.0.4.GA-redhat-1]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.4.GA-redhat-1.jar:1.0.4.GA-redhat-1]
> ... 3 more
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years
[JBoss JIRA] (ISPN-694) Create expiration notification for in-memory cache entries
by Mircea Markus (JIRA)
[ https://issues.jboss.org/browse/ISPN-694?page=com.atlassian.jira.plugin.s... ]
Mircea Markus commented on ISPN-694:
------------------------------------
Here's a concern I have for entries written with maxIdle. owners(k) = {N1, N2}
- if entry is read on N1 repeatedly, and never on N2. then N2 will deceide that maxIdle time has passed and remove the entry
- this will never happen on N1, as max might never be reached
Also a notification will only be triggered on N2, and not on N1.
I guess people using maxIdle don't have high consistency guarantees, but this behavior is pretty awkward and should be documented accordingly.
I would also be curious to hear [~william.burns] thoughts on whether this functionality can be exposed over clustered listeners (and then remote listeners).
> Create expiration notification for in-memory cache entries
> ----------------------------------------------------------
>
> Key: ISPN-694
> URL: https://issues.jboss.org/browse/ISPN-694
> Project: Infinispan
> Issue Type: Feature Request
> Components: Eviction
> Environment: any
> Reporter: Edouard Boily
> Assignee: Galder Zamarreño
> Attachments: 01.patch
>
>
> Create a CacheEntryExpired notification and make EvictionManager send this notification when a cache entry is evicted because it is expired.
> Also mage sure the cache entry value is sent over in the event.
> CacheEntryEvicted notification should also send the entry value in the event.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years
[JBoss JIRA] (ISPN-4163) CacheAuthorizationTest.testAllCombinations always fails on JDK8
by Dan Berindei (JIRA)
Dan Berindei created ISPN-4163:
----------------------------------
Summary: CacheAuthorizationTest.testAllCombinations always fails on JDK8
Key: ISPN-4163
URL: https://issues.jboss.org/browse/ISPN-4163
Project: Infinispan
Issue Type: Bug
Components: Security, Test Suite - Core
Affects Versions: 7.0.0.Alpha1
Reporter: Dan Berindei
Assignee: Tristan Tarrant
Fix For: 7.0.0.Alpha3
JDK8 added some new default methods to ConcurrentMap, and SecureCacheTestDriver doesn't cover them. This actually raises the question of whether we could provide our own implementations while still keeping compatibility with JDK6...
{noformat}
java.lang.Exception: Class org.infinispan.security.SecureCacheTestDriver needs to declare a method with the following signature: void testReplaceAll_BiFunction(SecureCache<String, String> cache) {}
at org.infinispan.security.CacheAuthorizationTest.testAllCombinations(CacheAuthorizationTest.java:158)
Caused by: java.lang.NoSuchMethodException: org.infinispan.security.SecureCacheTestDriver.testReplaceAll_BiFunction(org.infinispan.security.SecureCache)
at java.lang.Class.getMethod(Class.java:1773)
at org.infinispan.security.CacheAuthorizationTest.testAllCombinations(CacheAuthorizationTest.java:109) ... 20 more
{noformat}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years