[JBoss JIRA] (ISPN-9649) Docs: Locked Streams Details in User Guide
by Don Naro (Jira)
Don Naro created ISPN-9649:
------------------------------
Summary: Docs: Locked Streams Details in User Guide
Key: ISPN-9649
URL: https://issues.jboss.org/browse/ISPN-9649
Project: Infinispan
Issue Type: Enhancement
Components: Documentation-Core
Affects Versions: 9.4.0.Final
Reporter: Don Naro
Assignee: Don Naro
User Guide === Locked Streams TODO: need to detail Locked Streams
Work with William to add some docs for Locked Streams to the User Guide. Details in Javadocs at org.infinispan.LockedStream
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 5 months
[JBoss JIRA] (ISPN-9589) Client Listener notifications can deadlock
by William Burns (Jira)
[ https://issues.jboss.org/browse/ISPN-9589?page=com.atlassian.jira.plugin.... ]
William Burns updated ISPN-9589:
--------------------------------
Affects Version/s: 9.3.0.Final
> Client Listener notifications can deadlock
> ------------------------------------------
>
> Key: ISPN-9589
> URL: https://issues.jboss.org/browse/ISPN-9589
> Project: Infinispan
> Issue Type: Bug
> Components: Listeners, Server
> Affects Versions: 9.3.0.Final, 9.4.0.Final
> Reporter: William Burns
> Assignee: William Burns
> Priority: Critical
> Fix For: 9.4.1.Final, 10.0.0.Alpha1
>
>
> When a node does a write and it is the primary owner it will send the client listener event. Unfortunately this can block waiting to put in the eventQueue. Unfortunately the thread that is executing this method can be the event loop for that listener, which in turn can cause it to block forever. I believe this came about after ISPN-8621.
> I have found a few ways to fix this at the moment:
> # Make the client listener async - this way it is fired on the notification thread
> # Change the listener event to check if the current thread is the event loop and subsequently fire the events directly instead of submitting it to the Executor.
> # Make the various write operations still use the worker thread pool - this was changed in the above mentioned JIRA so I am guessing we don't want to do that
> The former of the fixes seems to be much more performant, but I don't know if I like that fix. The latter still has hiccups since it reduces availability of threads to respond to socket requests.
> This is very easy to reproduce by running the ClientEventStressTest test on master as is since it only has 3 io threads (but the default is CPU * 2 - so in some cases this isn't that much)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 5 months
[JBoss JIRA] (ISPN-7087) Handle ClientCacheEntryExpired into InvalidatedNearCacheListener
by Dan Berindei (Jira)
[ https://issues.jboss.org/browse/ISPN-7087?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-7087:
-------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
> Handle ClientCacheEntryExpired into InvalidatedNearCacheListener
> ----------------------------------------------------------------
>
> Key: ISPN-7087
> URL: https://issues.jboss.org/browse/ISPN-7087
> Project: Infinispan
> Issue Type: Enhancement
> Components: Remote Protocols
> Affects Versions: 8.2.4.Final
> Reporter: Jean-Francois LARTAUD
> Assignee: William Burns
> Priority: Major
> Fix For: 9.4.1.Final, 10.0.0.Alpha1
>
>
> Hi,
> Is there a reason why the InvalidatedNearCacheListener does not support the cache entry expiration ?
> By adding the ClientCacheEntryExpired annotation on the listener, it should be possible to invalidate a near cache entry when it has expired on a remote infinispan server.
> For example, into org.infinispan.client.hotrod.near.NearCacheService.InvalidatedNearCacheListener add this method :
> {code}
> @ClientCacheEntryExpired
> @SuppressWarnings("unused")
> public void handleExpiredEvent(ClientCacheEntryExpiredEvent<K> event) {
> invalidate(event.getKey());
> }
> {code}
> Thanks,
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 5 months
[JBoss JIRA] (ISPN-9589) Client Listener notifications can deadlock
by Dan Berindei (Jira)
[ https://issues.jboss.org/browse/ISPN-9589?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-9589:
-------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 9.4.1.Final
10.0.0.Alpha1
Resolution: Done
> Client Listener notifications can deadlock
> ------------------------------------------
>
> Key: ISPN-9589
> URL: https://issues.jboss.org/browse/ISPN-9589
> Project: Infinispan
> Issue Type: Bug
> Components: Listeners, Server
> Affects Versions: 9.4.0.Final
> Reporter: William Burns
> Assignee: William Burns
> Priority: Critical
> Fix For: 9.4.1.Final, 10.0.0.Alpha1
>
>
> When a node does a write and it is the primary owner it will send the client listener event. Unfortunately this can block waiting to put in the eventQueue. Unfortunately the thread that is executing this method can be the event loop for that listener, which in turn can cause it to block forever. I believe this came about after ISPN-8621.
> I have found a few ways to fix this at the moment:
> # Make the client listener async - this way it is fired on the notification thread
> # Change the listener event to check if the current thread is the event loop and subsequently fire the events directly instead of submitting it to the Executor.
> # Make the various write operations still use the worker thread pool - this was changed in the above mentioned JIRA so I am guessing we don't want to do that
> The former of the fixes seems to be much more performant, but I don't know if I like that fix. The latter still has hiccups since it reduces availability of threads to respond to socket requests.
> This is very easy to reproduce by running the ClientEventStressTest test on master as is since it only has 3 io threads (but the default is CPU * 2 - so in some cases this isn't that much)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 5 months
[JBoss JIRA] (ISPN-9589) Client Listener notifications can deadlock
by Dan Berindei (Jira)
[ https://issues.jboss.org/browse/ISPN-9589?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-9589:
-------------------------------
Affects Version/s: 9.4.0.Final
> Client Listener notifications can deadlock
> ------------------------------------------
>
> Key: ISPN-9589
> URL: https://issues.jboss.org/browse/ISPN-9589
> Project: Infinispan
> Issue Type: Bug
> Components: Listeners, Server
> Affects Versions: 9.4.0.Final
> Reporter: William Burns
> Assignee: William Burns
> Priority: Critical
> Fix For: 9.4.1.Final, 10.0.0.Alpha1
>
>
> When a node does a write and it is the primary owner it will send the client listener event. Unfortunately this can block waiting to put in the eventQueue. Unfortunately the thread that is executing this method can be the event loop for that listener, which in turn can cause it to block forever. I believe this came about after ISPN-8621.
> I have found a few ways to fix this at the moment:
> # Make the client listener async - this way it is fired on the notification thread
> # Change the listener event to check if the current thread is the event loop and subsequently fire the events directly instead of submitting it to the Executor.
> # Make the various write operations still use the worker thread pool - this was changed in the above mentioned JIRA so I am guessing we don't want to do that
> The former of the fixes seems to be much more performant, but I don't know if I like that fix. The latter still has hiccups since it reduces availability of threads to respond to socket requests.
> This is very easy to reproduce by running the ClientEventStressTest test on master as is since it only has 3 io threads (but the default is CPU * 2 - so in some cases this isn't that much)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 5 months
[JBoss JIRA] (ISPN-9589) Client Listener notifications can deadlock
by Dan Berindei (Jira)
[ https://issues.jboss.org/browse/ISPN-9589?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-9589:
-------------------------------
Status: Open (was: New)
> Client Listener notifications can deadlock
> ------------------------------------------
>
> Key: ISPN-9589
> URL: https://issues.jboss.org/browse/ISPN-9589
> Project: Infinispan
> Issue Type: Bug
> Components: Listeners, Server
> Reporter: William Burns
> Assignee: William Burns
> Priority: Critical
>
> When a node does a write and it is the primary owner it will send the client listener event. Unfortunately this can block waiting to put in the eventQueue. Unfortunately the thread that is executing this method can be the event loop for that listener, which in turn can cause it to block forever. I believe this came about after ISPN-8621.
> I have found a few ways to fix this at the moment:
> # Make the client listener async - this way it is fired on the notification thread
> # Change the listener event to check if the current thread is the event loop and subsequently fire the events directly instead of submitting it to the Executor.
> # Make the various write operations still use the worker thread pool - this was changed in the above mentioned JIRA so I am guessing we don't want to do that
> The former of the fixes seems to be much more performant, but I don't know if I like that fix. The latter still has hiccups since it reduces availability of threads to respond to socket requests.
> This is very easy to reproduce by running the ClientEventStressTest test on master as is since it only has 3 io threads (but the default is CPU * 2 - so in some cases this isn't that much)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 5 months
[JBoss JIRA] (ISPN-9589) Client Listener notifications can deadlock
by Dan Berindei (Jira)
[ https://issues.jboss.org/browse/ISPN-9589?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-9589:
-------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request: https://github.com/infinispan/infinispan/pull/6318
> Client Listener notifications can deadlock
> ------------------------------------------
>
> Key: ISPN-9589
> URL: https://issues.jboss.org/browse/ISPN-9589
> Project: Infinispan
> Issue Type: Bug
> Components: Listeners, Server
> Reporter: William Burns
> Assignee: William Burns
> Priority: Critical
>
> When a node does a write and it is the primary owner it will send the client listener event. Unfortunately this can block waiting to put in the eventQueue. Unfortunately the thread that is executing this method can be the event loop for that listener, which in turn can cause it to block forever. I believe this came about after ISPN-8621.
> I have found a few ways to fix this at the moment:
> # Make the client listener async - this way it is fired on the notification thread
> # Change the listener event to check if the current thread is the event loop and subsequently fire the events directly instead of submitting it to the Executor.
> # Make the various write operations still use the worker thread pool - this was changed in the above mentioned JIRA so I am guessing we don't want to do that
> The former of the fixes seems to be much more performant, but I don't know if I like that fix. The latter still has hiccups since it reduces availability of threads to respond to socket requests.
> This is very easy to reproduce by running the ClientEventStressTest test on master as is since it only has 3 io threads (but the default is CPU * 2 - so in some cases this isn't that much)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 5 months
[JBoss JIRA] (ISPN-9633) Build from master is failing - infinispan-license:jar:9.4.1-SNAPSHOT is missing, no dependency information available
by Pedro Ruivo (Jira)
[ https://issues.jboss.org/browse/ISPN-9633?page=com.atlassian.jira.plugin.... ]
Pedro Ruivo commented on ISPN-9633:
-----------------------------------
I've just run {{$ mvn clean install -DskipTests -Dmaven.repo.local=/tmp/tmp_m2/}} and it works for me:
{noformat}
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Infinispan Common Parent ........................... SUCCESS [ 17.738 s]
[INFO] Infinispan BOM ..................................... SUCCESS [ 0.003 s]
[INFO] Infinispan Checkstyle Rules ........................ SUCCESS [01:20 min]
[INFO] Infinispan License Bundle .......................... SUCCESS [ 24.207 s]
[INFO] Infinispan Common Parent ........................... SUCCESS [01:49 min]
[INFO] Infinispan Commons Test Dependencies ............... SUCCESS [ 17.618 s]
[INFO] Infinispan Commons ................................. SUCCESS [02:03 min]
[INFO] Infinispan Defaults Maven Plugin ................... SUCCESS [ 43.314 s]
[INFO] Protocol Parser Generator Maven Plugin ............. SUCCESS [ 5.531 s]
[INFO] Infinispan Core .................................... SUCCESS [01:03 min]
[INFO] Infinispan Cloud ................................... SUCCESS [ 1.326 s]
[INFO] Infinispan Extended Statistics ..................... SUCCESS [ 2.528 s]
[INFO] Infinispan Clustered Counter ....................... SUCCESS [ 1.405 s]
[INFO] Infinispan Multimap ................................ SUCCESS [ 0.792 s]
[INFO] Infinispan Cache Stores ............................ SUCCESS [ 0.237 s]
[INFO] Infinispan JDBC CacheStore ......................... SUCCESS [ 6.185 s]
[INFO] Infinispan JPA CacheStore .......................... SUCCESS [ 12.138 s]
[INFO] Infinispan RocksDB CacheStore ...................... SUCCESS [ 5.600 s]
[INFO] Infinispan LevelDB CacheStore ...................... SUCCESS [ 4.403 s]
[INFO] Infinispan Query DSL API ........................... SUCCESS [ 0.602 s]
[INFO] Infinispan Object Querying and Filtering API ....... SUCCESS [ 29.999 s]
[INFO] Parent pom for the Lucene integration modules ...... SUCCESS [ 0.286 s]
[INFO] Infinispan Lucene Directory Implementation ......... SUCCESS [ 4.638 s]
[INFO] Infinispan Directory Provider for Hibernate Search . SUCCESS [ 20.715 s]
[INFO] Infinispan Query ................................... SUCCESS [ 22.293 s]
[INFO] Infinispan Remote Query Client ..................... SUCCESS [ 0.453 s]
[INFO] Infinispan Tasks API ............................... SUCCESS [ 0.345 s]
[INFO] Infinispan Task Manager ............................ SUCCESS [ 0.780 s]
[INFO] Parent pom for server modules ...................... SUCCESS [ 0.209 s]
[INFO] Infinispan Server - Core Components ................ SUCCESS [ 13.699 s]
[INFO] Infinispan Remote Query Server ..................... SUCCESS [ 2.711 s]
[INFO] Infinispan Scripting ............................... SUCCESS [ 1.002 s]
[INFO] Infinispan Hot Rod Server .......................... SUCCESS [ 6.722 s]
[INFO] Infinispan Hot Rod Client .......................... SUCCESS [ 8.904 s]
[INFO] Infinispan Remote CacheStore ....................... SUCCESS [ 2.600 s]
[INFO] Infinispan REST Server ............................. SUCCESS [ 12.250 s]
[INFO] Infinispan REST CacheStore ......................... SUCCESS [ 2.060 s]
[INFO] Infinispan Soft-Index CacheStore ................... SUCCESS [ 1.173 s]
[INFO] Infinispan Tools ................................... SUCCESS [ 4.762 s]
[INFO] Infinispan Tree API ................................ SUCCESS [ 0.941 s]
[INFO] Infinispan CLI Client .............................. SUCCESS [ 3.808 s]
[INFO] Infinispan Memcached Server ........................ SUCCESS [ 2.144 s]
[INFO] Infinispan CLI Interpreter ......................... SUCCESS [ 4.204 s]
[INFO] Infinispan Command Line Interface persistence ...... SUCCESS [ 0.866 s]
[INFO] Infinispan Multi Tenant Router ..................... SUCCESS [ 3.405 s]
[INFO] Infinispan Atomic Factory .......................... SUCCESS [ 0.468 s]
[INFO] Parent pom for uberjar modules ..................... SUCCESS [ 0.075 s]
[INFO] Infinispan CDI support parent ...................... SUCCESS [ 0.064 s]
[INFO] Infinispan CDI support common ...................... SUCCESS [ 0.648 s]
[INFO] Infinispan CDI remote support ...................... SUCCESS [ 56.053 s]
[INFO] Infinispan JCACHE (JSR-107) Parent ................. SUCCESS [ 0.113 s]
[INFO] Infinispan JCACHE (JSR-107) Common Components ...... SUCCESS [ 0.633 s]
[INFO] Infinispan JCACHE (JSR-107) Remote Implementation .. SUCCESS [ 1.014 s]
[INFO] Infinispan Remote Client ........................... SUCCESS [ 6.485 s]
[INFO] Infinispan CDI embedded support .................... SUCCESS [ 1.314 s]
[INFO] Infinispan JCACHE (JSR-107) Embedded Implementation SUCCESS [ 1.729 s]
[INFO] Infinispan Embedded ................................ SUCCESS [ 17.024 s]
[INFO] Infinispan Embedded Query .......................... SUCCESS [ 4.007 s]
[INFO] Infinispan CLI ..................................... SUCCESS [ 1.146 s]
[INFO] Infinispan OSGi Service ............................ SUCCESS [ 1.001 s]
[INFO] Infinispan Spring support .......................... SUCCESS [ 0.067 s]
[INFO] Infinispan Spring 4 Common module .................. SUCCESS [ 5.800 s]
[INFO] Infinispan Spring 4 Embedded support ............... SUCCESS [ 5.600 s]
[INFO] Infinispan Spring 4 Remote support ................. SUCCESS [ 0.880 s]
[INFO] Infinispan GUI Demo ................................ SUCCESS [ 16.338 s]
[INFO] Infinispan Clustered Lock .......................... SUCCESS [ 0.878 s]
[INFO] Infinispan Wildfly Feature Pack .................... SUCCESS [ 0.032 s]
[INFO] Infinispan Wildfly Feature Pack - Commons .......... SUCCESS [ 28.853 s]
[INFO] Infinispan Wildfly Feature Pack - Client ........... SUCCESS [ 0.293 s]
[INFO] Infinispan Wildfly Feature Pack - Embedded ......... SUCCESS [ 2.277 s]
[INFO] Infinispan Wildfly Feature Pack - Embedded Query ... SUCCESS [ 9.712 s]
[INFO] Infinispan Server - BOM ............................ SUCCESS [ 1.428 s]
[INFO] Infinispan Server - Command line interface ......... SUCCESS [ 6.713 s]
[INFO] Infinispan Server - Commons ........................ SUCCESS [ 27.215 s]
[INFO] Infinispan Server - JGroups Subsystem .............. SUCCESS [ 1.070 s]
[INFO] Infinispan Server - Event Logger ................... SUCCESS [ 0.254 s]
[INFO] Infinispan Server - Infinispan Subsystem ........... SUCCESS [ 11.562 s]
[INFO] Infinispan Server - Endpoints Subsystem ............ SUCCESS [ 10.296 s]
[INFO] Infinispan Wildfly Feature Pack - Server ........... SUCCESS [ 1.334 s]
[INFO] Infinispan Wildfly Feature Pack - Wildfly Modules .. SUCCESS [ 0.509 s]
[INFO] Infinispan Server - Feature Pack ................... SUCCESS [ 4.278 s]
[INFO] Infinispan Server - Build .......................... SUCCESS [03:16 min]
[INFO] Infinispan Integration Tests Parent ................ SUCCESS [ 0.029 s]
[INFO] Integration tests - Security Tests ................. SUCCESS [ 17.981 s]
[INFO] Infinispan Server - Test Suite ..................... SUCCESS [ 37.525 s]
[INFO] Infinispan Server .................................. SUCCESS [ 0.038 s]
[INFO] Infinispan JCACHE (JSR-107) TCK Runner ............. SUCCESS [ 43.776 s]
[INFO] Integration tests - Wildfly Module Integration Tests SUCCESS [ 40.741 s]
[INFO] Integration tests - AS Lucene Directory ............ SUCCESS [ 4.976 s]
[INFO] Integration tests - Endpoints interop .............. SUCCESS [ 0.486 s]
[INFO] Integration tests - CDI/JCache interactions ........ SUCCESS [ 0.246 s]
[INFO] Integration tests - SecurityManager tests .......... SUCCESS [ 0.168 s]
[INFO] Infinispan Hibernate Parent ........................ SUCCESS [ 4.372 s]
[INFO] Infinispan Hibernate Cache SPI ..................... SUCCESS [ 0.441 s]
[INFO] Infinispan Hibernate Cache Commons ................. SUCCESS [ 7.247 s]
[INFO] Infinispan Hibernate 5.3 Cache ..................... SUCCESS [ 1.471 s]
[INFO] Integration tests - OSGi/Karaf ..................... SUCCESS [ 3.376 s]
[INFO] Integration tests - Elasticsearch IndexManager ..... SUCCESS [ 0.181 s]
[INFO] Integration tests - Weld SE CDI tests .............. SUCCESS [ 1.102 s]
[INFO] Infinispan Embedded Integration Tests .............. SUCCESS [ 7.347 s]
[INFO] Infinispan Embedded Query Integration Tests ........ SUCCESS [ 1.375 s]
[INFO] Infinispan Remote Client Integration Tests ......... SUCCESS [ 0.318 s]
[INFO] Integration tests - Spring Boot .................... SUCCESS [ 19.988 s]
[INFO] Alternative client marshallers ..................... SUCCESS [ 0.379 s]
[INFO] Infinispan Common Marshaller Test Classes .......... SUCCESS [ 0.331 s]
[INFO] Infinispan Kryo Marshaller Bridge .................. SUCCESS [ 3.358 s]
[INFO] Infinispan Kryo Marshaller Bridge Bundle ........... SUCCESS [ 1.364 s]
[INFO] Infinispan Protostuff Marshaller Bridge ............ SUCCESS [ 5.329 s]
[INFO] Infinispan Protostuff Marshaller Bridge Bundle ..... SUCCESS [ 1.349 s]
[INFO] Infinispan Hibernate 5.1 Cache ..................... SUCCESS [ 2.297 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 24:23 min
[INFO] Finished at: 2018-10-26T14:02:07+01:00
[INFO] Final Memory: 700M/1872M
[INFO] ------------------------------------------------------------------------
{noformat}
> Build from master is failing - infinispan-license:jar:9.4.1-SNAPSHOT is missing, no dependency information available
> --------------------------------------------------------------------------------------------------------------------
>
> Key: ISPN-9633
> URL: https://issues.jboss.org/browse/ISPN-9633
> Project: Infinispan
> Issue Type: Bug
> Reporter: Diego Lovison
> Priority: Minor
>
> When building from an empty maven repo we have the following issue:
> {noformat}
> mvn clean install -DskipTests -Dmaven.repo.local=~/Documents/tmp_m2/
> {noformat}
> {noformat}
> [INFO] Infinispan Common Parent ........................... SUCCESS [ 0.073 s]
> [INFO] Infinispan BOM ..................................... SUCCESS [ 0.005 s]
> [INFO] Infinispan Checkstyle Rules ........................ SUCCESS [ 1.686 s]
> [INFO] Infinispan License Bundle .......................... SUCCESS [ 0.135 s]
> [INFO] Infinispan Common Parent 9.4.1-SNAPSHOT ............ SUCCESS [ 1.479 s]
> [INFO] Infinispan Commons Test Dependencies ............... SUCCESS [ 1.172 s]
> [INFO] Infinispan Commons ................................. SUCCESS [ 11.519 s]
> [INFO] Infinispan Defaults Maven Plugin ................... SUCCESS [ 2.233 s]
> [INFO] Protocol Parser Generator Maven Plugin ............. SUCCESS [ 1.511 s]
> [INFO] Infinispan Core .................................... SUCCESS [ 43.287 s]
> [INFO] Infinispan Cloud ................................... SUCCESS [ 0.831 s]
> [INFO] Infinispan Extended Statistics ..................... SUCCESS [ 1.743 s]
> [INFO] Infinispan Clustered Counter ....................... SUCCESS [ 1.476 s]
> [INFO] Infinispan Multimap ................................ SUCCESS [ 0.868 s]
> [INFO] Infinispan Cache Stores ............................ SUCCESS [ 0.234 s]
> [INFO] Infinispan JDBC CacheStore ......................... SUCCESS [ 4.106 s]
> [INFO] Infinispan JPA CacheStore .......................... SUCCESS [ 5.828 s]
> [INFO] Infinispan RocksDB CacheStore ...................... SUCCESS [ 13.801 s]
> [INFO] Infinispan LevelDB CacheStore ...................... SUCCESS [ 4.641 s]
> [INFO] Infinispan Query DSL API ........................... SUCCESS [ 0.692 s]
> [INFO] Infinispan Object Querying and Filtering API ....... SUCCESS [ 12.226 s]
> [INFO] Parent pom for the Lucene integration modules ...... SUCCESS [ 0.287 s]
> [INFO] Infinispan Lucene Directory Implementation ......... SUCCESS [ 2.037 s]
> [INFO] Infinispan Directory Provider for Hibernate Search . SUCCESS [ 5.819 s]
> [INFO] Infinispan Query ................................... SUCCESS [ 9.034 s]
> [INFO] Infinispan Remote Query Client ..................... SUCCESS [ 0.507 s]
> [INFO] Infinispan Tasks API ............................... SUCCESS [ 0.399 s]
> [INFO] Infinispan Task Manager ............................ SUCCESS [ 0.852 s]
> [INFO] Parent pom for server modules ...................... SUCCESS [ 0.217 s]
> [INFO] Infinispan Server - Core Components ................ SUCCESS [ 6.706 s]
> [INFO] Infinispan Remote Query Server ..................... SUCCESS [ 3.704 s]
> [INFO] Infinispan Scripting ............................... SUCCESS [ 1.191 s]
> [INFO] Infinispan Hot Rod Server .......................... SUCCESS [ 7.717 s]
> [INFO] Infinispan Hot Rod Client .......................... SUCCESS [ 8.497 s]
> [INFO] Infinispan Remote CacheStore ....................... SUCCESS [ 3.936 s]
> [INFO] Infinispan REST Server ............................. SUCCESS [ 6.533 s]
> [INFO] Infinispan REST CacheStore ......................... SUCCESS [ 1.859 s]
> [INFO] Infinispan Soft-Index CacheStore ................... SUCCESS [ 1.392 s]
> [INFO] Infinispan Tools ................................... SUCCESS [ 4.255 s]
> [INFO] Infinispan Tree API ................................ SUCCESS [ 1.041 s]
> [INFO] Infinispan CLI Client .............................. SUCCESS [ 1.773 s]
> [INFO] Infinispan Memcached Server ........................ SUCCESS [ 1.873 s]
> [INFO] Infinispan CLI Interpreter ......................... SUCCESS [ 5.118 s]
> [INFO] Infinispan Command Line Interface persistence ...... SUCCESS [ 0.923 s]
> [INFO] Infinispan Multi Tenant Router ..................... SUCCESS [ 3.566 s]
> [INFO] Infinispan Atomic Factory .......................... SUCCESS [ 0.559 s]
> [INFO] Parent pom for uberjar modules ..................... SUCCESS [ 0.079 s]
> [INFO] Infinispan CDI support parent ...................... SUCCESS [ 0.073 s]
> [INFO] Infinispan CDI support common ...................... SUCCESS [ 0.756 s]
> [INFO] Infinispan CDI remote support ...................... SUCCESS [ 15.990 s]
> [INFO] Infinispan JCACHE (JSR-107) Parent ................. SUCCESS [ 0.073 s]
> [INFO] Infinispan JCACHE (JSR-107) Common Components ...... SUCCESS [ 0.721 s]
> [INFO] Infinispan JCACHE (JSR-107) Remote Implementation .. SUCCESS [ 1.174 s]
> [INFO] Infinispan Remote Client ........................... SUCCESS [ 5.990 s]
> [INFO] Infinispan CDI embedded support .................... SUCCESS [ 1.280 s]
> [INFO] Infinispan JCACHE (JSR-107) Embedded Implementation SUCCESS [ 1.843 s]
> [INFO] Infinispan Embedded ................................ SUCCESS [ 18.395 s]
> [INFO] Infinispan Embedded Query .......................... SUCCESS [ 5.314 s]
> [INFO] Infinispan CLI ..................................... SUCCESS [ 1.294 s]
> [INFO] Infinispan OSGi Service ............................ SUCCESS [ 1.030 s]
> [INFO] Infinispan Spring support .......................... SUCCESS [ 0.081 s]
> [INFO] Infinispan Spring 4 Common module .................. SUCCESS [ 2.101 s]
> [INFO] Infinispan Spring 4 Embedded support ............... SUCCESS [ 2.932 s]
> [INFO] Infinispan Spring 4 Remote support ................. SUCCESS [ 0.996 s]
> [INFO] Infinispan GUI Demo ................................ SUCCESS [ 4.573 s]
> [INFO] Infinispan Clustered Lock .......................... SUCCESS [ 0.884 s]
> [INFO] Infinispan Wildfly Feature Pack .................... SUCCESS [ 0.035 s]
> [INFO] Infinispan Wildfly Feature Pack - Commons .......... SUCCESS [ 7.885 s]
> [INFO] Infinispan Wildfly Feature Pack - Client ........... SUCCESS [ 0.283 s]
> [INFO] Infinispan Wildfly Feature Pack - Embedded ......... SUCCESS [ 1.076 s]
> [INFO] Infinispan Wildfly Feature Pack - Embedded Query ... SUCCESS [ 3.961 s]
> [INFO] Infinispan Wildfly Feature Pack - Server ........... FAILURE [ 4.189 s]
> [INFO] Infinispan Wildfly Feature Pack - Wildfly Modules .. SKIPPED
> [INFO] Infinispan JCACHE (JSR-107) TCK Runner ............. FAILURE [ 4.038 s]
> [INFO] Infinispan Integration Tests Parent ................ SUCCESS [ 0.031 s]
> [INFO] Integration tests - Wildfly Module Integration Tests SKIPPED
> [INFO] Integration tests - AS Lucene Directory ............ SKIPPED
> [INFO] Integration tests - Endpoints interop .............. SUCCESS [ 0.468 s]
> [INFO] Integration tests - CDI/JCache interactions ........ SUCCESS [ 0.326 s]
> [INFO] Integration tests - Security Tests ................. SUCCESS [ 9.386 s]
> [INFO] Integration tests - SecurityManager tests .......... SUCCESS [ 0.212 s]
> [INFO] Infinispan Hibernate Parent ........................ SUCCESS [ 1.459 s]
> [INFO] Infinispan Hibernate Cache SPI ..................... SUCCESS [ 0.535 s]
> [INFO] Infinispan Hibernate Cache Commons ................. SUCCESS [ 5.899 s]
> [INFO] Infinispan Hibernate 5.3 Cache ..................... SUCCESS [ 1.505 s]
> [INFO] Integration tests - OSGi/Karaf ..................... SUCCESS [ 6.440 s]
> [INFO] Integration tests - Elasticsearch IndexManager ..... SUCCESS [ 4.619 s]
> [INFO] Integration tests - Weld SE CDI tests .............. SUCCESS [ 1.955 s]
> [INFO] Infinispan Embedded Integration Tests .............. SUCCESS [ 1.720 s]
> [INFO] Infinispan Embedded Query Integration Tests ........ SUCCESS [ 0.728 s]
> [INFO] Infinispan Remote Client Integration Tests ......... FAILURE [ 0.012 s]
> [INFO] Integration tests - Spring Boot .................... SUCCESS [ 8.057 s]
> [INFO] Alternative client marshallers ..................... SUCCESS [ 0.423 s]
> [INFO] Infinispan Common Marshaller Test Classes .......... SUCCESS [ 0.406 s]
> [INFO] Infinispan Kryo Marshaller Bridge .................. SUCCESS [ 1.726 s]
> [INFO] Infinispan Kryo Marshaller Bridge Bundle ........... SUCCESS [ 1.574 s]
> [INFO] Infinispan Protostuff Marshaller Bridge ............ SUCCESS [ 1.749 s]
> [INFO] Infinispan Protostuff Marshaller Bridge Bundle ..... SUCCESS [ 1.548 s]
> [INFO] Infinispan Hibernate 5.1 Cache 9.4.1-SNAPSHOT ...... SUCCESS [ 4.361 s]
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 05:36 min
> [INFO] Finished at: 2018-10-23T20:15:18-04:00
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal on project infinispan-feature-pack-server: Could not resolve dependencies for project org.infinispan:infinispan-feature-pack-server:pom:9.4.1-SNAPSHOT: The following artifacts could not be resolved: org.infinispan.server:infinispan-server-cli:jar:9.4.1-SNAPSHOT, org.infinispan.server:infinispan-server-commons:jar:9.4.1-SNAPSHOT, org.infinispan.server:infinispan-server-endpoints:jar:9.4.1-SNAPSHOT, org.infinispan.server:infinispan-server-event-logger:jar:9.4.1-SNAPSHOT, org.infinispan.server:infinispan-server-infinispan:jar:9.4.1-SNAPSHOT, org.infinispan.server:infinispan-server-jgroups:jar:9.4.1-SNAPSHOT: Could not find artifact org.infinispan.server:infinispan-server-cli:jar:9.4.1-SNAPSHOT in jboss-public (http://repository.jboss.org/nexus/content/groups/public/) -> [Help 1]
> [ERROR] Failed to execute goal on project infinispan-jcache-tck-runner: Could not resolve dependencies for project org.infinispan:infinispan-jcache-tck-runner:jar:9.4.1-SNAPSHOT: Failure to find org.infinispan.server:infinispan-server-build:pom:9.4.1-SNAPSHOT in http://repository.jboss.org/nexus/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-public has elapsed or updates are forced -> [Help 1]
> [ERROR] Failed to execute goal on project infinispan-remote-it: Could not resolve dependencies for project org.infinispan:infinispan-remote-it:jar:9.4.1-SNAPSHOT: Failure to find org.infinispan.server:infinispan-server-build:pom:9.4.1-SNAPSHOT in http://repository.jboss.org/nexus/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-public has elapsed or updates are forced -> [Help 1]
> [ERROR]
> [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> [ERROR]
> [ERROR] For more information about the errors and possible solutions, please read the following articles:
> [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionExce...
> [ERROR]
> [ERROR] After correcting the problems, you can resume the build with the command
> [ERROR] mvn <goals> -rf :infinispan-feature-pack-server
> {noformat}
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 5 months