Re: Failed to execute query because cache partition has been lostParts

2022-02-01 Thread Surinder Mehra
Hi Stephen, I tried it again to identify issues. This time I commented out the line which was activating the cluster everytime client started. It looks to work properly now. Thanks for your help. On Mon, Jan 31, 2022 at 8:58 PM Surinder Mehra wrote: > Hi, > Backups are configured, please rechec

baseline command fails when node is down

2022-02-01 Thread Surinder Mehra
I was trying to add and remove nodes as mentioned in the blog below. When I kill a node and try running ./control.sh --baseline. It consistently throws errors https://dzone.com/articles/apache-ignite-baseline-topology-by-examples I tried it several times. When I restarted that node, it started wor

Warning Exception closing JdbcConnection

2022-02-01 Thread Thomas Kramer
Hi, I am switching from 2.8.1 to 2.12.0 and encounter an issue when closing thin JDBC connection. This is my test case: /    public static void main(String[] args) throws Exception// //    {// //    try (Ignite ignite = Ignition.start())// //    {// //    System.out.println("Co

Re: Restore data from Ignite snapshots

2022-02-01 Thread Surinder Mehra
Hi, After a few hiccups, I managed to restore the cluster state from the snapshot. Please confirm if they look correct. If so documentation page needs to be updated 1. Create N nodes 2. Add some data to them 3. Create snapshot 4. Stop all nodes(cluster) 5. Delete binary_data, marsh

Re: Restore data from Ignite snapshots

2022-02-01 Thread Maxim Muzafarov
Hello, Your case looks correct to me, however, I'd like to mention some important points that may help you: - the directories structure of the snapshot has the same structure as the Ignite native persistence, so you may backup the original cluster node directory (for binary_data, marshaller and db

Re: How to use ignite-aws-ext with 2.12.0

2022-02-01 Thread Maxim Muzafarov
Hello, The aws extension will be released soon. Nothing changed here from 2.11 to 2.12 except that the sources have been moved to the ignite-extension project [1] and the first release is needed to be prepared. [1] https://github.com/apache/ignite-extensions/tree/master/modules/aws-ext On Wed, 2

Re: Critical System Error in ContinuousQuery processing node

2022-02-01 Thread Maxim Muzafarov
Hello, Can you attach the full stack trace and log, please? On Thu, 27 Jan 2022 at 19:11, Mike Wiesenberg wrote: > > Hi, > When I start a continuous query listener while another client is deleting > entries from the same cache, I observe the node and listener crash with this > exception in th

Re: Nodejs cache problem.

2022-02-01 Thread Eduard Rakhmankulov
Good day, F.D.! Can you provide ignite logs related to this problem? On Tue, 1 Feb 2022 at 10:46, F.D. wrote: > Hi, > I'm trying to use Apache Ignite to store protobuf messages in cache, > trying to speed up our web interface. > I'm using the thin client for nodejs, and the 2.12.0 of Ignite.

Re: Server cache reads less number of entries than number of entries put by client cache

2022-02-01 Thread Sumit Deshinge
Thank you Surinder and Pavel. I will give this approach a try. But even in case of iterator, when I try refreshing the iterator once it reached to last record, i.e. new iterator, it does not give all the entries as described in the first email steps. On Fri, Jan 28, 2022 at 4:08 PM Pavel Tupitsyn

Re: Server cache reads less number of entries than number of entries put by client cache

2022-02-01 Thread Pavel Tupitsyn
> While iterating over the cache, data is removed from the cache Sumit, as I understand, you read data while you also remove it, so it is not clear what the expectation is. On Wed, Feb 2, 2022 at 10:28 AM Sumit Deshinge wrote: > Thank you Surinder and Pavel. I will give this approach a try. > B

Re: Server cache reads less number of entries than number of entries put by client cache

2022-02-01 Thread Sumit Deshinge
Hi Pavel, I am trying to remove the data from one cache (on which I am iterating) to another cache in transaction. When the iterator says no further elements, I again try getting a new iterator after few seconds, to check if there is any new data available. In this process, I am missing one or tw