RowChunking splits CSV files into one chunk per row.
CSV row chunking is a method of splitting CSV files into one chunk per row, rather than by character count. Use RowChunking to preserve the integrity of individual records in structured data.
Parameter
Type
Default
Description
skip_header
bool
False
Skip the first row before chunking. Row numbering in chunk metadata still starts from the original file's row positions.
clean_rows
bool
True
Normalize internal whitespace in each row. When False, rows are only stripped of leading and trailing whitespace.