Re: Call for presentations for ApacheCon North America 2020 now open

2020-08-04 Thread Denis Magda
Congrats, Saikat! I received a similar message that my talk (In-memory computing essentials for software engineers) was accepted as well. So, at least two talks by the Ignite folks. Once you share the time your presentation is scheduled for, I'll go ahead and update on the events' page on the

Re: Call for presentations for ApacheCon North America 2020 now open

2020-08-04 Thread Saikat Maitra
Hello Prasad, Yes sure, I will share the slides. Regards, Saikat On Tue, Aug 4, 2020 at 9:35 PM Prasad Bhalerao wrote: > Hi Saikat, > Can you please share the slides for both presentations, streaming as well > as ignite internals? > Thanks, > Prasad > > On Wed 5 Aug, 2020, 7:10 AM Saikat

Re: Enabling swapPath causes invoking shutdown hook

2020-08-04 Thread 38797715
Hi Ilya, If so, there are two ways to implement ignite's swap space: 1. maxSize > physical memory, which will use the swap mechanism of the OS, can be used *vm.swappiness* Adjust. 2. Configure the *swapPath* property, which is implemented by Ignite itself, is independent of the OS and has no

Re: Call for presentations for ApacheCon North America 2020 now open

2020-08-04 Thread Prasad Bhalerao
Hi Saikat, Can you please share the slides for both presentations, streaming as well as ignite internals? Thanks, Prasad On Wed 5 Aug, 2020, 7:10 AM Saikat Maitra Hi, > > I learned that my proposal for talk about Data Streaming using Apache Ignite > and Apache Flink has been accepted. > > I have

Re: Call for presentations for ApacheCon North America 2020 now open

2020-08-04 Thread Saikat Maitra
Hi, I learned that my proposal for talk about Data Streaming using Apache Ignite and Apache Flink has been accepted. I have not yet received the schedule yet. I will share as soon as I have it. Regards, Saikat On Wed, Jan 22, 2020 at 8:09 PM Saikat Maitra wrote: > Hi Denis, > > Thank you for

Re: 2.8.1 : EVT_NODE_RECONNECTED, EVT_NODE_SEGMENTED on the client side

2020-08-04 Thread akurbanov
Hello, This case seems to be correct, it logs the event of client state updated from DISCONNECTED to RECONNECTED because the node succeeded to join the topology back within some time, the node was not segmented from the topology. What timeouts do you use in your nodes configuration? I would

Re: IgniteTxOptimisticCheckedException

2020-08-04 Thread Ilya Kasnacheev
Hello! Optimistic transactions are supposed to be retry-able. Why won't you retry such transactions upon getting the exception? Regards, -- Ilya Kasnacheev пт, 31 июл. 2020 г. в 10:56, marble.zh...@coinflex.com < marble.zh...@coinflex.com>: > Hi Guru, > > We met below two kinds of Optimistic

Re: question about collation with an ignite set

2020-08-04 Thread Ilya Kasnacheev
Hello! Why don't you set cacheMode to REPLICATED? Partitions in replicated caches should not be lost. Regards, -- Ilya Kasnacheev пн, 3 авг. 2020 г. в 08:35, scottmf : > hi, If I setup my *Ignite Set* as specified below what will happen when a > node leaves the cluster topology forever?

Re: What does all partition owners have left the grid, partition data has been lost mean?

2020-08-04 Thread Ilya Kasnacheev
Hello! What is your baseline topology at this moment? It means just that: you have lost enough nodes of your distributed grid that data is nowhere to be found now. Regards, -- Ilya Kasnacheev пн, 3 авг. 2020 г. в 19:12, John Smith : > I get the below exception on my client... > > #1 I

Re: Ignite client node hangs while IgniteAtomicLong is created

