This content has been marked as final.
Show 5 replies
-
1. Re: Infinispan cache health check from HotRod client
galder.zamarreno Feb 26, 2018 1:40 AM (in response to purushos)RemoteCache.ping() might help?
-
2. Re: Infinispan cache health check from HotRod client
galder.zamarreno Feb 26, 2018 1:55 AM (in response to galder.zamarreno)Actually, ping is not exposed in interface, but the implementation RemoteCacheImpl has it.
-
3. Re: Infinispan cache health check from HotRod client
andey Feb 26, 2018 5:40 AM (in response to purushos)Infinispan server has special endpoints for monitoring cluster health. The API is exposed via:
- Programmatically (using embeddedCacheManager.getHealth())
- JMX
- CLI
- REST (using WildFly HTTP Management API)
-
4. Re: Infinispan cache health check from HotRod client
purushos Feb 26, 2018 4:21 PM (in response to galder.zamarreno)Thanks!
If the RemoteCache is pingable, can we assume that it is available for both read and write operations?
-
5. Re: Infinispan cache health check from HotRod client
galder.zamarreno Feb 27, 2018 6:20 AM (in response to purushos)Yes. More detailed information on health checks can be found here.