Relative Content

Tag Archive for ignite

Ignite Crash With WAL MODE NONE

I am trying to figure out how to get to a stable ignite when persistence is enabled for a data region and WAL_MODE is NONE in case of graceful shutdown.

Is there a known issue using a ignite semaphore with many concurrent requests?

We tried to use the igite semaphore to control access to resources in a cluster. At low concurrency viz. < 10 threads the semaphore seems to work as documented. However when we have 100’s of threads it the semaphore.tryAcquire(1, 100, TimeUnit.MILLISECONDS); starts taking a lot more than 100 sec. The expectation is that it will fail in 100ms. Actually we have seen it take 15, 20 or even 30 sec.

Apache Ignite: IgniteException Failed to unmarshal object with optimized marshaller

I have a .Net 8 application that uses Apache Ignite .Net v2.16. Now I’m trying to build a Java 17 app that would join the Ignite cluster of the .Net app and use the native Ignite API to programatically reset lost partitions when such a condition is detected (further described in another SO question). The Java app also uses v2.16.

Storing binary values in Apache Ignite – Not inserted into SQL table

I have created a simple Apache Ignite setup that I hope to use for SQL later, but I want to construct it via the Java API for now. It is intended to be dynamic, so I can’t use a POJO class for insertion. Unfortunately, I get this warning, and stepping through the GridQueryProcessor code in a debugger reveals no obvious fixes. I suspect that part of it is that my type() call is always null (variable b, printed as b=null), but I’m not sure.