You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Events are silently dropped when the channel buffer is full. For an AppView indexer, this means data loss — records that should be indexed are permanently missed.
Fix
Add backpressure: either block (risking WebSocket disconnect), use a growing buffer with limits, or implement a replay mechanism from cursor.
Review Finding: 3d — MEDIUM
Events are silently dropped when the channel buffer is full. For an AppView indexer, this means data loss — records that should be indexed are permanently missed.
Fix
Add backpressure: either block (risking WebSocket disconnect), use a growing buffer with limits, or implement a replay mechanism from cursor.
Files
internal/jetstream/client.go(line 166)From codebase review §3d