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
When Bazel sends a read request with a non-zero offset and the compression flag set, the read request incorrectly fails with a not_found error.
Why
When a read request has a non-zero offset, it attempts to skip the specified number of bytes in the input stream. However, the skip functionality is not implemented for ZstdCompressingInputStream, which results in an IOException. This IOException is incorrectly classified as not_found. As a result, the blob location is removed from the backplane, causing the subsequent read requests for same digest also fails with a not_found error in the same build where the action cache check has already been completed.
The text was updated successfully, but these errors were encountered:
Bug
When Bazel sends a read request with a non-zero offset and the compression flag set, the read request incorrectly fails with a
not_found
error.Why
When a read request has a non-zero offset, it attempts to skip the specified number of bytes in the input stream. However, the skip functionality is not implemented for ZstdCompressingInputStream, which results in an IOException. This IOException is incorrectly classified as not_found. As a result, the blob location is removed from the backplane, causing the subsequent read requests for same digest also fails with a not_found error in the same build where the action cache check has already been completed.
The text was updated successfully, but these errors were encountered: