search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: tune TAP memory and parallelism to prevent OOM

- increase memory from 1gb to 2gb
- reduce resync parallelism from 2 to 1 (only one repo CAR in memory at a time)
- reduce firehose parallelism from 10 to 5
- reduce outbox capacity from 100k to 10k (we don't need large buffers)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz b362615c 7d6d7a6f

+4 -2
+4 -2
tap/fly.toml
··· 11 11 TAP_SIGNAL_COLLECTION = 'pub.leaflet.document' 12 12 TAP_COLLECTION_FILTERS = 'pub.leaflet.document,pub.leaflet.publication,site.standard.document,site.standard.publication' 13 13 TAP_LOG_LEVEL = 'info' 14 - TAP_RESYNC_PARALLELISM = '2' 14 + TAP_RESYNC_PARALLELISM = '1' 15 + TAP_FIREHOSE_PARALLELISM = '5' 16 + TAP_OUTBOX_CAPACITY = '10000' 15 17 TAP_IDENT_CACHE_SIZE = '10000' 16 18 TAP_CURSOR_SAVE_INTERVAL = '5s' 17 19 TAP_REPO_FETCH_TIMEOUT = '600s' ··· 24 26 min_machines_running = 1 25 27 26 28 [[vm]] 27 - memory = '1gb' 29 + memory = '2gb' 28 30 cpu_kind = 'shared' 29 31 cpus = 1 30 32