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
Details:
Let 2 parts of stream 1 in LogCache: [0, 10], [100, 200]
Call LogCache#get with (streamId=1, start=5, end=20, max=100) will return an empty list, as records [10, 20] not in LogCache.
However, Call LogCache#getFirstRecordBaseOffset with (streamId=1, start=5, end=20, and max=1 set by getFirstRecordBaseOffset) will return the record at offset=5.
This will cause mismatches between get and getFirst and lead to infinite recursion.
The text was updated successfully, but these errors were encountered: