GET /xrpc/app.bsky.actor.searchActorsTypeahead typeahead.waow.tech
16
fork

Configure Feed

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

reduce MAX_BATCH from 500 to 100

500 upserts with FTS5 triggers = ~1500 write ops per batch, which
trips D1's write rate limit (error 1101). 100 is well within limits.

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

+1 -1
+1 -1
ingester/src/main.zig
··· 7 7 8 8 const log = std.log.scoped(.ingester); 9 9 10 - const MAX_BATCH: usize = 500; 10 + const MAX_BATCH: usize = 100; 11 11 12 12 const Config = struct { 13 13 worker_url: []const u8,