You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_store.TryInitiateFullCheckpoint(outvarsnapshotId,CheckpointType.Snapshot);_store.CompleteCheckpointAsync().AsTask().GetAwaiter().GetResult();_store.Log.FlushAndEvict(true);returnnewFasterDbSnapshot(this,_checkpointSettings,snapshotId);//...._snapshot=NullStorageDevice.Create(_checkpointSettings,out_logSettings);_snapshot.Recover(_snapshotId);_sessionPool=new(_logSettings.LogDevice.ThrottleLimit,()=>_snapshot.For(newByteArrayFunctions()).NewSession<ByteArrayFunctions>());//...publicbyte[]?TryGet(byte[]key){if(_sessionPool.TryGet(outvarsession)==false)session=_sessionPool.Get();var(status,output)=session.Read(key);// <--- Throws Here, status is "FOUND", "output" is exceptionbyte[]?value=null;if(status.Found)value=output;if(status.IsPending&&session.CompletePendingWithOutputs(outvariter,true,true)){using(iter){while(iter.Next()){if(iter.Current.Key.AsSpan().SequenceEqual(key)){value=iter.Current.Output;break;}}}}_sessionPool.Return(session);returnvalue;}
Exception
System.AccessViolationException: 'Attempted to read or write protected memory. This is often an indication that other memory is corrupt.'
Example
Exception
CallStack
The text was updated successfully, but these errors were encountered: