Re: ContinuousQueryWithTransformer fails to deliver an update when a custom java class is being used as a transformed value

2021-02-10 Thread Ilya Kasnacheev
Hello! This does indeed look like a bug. I have filed https://issues.apache.org/jira/browse/IGNITE-14161 Regards, -- Ilya Kasnacheev ср, 10 февр. 2021 г. в 15:48, : > Hi Ilya, > > Sure, the complete code could be found here: >

Re: ContinuousQueryWithTransformer fails to deliver an update when a custom java class is being used as a transformed value

2021-02-10 Thread Ivan Fedorenkov
Thank you, Ilya! ср, 10 февр. 2021 г. в 17:01, Ilya Kasnacheev : > Hello! > > This does indeed look like a bug. I have filed > https://issues.apache.org/jira/browse/IGNITE-14161 > > Regards, > -- > Ilya Kasnacheev > > > ср, 10 февр. 2021 г. в 15:48, : > >> Hi Ilya, >> >> Sure, the complete code

Re: Long transaction suspended

2021-02-10 Thread Ilya Kasnacheev
Hello! I can see that the only occurrence of transaction suspending in our own code is in thin client implementation. Do you happen to use thin client for this operation? Regards, -- Ilya Kasnacheev пн, 8 февр. 2021 г. в 20:32, akorensh : > I would also recommend taking a thread dump to see

Re: Long transaction suspended

2021-02-10 Thread jjimeno
Hi, First off, thanks for your help. In the test, I'm using a single server node cluster with the official 2.9.1 version. Client is a C++ Thin Client with transactions support (commit 685c1b70ca from master branch). The test is very simple: struct Blob { int8_t

Re: Long transaction suspended

2021-02-10 Thread Ilya Kasnacheev
Hello! I think you need to register first. Btw, why do you need such large transactions? Have you considered data streamer instead? Regards, -- Ilya Kasnacheev ср, 10 февр. 2021 г. в 15:28, jjimeno : > I wouldn't mind, but I'm afraid I'm not allowed to... at least, I couldn't > find the

Re: Long transaction suspended

2021-02-10 Thread Ilya Kasnacheev
Hello! Would you care to create a JIRA ticket for that issue? https://issues.apache.org/jira/projects/IGNITE/issues Regards, -- Ilya Kasnacheev ср, 10 февр. 2021 г. в 14:18, jjimeno : > Hi, > > First off, thanks for your help. > > In the test, I'm using a single server node cluster with the

Re: Long transaction suspended

2021-02-10 Thread jjimeno
Hi, Because of the kind of product we have to develop, we currently have a set of scenarios with this kind of transactions and we're evaluating several datastores as RocksDB and, sadly, timings there are quite better than the ones I've got in Ignite... :( Data streamer is not available in C++

Re: Long transaction suspended

2021-02-10 Thread Ilya Kasnacheev
Hello! RocksDB is an embedded database whereas Apache Ignite is a *distributed* database. Regards, -- Ilya Kasnacheev ср, 10 февр. 2021 г. в 16:11, jjimeno : > Hi, > > Because of the kind of product we have to develop, we currently have a set > of scenarios with this kind of transactions and

Re[2]: Long transaction suspended

2021-02-10 Thread Zhenya Stanilovsky
Hi !   >Hi, > >Because of the kind of product we have to develop, we currently have a set >of scenarios with this kind of transactions and we're evaluating several >datastores as RocksDB and, sadly, timings there are quite better than the >ones I've got in Ignite... :(   I believe tx.putAll

Re: Right Handling of UnRegisteredBinaryObjectTypeException

2021-02-10 Thread akurbanov
Hello Veena, Could you please attach a runnable reproducer project which will showcase the issue and also could you please explain the difference between the case where you do see this exception and the one where you don't. What does exactly "We dont get this exception if we sync any single

Re: Long transaction suspended

2021-02-10 Thread jjimeno
I wouldn't mind, but I'm afraid I'm not allowed to... at least, I couldn't find the option on that page :) -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: ContinuousQueryWithTransformer fails to deliver an update when a custom java class is being used as a transformed value

2021-02-10 Thread Ivan.Fedorenkov
Hi Ilya, Sure, the complete code could be found here: https://github.com/ifedorenkov-tda/ignite-experiments/tree/continuous-query-with-transformer-missing-events Just start 3-4 server nodes and then 1 client node. Best regards, Ivan Fedorenkov From: Ilya Kasnacheev Reply-To:

Re: ContinuousQueryWithTransformer fails to deliver an update when a custom java class is being used as a transformed value

2021-02-10 Thread Ilya Kasnacheev
Hello! Can you please share the complete runnable project? In your gist, POJO classes are missing. Regards, -- Ilya Kasnacheev вт, 9 февр. 2021 г. в 13:57, : > Dear Igniters, > > I have come across a bug in ContinuousQueryWithTransformer. The thing is > that the query is failing to deliver

Re: Ignite 2.8.1 - Remote node does not observe current node in topology

2021-02-10 Thread Ilya Kasnacheev
Hello! These two nodes were removed from cluster due to inability to submit metrics in time: [15:07:16,330][WARNING][tcp-disco-msg-worker-[11cf0c06 10.212.120.71:57500 crd]-#2%hh_DynamicGrid_v2%][TcpDiscoverySpi] Failing client node due to not receiving metrics updates from client node within

Re: cpu usage is %10 while running query on ignite

2021-02-10 Thread Ilya Kasnacheev
Hello! This looks like a huge query which should be optimized in parts. Please try to simplify it until it is no longer slow, then you will find the step which is not optimal. Regards, -- Ilya Kasnacheev пт, 29 янв. 2021 г. в 08:10, cihad : > thank you for quick reply > > here is some part

Re: Long transaction suspended

2021-02-10 Thread jjimeno
Hello Ilya, Yes, but it has nothing to do with suspending an active transaction... the problem is that transaction never reaches ACTIVE state because it takes a long time creating the tcp message. Please, take a look to my previous post. -- Sent from:

Re: Right Handling of UnRegisteredBinaryObjectTypeException

2021-02-10 Thread VeenaMithare
Hi Anton , Thank you for the reply, We sync tables/caches in from a source db. i.e. we read all the records of a table and insert/update records into the table/cache in ignite. When the sync application runs just for a single table - we dont see the unregisteredbinarytypeexception . When we

Re: Re[2]: Long transaction suspended

2021-02-10 Thread Ilya Kasnacheev
Hello! Unfortunately, this C++ thin client / platforms issue is not so easily fixable. Our platforms interaction does not expect buffers larger than 2G apparently. Regards, -- Ilya Kasnacheev ср, 10 февр. 2021 г. в 16:43, Zhenya Stanilovsky : > Hi ! > > > > > Hi, > > Because of the kind of

Could you please help remove my email from the mail list?

2021-02-10 Thread Ares Zhu
I have removed my account from the forum, but I still can receive mail from http://apache-ignite-users.70518.x6.nabble.com/, seems I are still on the list. Thanks, Ares

Re: Could you please help remove my email from the mail list?

2021-02-10 Thread Mikael
You sent email to user-unsubscr...@ignite.apache.org ? Any chance you have multiple email accounts and that it is using another account ? make sure "to" is actually to your current email and not some other

Re: Long transaction suspended

2021-02-10 Thread jjimeno
Hello! That's exactly the reason why we would prefer to choose Ignite over RocksDB. Otherwise, we will have to implement scalability by ourselves and, believe me, that's not something we would like to do. We also know they're not directly comparable. We would agree to pay the price for