What is Chunked Transfer?
Chunked transfer encoding is an HTTP/1.1 mechanism that allows a server to send a response in a series of discrete blocks, or "chunks," without knowing the total payload size upfront. For data pipelines, it's a double-edged sword: it enables efficient streaming of massive JSONL datasets without memory bloat, but it's also a common vector for anti-bot tarpits designed to bleed your scraper's connection pool dry.