crawler: --no-cover, --concurrency, drop cross-host sleep + batch-50 Step 1 done
Three crawler ergonomics for batch operations:
--no-cover Skip cover image download. For scan-only modes (license/meta
scrape) this drops ~1.3s/project and avoids slow-CDN hangs.
--concurrency N ThreadPoolExecutor wrapping the per-project loop. Default
1 = serial (current behavior). Anonymous endpoints tolerate
5+ comfortably; output uses a print lock for readable
interleaved progress. fetch_cover plumbs through crawl_one.
Drop cross-host sleep #1: in crawl_one between detail HTML (oshwhub.com)
and cover image (image.lceda.cn). Different hosts — sleep was unnecessary.
Saves ~1s/project. Sleep #2 (post-cover, before next iteration) stays — it
gates the next oshwhub.com hit.
download_to gains max_seconds wall budget (default 60s, cover uses 15s).
Defends against pathologically slow CDN connections — observed 10 KB/s
on image.lceda.cn for one project, would have hung 6+ min on a 3.6 MB
cover otherwise. httpx default timeout resets per chunk, so streaming
downloads need an external wall-clock guard.
batch-50 Step 1 (license/meta scrape) shipped:
50/50 candidates have metadata.json + license recorded
License distribution: GPL 3.0 32, Public Domain 6, NC variants 8,
CERN-OHL 1, MIT 1, CC BY 3.0 1
Forge-friendly (non-NC): 41/50 (82%)
Declared attachments: 180 files / 2.36 GB (median 18 MB/proj, max 304 MB)
Walltime: 3min 26s for 28 projects at concurrency=5 (server-side
HTML render bound, not sleep-bound)
One orphan partial cover (a670e60a...) cleaned up — leftover from the
first aborted run before the timeout fix landed.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
21
data/raw/oshwhub/f643591fd411467db1e4efe3ce0970e8/_urls.json
Normal file
21
data/raw/oshwhub/f643591fd411467db1e4efe3ce0970e8/_urls.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"detail_url": "https://oshwhub.com/mazhiliang/esp32-dev",
|
||||
"cover_url": "https://image.lceda.cn/pullimage/XebSued0jf1SSfw4S0IaS83s1rhTo8pG3scKr3Qq.jpeg",
|
||||
"attachments": [
|
||||
{
|
||||
"name": "esp32_test01.22.mp4",
|
||||
"url": "https://image.lceda.cn/attachments/2022/1/9sXGJlNnVCjBDbrKQd6axcPqjMrRJ4f90qqAHc5w.mp4",
|
||||
"original_id": "a4119ec8f09842a7a5b992ffc3746f71"
|
||||
},
|
||||
{
|
||||
"name": "BOM_PCB_ESP32-DEV_rev0.html",
|
||||
"url": "https://image.lceda.cn/attachments/2022/1/FwGlGNEdASYPZrScilVWYxQG1mFy8qxoNN1cQhLb.html",
|
||||
"original_id": "668809a97eb3465c9c9245f78475535a"
|
||||
},
|
||||
{
|
||||
"name": "Schematic_ESP32-IOT-KIT_2022-01-16.pdf",
|
||||
"url": "https://image.lceda.cn/attachments/2022/1/4TRAS6KhQlDIz3Fwa4gd11HVYnNjlH76L8bqLLiY.pdf",
|
||||
"original_id": "9f2ce6e8a51d42618461edd605867142"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user