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
Currently, if the number of crash ids to reprocess is > 10k, the reprocess tool balks with a message like:
Reprocessing 29183 crashes sleeping 5 seconds between groups...
You are trying to reprocess more than 10,000 crash reports at once.
Please let us know on #crashreporting on Matrix before you do this.
That's not wildly helpful and causes automated scripts to fail. For the symbol scraper scripts which find missing symbols and then reprocess crash reports, this case comes up semi-often.
This issue covers figuring out a different behavior where we balance these things:
automated systems can generally work without human intervention
reprocessing requests are spread out over enough time that the processor cluster scales up and it doesn't trigger an alert
Possible ideas:
If more than 10k crash ids are specified and --allow-many isn't passed, reprocess truncates the list of crash ids to 10k and only reprocesses those.
If more than 10k crash ids are specified, reprocess enforces a large sleep interval between reprocess API requests or pauses X seconds every 1,000 crash ids or something like that.
The text was updated successfully, but these errors were encountered:
Currently, if the number of crash ids to reprocess is > 10k, the
reprocess
tool balks with a message like:That's not wildly helpful and causes automated scripts to fail. For the symbol scraper scripts which find missing symbols and then reprocess crash reports, this case comes up semi-often.
This issue covers figuring out a different behavior where we balance these things:
Possible ideas:
--allow-many
isn't passed,reprocess
truncates the list of crash ids to 10k and only reprocesses those.reprocess
enforces a large sleep interval between reprocess API requests or pauses X seconds every 1,000 crash ids or something like that.The text was updated successfully, but these errors were encountered: