Why datastructure are not dataRegion bounded

2019-06-24 Thread dhiman_nikhil
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;

Limited set of DataStructure compared to REDIS

2019-06-24 Thread dhiman_nikhil
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/

Re: How data region is propagated to other nodes

2019-05-03 Thread dhiman_nikhil
Can I create data regions on All Servers dynamically? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: How data region is propagated to other nodes

2019-05-03 Thread dhiman_nikhil
Can I create a data region dynamically on every node in the cluster? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: How data region is propagated to other nodes

2019-05-02 Thread dhiman_nikhil
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].

How data region is propagated to other nodes

2019-05-02 Thread dhiman_nikhil
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