miller/pkg
John Kerl 5ede886106
Fix mid-stream error-loss race (flaky exit codes on transformer errors) (#2211)
When a transformer fails mid-stream (e.g. join -s with a malformed left
file), the error could be lost, yielding exit 0 with no stderr message:

- runSingleTransformerBatch forwarded the end-of-stream marker downstream
  before runSingleTransformer sent the error to
  dataProcessingErrorChannel, so the record-writer could finish and signal
  done-writing while the error was still unsent.
- Even with the error buffered, stream.Stream's select loop chooses among
  simultaneously-ready channels at random, and exiting on the done-writing
  signal dropped the buffered error.

Send the error before forwarding the end-of-stream marker (so it is
always buffered before the writer can finish), and drain the error
channels after the select loop exits.

Observed as a one-off Windows CI failure of
test/cases/verb-join/left-file-malformed-sorted, where the same case
passed on automatic rerun within the same job. Reproduced locally by
widening the deschedule window with a sleep between the end-of-stream
forward and the error send: 5/5 runs exited 0 with empty stderr; with
this fix, 200/200 runs exit 1 with the expected message even with
adversarial delays injected on both sides of the end-of-stream forward.

Follow-up to the os.Exit-removal refactor (plans/exit.md, #2204/#2205).

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-07-15 18:26:56 -04:00
..
auxents Remove os.Exit callsites below the entrypoint: phase 4 (plans/exit.md) (#2205) 2026-07-15 15:27:26 -04:00
bifs
cli plans/exit.md: record final status; defer phase 5; convert stragglers (#2207) 2026-07-15 16:05:53 -04:00
climain Remove os.Exit callsites below the entrypoint: phase 4 (plans/exit.md) (#2205) 2026-07-15 15:27:26 -04:00
colorizer
dkvpx
dsl plans/exit.md: record final status; defer phase 5; convert stragglers (#2207) 2026-07-15 16:05:53 -04:00
entrypoint Remove os.Exit callsites below the entrypoint: phase 4 (plans/exit.md) (#2205) 2026-07-15 15:27:26 -04:00
go-csv
input Fix recutils parser for empty-valued fields with "+"-continuation (#2203) 2026-07-15 14:55:33 -04:00
lib
mlrval
output Remove os.Exit callsites below the entrypoint: phase 3 (plans/exit.md) (#2204) 2026-07-15 15:07:09 -04:00
parsing
pbnjay-strptime
platform
runtime
scan
stream Fix mid-stream error-loss race (flaky exit codes on transformer errors) (#2211) 2026-07-15 18:26:56 -04:00
terminals Remove os.Exit callsites below the entrypoint: phase 4 (plans/exit.md) (#2205) 2026-07-15 15:27:26 -04:00
transformers Fix mid-stream error-loss race (flaky exit codes on transformer errors) (#2211) 2026-07-15 18:26:56 -04:00
types
version
README.md

Please see ../../README-dev.md for an overview; please see each subdirectory for details about it.