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: increase TAP memory to prevent OOM kills

TAP was getting OOM killed while parsing large repo CARs (20-30MB)
during resync. Increased memory from 512MB to 1GB and reduced
parallelism from 5 to 2 workers to prevent memory exhaustion.

This fixes the TAP->backend connection instability where connections
would drop every ~40-60s due to TAP crashing.

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

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

zzstoatzz 91b89495 c865eef6

+2 -2
+2 -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 = '5' 14 + TAP_RESYNC_PARALLELISM = '2' 15 15 TAP_IDENT_CACHE_SIZE = '10000' 16 16 TAP_CURSOR_SAVE_INTERVAL = '5s' 17 17 TAP_REPO_FETCH_TIMEOUT = '600s' ··· 24 24 min_machines_running = 1 25 25 26 26 [[vm]] 27 - memory = '512mb' 27 + memory = '1gb' 28 28 cpu_kind = 'shared' 29 29 cpus = 1 30 30