I\'m using Ignite.NET 2.7.6 and sometimes it crashes in
Apache.Ignite.Core.Impl.Unmanaged.UnmanagedCallbacks.CacheEntryFilterApply(long memPtr)
I can confirm that a race condition is possible if IQueryCursor
instance is used from multiple threads, and one thread disposes it while another enumerates it.
Query cursors are not thread-safe, they are supposed to be used from a single thread.
Ticket filed: https://issues.apache.org/jira/browse/IGNITE-12348