2020-08-04 Thread Ilya Kasnacheev
Hello! Can you collect thread dumps from all nodes once you get them hanging? Can you throw together a reproducer project? Regards, -- Ilya Kasnacheev вт, 4 авг. 2020 г. в 12:51, Ilya Roublev : > We are developing Jira cloud app using Apache Ignite both as data storage > and as job

Re: Reconnect is not allowed due to applied throttling

2020-08-04 Thread Alex Plehanov
Hello, Ignite thin client applies connection throttling if you have several failed attempts to connect to some server (this server will be skipped for some time to avoid waiting for connection timeouts on each attempt to connect, the client will try to connect to the next servers if they are

Re: integrated with Ignite and HBase

2020-08-04 Thread akurbanov
Hello, Google immediately gives this repo in search: https://github.com/bakdata/ignite-hbase It's 2017, but could be used as a base for your implementation or give you an idea how to do this. The cache store implementation is very straightforward, you just need to delegate the calls to the

Re: Reconnect is not allowed due to applied throttling

2020-08-04 Thread akurbanov
Hello, This was implemented as a part of https://issues.apache.org/jira/browse/IGNITE-11898. Please check the javadocs for the ClientConfiguration class: https://github.com/apache/ignite/commit/d72a123e122ffe1b4f715f98c2db5d79293f0c90

Re: 2.8.1 - Loading Plugin Provider - Conflicting documentation

2020-08-04 Thread Ilya Kasnacheev
Hello! You do this with IgniteConfiguration.setPluginConfiguration(). Regards, -- Ilya Kasnacheev вт, 28 июл. 2020 г. в 13:04, VeenaMithare : > Okay. > > >> The recommended way is to use the service provider as detailed here: > > How do we pass configuration for the provider in this

Re: [External]Re: Node left from running cluster due to org.apache.ignite.internal.processors.cache.persistence.tree.CorruptedTreeException: Runtime failure on search row

2020-08-04 Thread Ilya Kasnacheev
Hello! You can't do that in runtime, but you can certainly remove index.bin as bulk operation. Regards, -- Ilya Kasnacheev вт, 28 июл. 2020 г. в 08:48, Kamlesh Joshi : > Thanks for the update Andrei. We upgraded from 2.6.0 to 2.7.6. > > We followed the same approach and it worked properly. >

Re: Enabling swapPath causes invoking shutdown hook

2020-08-04 Thread Ilya Kasnacheev
Hello! >From the docs: To avoid this situation with the swapping capabilities, you need to : - Set maxSize = bigger_ than_RAM_size, in which case, the OS will take care of the swapping. - Enable swapping by setting the DataRegionConfiguration.swapPath property. I actually think

Re: Block until partition map exchange is complete

2020-08-04 Thread Ilya Kasnacheev
Hello! It is supposed to be fixed in 2.8. Did you check that? Thanks. -- Ilya Kasnacheev ср, 22 июл. 2020 г. в 12:24, ssansoy : > Hi, could the behaviour I have observed be captured by this bug: > > https://issues.apache.org/jira/browse/IGNITE-9841 > > "Note, ScanQuery exhibits the same

Reconnect is not allowed due to applied throttling

2020-08-04 Thread AravindJP
Hi , I am getting below exception after running an Ignite client running continuously for 48 hrs . My client is running on java (spring boot) . I am using singleton instance of IgniteClient object to connect and persist data. Ignite version 2.8.0 020-08-04 10:02:18.520 ERROR 1 ---

Ignite client node hangs while IgniteAtomicLong is created

2020-08-04 Thread Ilya Roublev
We are developing Jira cloud app using Apache Ignite both as data storage and as job scheduler. This is done via a standard Ignite client node. But we need to use Atlassian Connect Spring Boot to be able to communicate with Jira. In short, all is done exactly as in our article Boosting Jira Cloud

integrated with Ignite and HBase

2020-08-04 Thread 38797715
Hi community, Does the community have a demo integrated with Ignite and HBase? Such as the implementation of CacheStore or other implementation patterns?