Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.0.0
-
None
-
Reviewed
Description
In HBASE-17917 tries to switch from pread to stream read when a specific size of bytes are read. So in order to switch over, it closes the existing scanners and creates a new scanners with pread=false.
When we close the exisitng scanners - if the blocks are served from offheap cache we will decrement the ref count on those blocks and if it becomes zero we make the block ready for eviction. Then there is a chance that the result could be corrupted if new blocks occupy the cache. So the expectation was that till the RPC call completes the response we will hold on to the blocks that are referred by the scan. (except the last one). So trying to switch over to stream read will break this expectation and hence TestBlockEvictionfromclient fails.
Attachments
Attachments
Issue Links
- blocks
-
HBASE-18040 TestBlockEvictionFromClient fails in master branch
- Resolved
- depends upon
-
HBASE-17917 Use pread by default for all user scan and switch to streaming read if needed
- Resolved
- relates to
-
HBASE-20457 Return immediately for a scan rpc call when we want to switch from pread to stream
- Resolved