I have created a cache configuration template as per below code
IgniteConfiguration igniteCfg = new IgniteConfiguration();
try (Ignite ignite = Ignition.start(igniteCfg)) {
CacheConfiguration cacheCfg = new CacheConfiguration("myCacheTemplate");
cacheCfg.setBackups(2);
cacheCfg.setCacheMode(CacheMode.PARTITIONED);
// Register the cache template
ignite.addCacheConfiguration(cacheCfg);
}
I created SQL table using CREATE TABLE command using above template successfully. I want to create another table with different configuration parameter values but failed. Since the configuration template register above can not be modified or removed. workaround is to register another template with new name and desired parameters. I want to know is there a way to remove or edit the existing registered templates in the apache ignite cluster