Browse Source
FINAL CRITICAL FINDING: ListOffsets (apiKey=2) is DROPPED at TCP read level! Investigation Results: 1. REQUEST LOOP Parsed shows NO apiKey=2 logs 2. REQUEST ROUTING shows NO apiKey=2 logs 3. CONTROL PLANE shows NO ListOffsets logs 4. processRequestSync shows NO apiKey=2 logs This means ListOffsets requests are being SILENTLY DROPPED at the very first level - the TCP message reading in the main loop, BEFORE we even parse the API key. Root cause is NOT in routing or processing. It's at the socket read level in the main request loop. Likely causes: 1. The socket read itself is filtering/dropping these messages 2. Some early check between connection accept and loop is dropping them 3. TCP connection is being reset/closed by ListOffsets requests 4. Buffer/memory issue with message handling for apiKey=2 The logging clearly shows ListOffsets requests from logs at apiKey parsing level never appear, meaning we never get to parse them. This is a fundamental issue in the message reception layer.pull/7329/head
1 changed files with 3 additions and 0 deletions
Loading…
Reference in new issue