Alexey V. Ryazanov wrote > I created a simple plugin. It looks alive - i see calls to methods like > onIgniteStart(), createComponent(), provideDiscoveryData(). But I don't > see any calls to method validateNewNode() even when I starting a lot of > new nodes. Where I made a mistake? My plugin provider is nothing but empty > implementation of PluginProvider interaface (with logger calls indise - I > want to know what's going on)? Is it enough? Or may be I must do something > more in order to catch validateNewNode() method call?
Alexey, I just created my own simple example and it works for me. Note that this method is called only on the discovery coordinator node (the oldest in topology). I think in your case it should be OK since the data model has to be equal on all nodes. So it's enough to check on one node only. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Where-can-I-keep-some-meta-information-about-my-nodes-tp1109p1165.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
