willkg / crashstats-tools

Command line tools and library for interacting with Crash Stats (https://crash-stats.mozilla.org/)
Mozilla Public License 2.0
7 stars 0 forks source link

parallelize fetch-data (#106) #107

Closed willkg closed 10 months ago

willkg commented 10 months ago

This vastly improves fetch-data speed as it allows us to do something like this:

cat crashids.txt | fetch-data --workers=5 crashdata

It defaults to 1 worker (serial). It requires a CRASHSTATS_API_TOKEN for multiple workers. The output is a lot leaner and easier to read.

Fixes #106.