I have an apache ignite cluster.
All nodes are splited to two logical groups: platform level nodes (PLN) and application level nodes (ALN). Each node in cluster has:
- xml configuration file (ALN contain PLN config and application specific cache configs)
- filter class to detect ALN
ALN contain POJO classes to work with Ignite cache, PLN does not contain this classes and doesn't fit the nodeFilter.
BUT PLN on startup (joining to cluster with ALN) attempt to apply ALN cache configuration and catch ClassNotFoundException related to application POJO classes.
Could ignite server node ignore cache config if it doesn't fit to nodeFilter ?