Re: Failure to start a bigger ignite cluster.

2017-02-23 Thread atricuix
upon enabling debug logs - observing the below on the node which fails to start after the initial set of 6-7 nodes. {"@timestamp":"2017-02-24T02:47:46.913-05:00","@version":1,"message":"Caught exception on message read [sock=Socket[addr=/,port=57440,localport=47500], locNodeId=20fbcd3d-d502-48

Re: Same Affinity For Same Key On All Caches

2017-02-23 Thread Alper Tekinalp
Hi. Thanks for your comments. Let me investigate the issue deeper. Regards. On Thu, Feb 23, 2017 at 11:00 PM, Dmitriy Setrakyan wrote: > If you use the same (or default) configuration for the affinity, then the > same key in different caches will always end up on the same node. This is > guara

Node fauliure

2017-02-23 Thread Anil
Hi , I see the node is down with following error while running compute task # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x7facd5cae561, pid=18543, tid=0x7fab8a9ea700 # # JRE version: OpenJDK Runtime Environment (8.0_111-b14) (build 1.8.0_11

Failure to start a bigger ignite cluster.

2017-02-23 Thread atricuix
hi,we have a 4 member ignite cluster starting up well. but when we start extending above and as we add more nodes, we have couple of situations.1. Adding more nodes to the cluster takes time - sometimes upto 180-210seconds.2. Post 7 nodes - we can't add more - nodeCount oscilates between 7 and 6. T

Re: Cache Entries get lost after multiple nodes started ?

2017-02-23 Thread Neeraj Vaidya
Another thing I noticed is that if I stop the node which initially populated the entries, some entries are suddenly lost from the cache. This is really strange to me. Regards, Neeraj On Fri, 24/2/17, Neeraj Vaidya wrote: Subject: Re: Cache Entries

Re: GROUP_CONCAT function is unsupported

2017-02-23 Thread Denis Magda
Here is the ticket: https://issues.apache.org/jira/browse/IGNITE-4750 — Denis > On Feb 22, 2017, at 1:58 AM, Sergi Vladykin wrote: > > Yes, this stuff is not implemented right now. Patches are welcome! > > Sergi > > 2017-02-22 8:39 GMT+03:0

Re: Cache Entries get lost after multiple nodes started ?

2017-02-23 Thread Neeraj Vaidya
I was able to resolve this after I changed the Key from AffinityUuid to a simple Integer which is auto-incremented. How does one explain the behaviour ? Regards, Neeraj On Fri, 24/2/17, Neeraj Vaidya wrote: Subject: Cache Entries get lost after mul

Cache Entries get lost after multiple nodes started ?

2017-02-23 Thread Neeraj Vaidya
Hi, I have populated a cache containing a K,V pair of . It gets populated fine when I start a single node which is responsible for populating the cache. I am able to retrieve all rows using Zeppelin ignite interpreter or even using web-console. However, when I start another node using the same c

Re: Real-time computing

2017-02-23 Thread Neeraj Vaidya
Thanks Andrey, 1) If I understand correctly, the FailOver feature of the ComputeGrid is to mitigate SPOF for the compute jobs i.e. the Callables/Runnables/Closures which are distributed to multiple nodes. But my goal was also to mitigate the failure of the client node which is responsible for r

Re: Missing records Ignite cache size grows

2017-02-23 Thread diopek
Problem is; I have 32GB development box, my test runs that could fit into this much memory I am not able to replicate the issue. it happens on Linux server where I have around 128GB memory. Basically it is not easy to debug. -- View this message in context: http://apache-ignite-users.70518.x6.

Re: Lucene like Contains phrase query

2017-02-23 Thread vkulichenko
These are two different mechanisms. Use @QuerySqlField for SQL queries, or @QueryTextField for text (Lucene) queries. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Lucene-like-Contains-phrase-query-tp10808p10845.html Sent from the Apache Ignite Users mail

Re: Timeout was reached before computation completed

2017-02-23 Thread vkulichenko
Devis, I think this happens because of thread starvation. Both compute job and service proxy invocations are processed in the same thread pool, so if you synchronously call a service from a job, you can run out of threads and get stuck. Can you replace the service with another callable? In this ca

Re: Lucene like Contains phrase query

2017-02-23 Thread Ranjit Sahu
to use lucene indexing we have to index the filed as @QueryTextField right ? Or index type @QuerySqlField this also uses lucene? On Fri, Feb 24, 2017 at 2:46 AM, vkulichenko wrote: > Ranjit, > > This particular search can be even done with SQL (where entityName like > 'YAMAHA MOTOR%'). As long a

Re: java.lang.NoClassDefFoundError: Could not initialize class org.apache.ignite.sink.flink.IgniteSink$SinkContext$Holder

