Skip to content

GCSFuse Errors in Google Cloud Console: CANCELLED ReadObject & NOT_FOUND GetObjectMetadata #2300

Answered by ashmeenkaur
ashmeenkaur asked this question in Q&A
Discussion options

You must be logged in to vote

Both CANCELLED ReadObject and NOT_FOUND GetObjectMetadata errors are generally expected behaviors within GCSFuse and don't necessarily indicate a problem.

CANCELLED ReadObject:

  • These errors typically occur when you perform range reads on a file handle.
  • GCSFuse uses an adaptive reader to optimize performance. It starts with a larger buffer (200MB) and adjusts down to a smaller buffer (1MB) if it detects random access patterns.
  • When a read request can't be served by the existing reader (e.g., it's outside the current buffer range), or if the next read is significantly far from the current reader position, GCSFuse closes the existing reader and opens a new one at the appropriate offset.
    Thi…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ashmeenkaur
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant