Re: [EXTERNAL] Re: Replace or Put after PutAsync causes Ignite to hang

2019-05-02 Thread Barney Pippin
Thanks for the response Ilya. Did you get a chance to look at this Pavel? Thanks. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Transactions from Python

2019-05-02 Thread Evgenii Zhuravlev
Hi Stéphane Community is working on this functionality at the moment, here you can find design document and discussion regarding this feature: https://cwiki.apache.org/confluence/display/IGNITE/IEP-34+Thin+client%3A+transactions+support Alternatively, you can start to use ODBC from python, now

Re: Trouble with continuous queries

2019-05-02 Thread Mike Needham
I have seen that example, what I do not understand is I have two SQL tables in a cache that has n number of nodes. it is loaded ahead of time and a client wants to be notified when the contents of the cache are changed. Do you have to have the continuous query in a never ending loop to not have

Re: How data region is propagated to other nodes

2019-05-02 Thread Evgenii Zhuravlev
Hi, No, Data region configuration won't be propagated to other nodes in the cluster. DataRegion is only a local configuration, so, you have to configure it on each node. Moreover, these the same data region on different nodes can have different maxSize, which could be useful in case of using

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

Creating off-heap REPLICATED cache with Eviction policies borks the cluster.

2019-05-02 Thread John Smith
Hi running 2.7.0, I have a 4 node cluster running with off-heap persistence works great! I then by mistake tried to create a REPLICATED cache with LruEvictionPolicy. So we know if the cache is off-heap mode it cannot be created. But this seems to have borked the cluster, it shut down and now it

Re: Issues with Clients joining cluster on Kubernetes (EKS)

2019-05-02 Thread aes
Sure, set preferIPv4 on the client, and set IGNITE_QUIET to false. logs attached. Thank you!! serverLogs.serverLogs clientLogs.clientLogs

Ignite 2.7.5

2019-05-02 Thread Loredana Radulescu Ivanoff
Hello, Would you happen to have any news about the 2.7.5 release date? Thank you, Loredana

Re: Transactions from Python

2019-05-02 Thread Stéphane Thibaud
Hello Evgenii, Thank you for the quick answer. I will follow this feature attentively. Kind regards, Stéphane Thibaud 2019年5月2日(木) 17:38 Evgenii Zhuravlev : > Hi Stéphane > > Community is working on this functionality at the moment, here you can > find design document and discussion

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

Two DataStreamer pods for load balancing on Kubernetes

2019-05-02 Thread sheshananda
HI, I am using DataStreamer to load data from KAFKA to IGNITE. When we inject data with one DataStreamer pod we are able to see logs on DataStreamer pod. Similarly, when we try with with two DataStreamer pods logs are coming only on 1st pod. we are not getting any logs for the 2nd pod. Both

Re: Trouble with continuous queries

2019-05-02 Thread aealexsandrov
Hi, The good example of how it can be done you can see here: https://github.com/gridgain/gridgain-advanced-examples/blob/master/src/main/java/org/gridgain/examples/datagrid/query/ContinuousQueryExample.java You can set remote listener to handle changes on remote nodes and local listers for