Open
Description
When cockroach debug zip
retrieves data via the admin APIs, it does not specify a per-request limit:
cockroach/pkg/cli/zip_cluster_wide.go
Lines 38 to 69 in 49b57e3
This causes it to apply a default limit of 1000 entries for the Events
and RangeLog
endpoints (which ends up in rangelog.json
and events.json
).
Line 75 in f085778
This is problematic, since e.g. the rangelog may often contain older data of interest. debug zip
should paginate in order to include older data.
Jira issue: CRDB-11387