Reputation: 157
Not seeing the Map/MultiMap data on the Hazelcast Management Center. My environment consists of:
I am using Hazelcast Maps indirectly using quartz
and the quartz-scheduler-hazelcast-jobstore. I created one trigger so there is some information that is added to the Maps.
I have verified that the connection is made to remote hazelcast its connection to the management console, as I can see the Members tab populated, as well as the Topics tab from other data in my app.
Any ideas as to why the maps are not shown?
Not a lot of logging happening, but this is what the client shows:
2018-02-02T15:55:23.745-0500 | | INFO | RMI TCP Connection(2)-127.0.0.1 | com.hazelcast.core.LifecycleService | XMHZClient [dev] [3.7.2] HazelcastClient 3.7.2 (20161004 - 540b01c) is STARTING 2018-02-02T15:55:24.29-0500 | | INFO | RMI TCP Connection(2)-127.0.0.1 | com.hazelcast.core.LifecycleService | XMHZClient [dev] [3.7.2] HazelcastClient 3.7.2 (20161004 - 540b01c) is STARTED 2018-02-02T15:55:24.130-0500 | | INFO | XMHZClient.event-3 | com.hazelcast.client.spi.impl.ClientMembershipListener | XMHZClient [dev] [3.7.2]
Members 1 { Member [172.17.0.3]:5701 - b79ad451-02f2-43d4-8b66-ca91fbd677e1 }
2018-02-02T15:55:24.132-0500 | | INFO | XMHZClient.user-1 | com.hazelcast.core.LifecycleService | XMHZClient [dev] [3.7.2] HazelcastClient 3.7.2 (20161004 - 540b01c) is CLIENT_CONNECTED
Upvotes: 2
Views: 835
Reputation: 3257
@PhilipWiebe, since you see a lot of topics in ManCenter, I believe you're hitting the limit of reported objects. By default, each Hazelcast node only reports 100 object statistics. You need to set hazelcast.mc.max.visible.instance.count
parameter on each Hazelcast node to a value greater than your total dist. objects count. This behavior is changing in upcoming 3.9.3 release.
Upvotes: 4