I am using Infinispan with jgroups in java. I want to get all the cache names in an infinispan cache clusture. I have tried using DefaultCacheManager.getCacheNames(); but it gives only the cache which are accessed on that the jvm from which it is called from and not all the caches in that cluster.

once i access a cache on that jvm, it becomes available and the it starts coming in the cachelist. which i get from DefaultCacheManager.getCacheNames();

I am using the same config file for infinispan and jgroups(using tcp)

Please suggest a was by which i can get all the cache names in a clusture

Thanks, Ankur

link|improve this question

47% accept rate
feedback

1 Answer

Hmmm, normally you'll have all caches defined cluster wide, so getting the cache names in a node is good enough to know the caches that are available cluster wide.

This doesn't seem to be your case though, so the easiest thing I can think of is to do a Map/Reduce functionality in Infinispan to retrieve the cache names from individual nodes in the cluster and then collate them.

For more info, see https://docs.jboss.org/author/display/ISPN/Infinispan+Distributed+Execution+Framework and https://www.jboss.org/dms/judcon/presentations/Boston2011/JUDConBoston2011_day2track2session2.pdf

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.