11 OUT_OF_RANGE
The operation was attempted past the valid range. For example, seeking or reading past the end of a file.
On this page
When You See This Code
A pagination offset exceeded the available data, or an iterator moved past the end of a collection. Unlike INVALID_ARGUMENT, this depends on the current state of the data.
How to Fix
Check the valid range before making the request. For pagination, use the total count or next-page token to avoid requesting beyond the last page.
Specification
Compare With
Guides
Debugging Scenarios
Glossary
Frequently Asked Questions
What is gRPC 11 OUT_OF_RANGE?
The operation was attempted past the valid range. For example, seeking or reading past the end of a file.
When do you see gRPC 11 OUT_OF_RANGE?
A pagination offset exceeded the available data, or an iterator moved past the end of a collection. Unlike INVALID_ARGUMENT, this depends on the current state of the data.
How to fix gRPC 11 OUT_OF_RANGE?
Check the valid range before making the request. For pagination, use the total count or next-page token to avoid requesting beyond the last page.