While going through the below code, i found this issue.
Ignite ignite = Ignition.ignite();
// Non-colocated queue which will be distributed
// across all data nodes.
IgniteQueue queue = ignite.queue("queueName", 20, new
CollectionConfiguration());
// Add queue elements.
for (int i = 0; i < 20;
I see many DS not present in Ignite like zrevrangeByScore, sortedSet, etc.
Is there a way I can get all D.S. provided by Redis in Ignite.
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/
Can I create data regions on All Servers dynamically?
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/
Can I create a data region dynamically on every node in the cluster?
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/
As per documentation, I can do persistence in data region only. If I wanted a
cache key to be persisted then I have to make sure that data region to be
replicated across all nodes.
Basically, my requirement is to give multi-tenancy support[Multiple
Applications can communicate to Ignite Cluster].
Server level config:
Server: Node 1
CacheKey: "location"
DataRegion: "location"
persistence: true
Server: Node 2
CacheKey: "category"
DataRegion: "category"
persistence : false
Both belong to same cluster.
Since Data is partitioned across nodes when I start Node 1 and then Node 2,
will "locatio