Re: Ignite 2.7.0: unresponsive: Found long running cache future -

2019-07-30 Thread Mahesh Renduchintala
Denis, It is quite difficult to capture all clients logs from our production environment. I gave you the server log. I can devise a better test if you can say explain this error? What does "long running cache futures" mean? regards mahesh

Affinity collocation and node rebalancing

2019-07-30 Thread lhendra
Hi, I'm totally new to Ignite and have been reading lots of documentation. I'm trying to find info on how node rebalancing is handled in relation to affinity collocation. There are 2 use cases that I want to confirm: (1) Create a new table with an affinity key to an existing table. (2) Add new col

Re: CacheConfiguration#setTypes: deserialization on client

2019-07-30 Thread Denis Magda
Could you please share your configuration? - Denis On Tue, Jul 30, 2019 at 10:37 AM Ruslan Kamashev wrote: > Related issue https://issues.apache.org/jira/browse/IGNITE-1903 > I don't use CacheStore, but I have the same problem with > CacheConfiguration#setTypes. > Could you offer a workaround

Re: Cache Query Filter Logic

2019-07-30 Thread Denis Magda
Could you please share the root cause and a solution with everyone? It might be the case that someone else stumbles upon the same issue. - Denis On Tue, Jul 30, 2019 at 1:09 PM raja24 wrote: > I have fixed it and working fine. > > > Thanks, > Raja. > > > > -- > Sent from: http://apache-ignite-

Re: ignite2.7.5-Some question about K-V data grid!

2019-07-30 Thread Denis Magda
Hi, It might be the case that most of the disk space is occupied by WAL or WAL archives. Check if that's the case and you can tune various WAL-related settings: https://apacheignite.readme.io/docs/write-ahead-log#section-tuning-wal-archive Let us know if it helps. - Denis On Mon, Jul 29, 2019

Re: Cache Query Filter Logic

2019-07-30 Thread raja24
I have fixed it and working fine. Thanks, Raja. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Cache Query Filter Logic

2019-07-30 Thread raja24
Igor, I have tries as per your suggestion still didn't work. import org.apache.ignite.cache.query.annotations.QueryTextField; public class Fund implements Serializable{ private static final long serialVersionUID = 1L; private int reportingSeq; @QueryText

CacheConfiguration#setTypes: deserialization on client

2019-07-30 Thread Ruslan Kamashev
Related issue https://issues.apache.org/jira/browse/IGNITE-1903 I don't use CacheStore, but I have the same problem with CacheConfiguration#setTypes. Could you offer a workaround for solving this problem? Can I just remove this line in my confi

C++ Thin Client can't consume complex objects published by a Java thick client - IgniteError: Unsupported binary protocol flag

2019-07-30 Thread samer.mas...@murex.com
Hello everyone, In short, I am producing complex data from a Java Thick Client, and consume it from a C++ Thin Client. In the C++ consumer, after calling cache.GetAll(keys, results); I am getting this error: Unsupported binary protocol flag: IGNITE_BINARY_FLAG_COMPACT_FOOTER: 32 However, it works

Re: Ignite 2.7.0: Ignite client:: memory leak

2019-07-30 Thread Mahesh Renduchintala
Infact, in the logs you can see that whenever the below print comes up, memory jumps up by 100-200MB >>Full map updating for 873 groups performed in 16 ms Metrics for local node (to disable set 'metricsLogFrequency' to 0) ^-- Node [id=4c8b23b4, uptime=00:19:13.959] ^-- H/N/C [hosts=8, n

Re: Affinity on non-key field

2019-07-30 Thread Stephen Darlington
No, and it’s not really possible. The problem is with something like IgniteCache.get(), the only information it has to find the value is the key. In that sense you’d be able to co-locate the data when you saved it to the cache, but you’d have no efficient way to find it again afterwards. Regard

Affinity on non-key field

2019-07-30 Thread Yohan Fernando
If you have a cache where you have the key as ObjectKey and value as ObjectValue, and the classes are like the following, is it possible in Ignite to have data co-location based on a non-key attribute? In this case on the private int c field in ObjectValue? I believe @AffinityKeyMapped annotatio

RE: Error compiling query: entire LINQ expression shouldbespecifiedwithin lambda passed to Compile method. Part of the query can'tbeoutsidethe Compile method call.

2019-07-30 Thread Alexandr Shapkin
Hello Siva, DateTime is a struct and thus should work the expected way. Please, make sure, that you re-created your cache after some development modifications. I checked this with the following example from your sources: public class Employee { … [QuerySqlField] pub

Re: Error compiling query: entire LINQ expression should bespecifiedwithin lambda passed to Compile method. Part of the query can't beoutsidethe Compile method call.

2019-07-30 Thread siva
Hi, when i tried with DateTime type using where clause, then also getting the following exception *Method not supported: System.DateTime.(Int32 CompareTo(System.DateTime)) * Please suggest if any other way to query with DateTime type. Thanks siva -- Sent from: http://apache-ignite-us

Re: Error compiling query: entire LINQ expression should bespecifiedwithin lambda passed to Compile method. Part of the query can't beoutsidethe Compile method call.

2019-07-30 Thread siva
Hi, when i tried with DateTime type using where clause, then also getting the following exception Method not supported: System.DateTime.(Int32 CompareTo(System.DateTime)) var compileQuery = CompiledQuery.Compile((DateTime tempDate) => cache1.Where(data => (data.Value.CreatedDateTime.Compare