Ignite instance with provided name doesn't exist
I have configured a Thingworx stack with Zookeeper and Ignite.
3 Thingworx nodes in HA (active-active). (ver 9.4)
3 Zookeeper nodes in cluster mode. (ver. 3.9.2)
2 Ignite nodes in cluster mode. (ver 2.15)
All nodes startup fine. I can create and update a thing, and then I can see the changes in all Thingworx nodes.
The problem is that I thing that not use Ignite cache, because I see this error log:
2024-07-03 18:42:34.710+0200 [L: ERROR] [O: c.t.t.Thing] [I: ] [U: SuperUser] [S: ] [P: platform1] [T: pool-8-thread-1] Unable to initialize thing blog-test-om, Ignite instance with provided name doesn't exist. Did you call Ignition.start(..) to start an Ignite instance? [name=twx-core-server]
Where I should to put those instance name?
my cache block in platform-settings.json is:
"cache": {
"init-timeout":"30 seconds",
"provider-type": "com.thingworx.cache.ignite.IgniteCacheProvider",
"cache-mappings": {},
"ignite": {
"instance-name": "twx-core-server",
"default-cache-mode": "PARTITIONED",
"default-atomicity-mode": "ATOMIC",
"default-backups": 1,
"default-write-sync-mode": "PRIMARY_SYNC",
"default-read-from-backup": false,
"client-mode": true,
"metrics-log-frequency": 0,
"address-resolver" : {
"type": "zookeeper",
"connection": "10.0.0.61:2181,10.0.0.27:2181,10.0.0.165:2181"
}
}
}