2017-02-23 Thread vkulichenko
Hi, Please properly subscribe to the mailing list so that the community can receive email notifications for your messages. To subscribe, send empty email to user-subscr...@ignite.apache.org and follow simple instructions in the reply. kadsank wrote > Please try to run the programe on flink clust

Re: Lucene like Contains phrase query

2017-02-23 Thread vkulichenko
Ranjit, This particular search can be even done with SQL (where entityName like 'YAMAHA MOTOR%'). As long as you don't have '%' in the beginning, search will use the index. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Lucene-like-Contains-phrase-query-t

Re: Missing records Ignite cache size grows

2017-02-23 Thread vkulichenko
I'm not aware of any bugs there. Please debug your code and check where the data is lost. It would be impossible to get to the bottom of the issue without isolating it. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Missing-records-Ignite-cache-size-grows-

Re: Same Affinity For Same Key On All Caches

2017-02-23 Thread Dmitriy Setrakyan
If you use the same (or default) configuration for the affinity, then the same key in different caches will always end up on the same node. This is guaranteed. D. On Thu, Feb 23, 2017 at 8:09 AM, Andrey Mashenkov < andrey.mashen...@gmail.com> wrote: > Val, > > Yes, with same affinity function en

Re: QueryCursor with Order by query

2017-02-23 Thread Andrey Mashenkov
Hi Anil, Merge table is created on reduce side. Find usages of GridReduceQueryExecutor.createMergeTable() method. On Thu, Feb 23, 2017 at 8:08 PM, Anil wrote: > Thanks Andrey. > > where are these merge temporary tables created ? on client ? i may need to > more to time to understand the interna

Re: Grid Events and oldValue versus newValue

2017-02-23 Thread Andrey Mashenkov
Hi Grodon, I've made a reproducer, but it work fine for me on ignite-1.7 and ignite-1.8. Please, check if I missed smth in repro attached. On Tue, Feb 14, 2017 at 10:13 AM, gordon.reid@ninemilefinancial < gordon.r...@ninemilefinancial.com> wrote: > Sure, thanks Andrey. Please see attached. I ha

Re: QueryCursor with Order by query

2017-02-23 Thread Anil
Thanks Andrey. where are these merge temporary tables created ? on client ? i may need to more to time to understand the internal code :) Thanks On 23 February 2017 at 20:21, Andrey Mashenkov wrote: > Hi Anil, > > Query initiator node will fetch all records before appling sorting. It is > know

Re: Real-time computing

2017-02-23 Thread Andrey Mashenkov
Hi Neeraj, 1. Why you want to use Zookeeper to mitigating an SPOF instead of Ignite ComputeGrid failover features? 2. If you need to reuse data then caching makes sense. For processing new entries you can use Events or Continuous queries. You are free in choosing number of nodes for your grid. Yo

Re: QueryCursor with Order by query

2017-02-23 Thread Andrey Mashenkov
Hi Anil, Query initiator node will fetch all records before appling sorting. It is known bug [1], and I hope it will be fixed soon. What about QueryCursor, it is just wrapper that supports query cancellation. Pagination is applied to load map-queries results by reducer in async manner. Looking a

Re: Pessimistic TXN did not release lock on a key, all subsequent txns failed

2017-02-23 Thread bintisepaha
This is the actual error that looks like it is not coming from our code 109714 Feb 22, 2017 3:46:17 PM org.apache.ignite.logger.java.JavaLogger error 109715 SEVERE: Failed to acquire lock for request: GridNearLockRequest [topVer=AffinityTopologyVersion [topVer=3153, minorTopVer=32], miniId=acdced

Re: Lucene like Contains phrase query

2017-02-23 Thread Ranjit Sahu
Hi Val, let me explain little more . For my use case i am building a cache . EntityVO have a field called entityName (String). Suppose i have three names here. YAMAHA MOTOR CORP TOYOTA MOTOR CORP HONDA MOTOR CORP YAMAHA MOTOR CORPORATION With the TextQuery ignite have if i search for "YAMAHA

Re: IGNITE-2680

2017-02-23 Thread Anil
Hi Val, Thanks. I can take it up. let me comeback on this on next Monday :) Thanks On 23 February 2017 at 07:09, vkulichenko wrote: > I believe it was missed, I created a ticket: > https://issues.apache.org/jira/browse/IGNITE-4748 > > Hopefully someone will fix it in 1.9. Feel free to pick it

QueryCursor with Order by query

2017-02-23 Thread Anil
Hi, QueryCursor is used to get the records in pages instead of loading all records into client memory. and I understand that sorting needs to get all the records into client (assuming reducer is client. correct me if i am wrong) memory. How does QueryCursor with sort query behaves ? Thanks. Tha