Apache.Ignite.Core.Impl.Unmanaged.UnmanagedCallbacks.CacheEntryFilterApply crash

后端 未结 1 1181
小蘑菇
小蘑菇 2021-01-23 21:36

I\'m using Ignite.NET 2.7.6 and sometimes it crashes in

Apache.Ignite.Core.Impl.Unmanaged.UnmanagedCallbacks.CacheEntryFilterApply(long memPtr)

1条回答
  •  醉梦人生
    2021-01-23 22:00

    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

    0 讨论(0)
提交回复
热议问题