Re: Unable create a Cache SQL table on Ignite Node.

2023-03-01 Thread Jeremy McMillan
Java exception troubleshooting usually begins with an error message and a stack trace. Can we get that added to your fine description of how you found the error? We still don't know what error you found. Also please provide your config, with secrets redacted, of course. Both the details of the

Re: Unable to start Ignite server node through java API

2023-03-01 Thread Abhishek Ubhe
Hello Gianluca, Here I have attached a pom you can check. I think It may be happening because of other dependencies of spark and ignite-spark. On Wed, Mar 1, 2023 at 7:00 PM Gianluca Bonetti wrote: > Hello > > I only use: > > > org.apache.ignite > ignite-core > 2.14.0 > > >

Storage Exception using Ignite

2023-03-01 Thread satyajit.mandal.barclays.com via user
Hi Team, Am getting below storage exception while loading a heavy table into cache. Am running Ignite on windows . 17:29:29,731][SEVERE][exchange-worker-#62][] JVM will be halted immediately due to the failure: [failureCtx=FailureContext [type=CRITICAL_ERROR, err=class

Re: Does peer class loading have to be enabled on both server and client node?

2023-03-01 Thread John Smith
So I'm stuck with a catch 22 here... I can't enable the flag on the server nodes without shutting down all the client nodes and vise versa Unless I did something wrong, but the server shuts off when i set the value to true and it doesn't match with the another node... So I would have to

Re: Performance of data stream on 3 cluster node.

2023-03-01 Thread John Smith
My key is phone_number and they are all unique... I'll check with the command... On Wed., Mar. 1, 2023, 11:20 a.m. Stephen Darlington, < stephen.darling...@gridgain.com> wrote: > The streamer doesn’t determine where the data goes. It just efficiently > sends it to the correct place. > > If your

Re: Performance of data stream on 3 cluster node.

2023-03-01 Thread Stephen Darlington
The streamer doesn’t determine where the data goes. It just efficiently sends it to the correct place. If your data is skewed in some way so that there is more data in some partitions than others, then you could find one machine with more work to do than others. All else being equal, you’ll

Re: How to delete data of a specified partition with high performance

2023-03-01 Thread Jeremy McMillan
These documentation pages should help. https://ignite.apache.org/docs/latest/key-value-api/basic-cache-operations https://ignite.apache.org/docs/latest/configuring-caches/atomicity-modes On Tue, Feb 28, 2023 at 11:42 PM 38797715 <38797...@qq.com> wrote: > hi, > > How to delete data of a

Re: Performance of data stream on 3 cluster node.

2023-03-01 Thread John Smith
Ok thanks. I just thought the streamer would be more uniform. On Wed, Mar 1, 2023 at 4:41 AM Stephen Darlington < stephen.darling...@gridgain.com> wrote: > You might want to check the data distribution. You can use control.sh > —cache distribution to do that. > > On 28 Feb 2023, at 20:32, John

Re: Unable to start Ignite server node through java API

2023-03-01 Thread Gianluca Bonetti
Hello I only use: org.apache.ignite ignite-core 2.14.0 Which brings in what is required and actually does NOT bring in H2, because it's not required any more. I guess you should fix your pom.xml, which I have no information about, as you didn't share. Cheers Gianluca On

Re: Unable to start Ignite server node through java API

2023-03-01 Thread Abhishek Ubhe
Okay, Can you suggest any changes in maven dependencies? On Wed, Mar 1, 2023 at 2:07 PM Gianluca Bonetti wrote: > Hello > > It's very strange that this method does not exist in the H2 library. > Can you please check you're not including the H2 library twice? > For what I know, Ignite works with

Re: Performance of data stream on 3 cluster node.

2023-03-01 Thread Stephen Darlington
You might want to check the data distribution. You can use control.sh —cache distribution to do that. > On 28 Feb 2023, at 20:32, John Smith wrote: > > The last thing I can add to clarify is, the 3 node cluster is a centralized > cluster and the CSV loader is a thick client running on its own

Re: Unable to start Ignite server node through java API

2023-03-01 Thread Gianluca Bonetti
Hello It's very strange that this method does not exist in the H2 library. Can you please check you're not including the H2 library twice? For what I know, Ignite works with h2-1.4.197.jar which is included in the last bundle. I think you are including a newer version instead, or aside. Cheers