Sometimes it's desirable to just read a portion of a CSV. The best way to do that is to pass in a list of byte ranges to CSV read options that specify where in the CSV you want to read. These byte ranges don't necessarily have to be aligned on line break boundaries, the CSV reader should just read until the end of the line, and skip anything before the first line break in a byte range.
Based on discussion, the scope is going to be reduced here. The first implementation will support a single byte range that is already assumed to be aligned on byte boundaries.
Will not handle quotes/returns and other edge cases.
Reporter: Ziheng Wang / @marsupialtail
PRs and other links:
Note: This issue was originally created as ARROW-17313. Please see the migration documentation for further details.
Sometimes it's desirable to just read a portion of a CSV. The best way to do that is to pass in a list of byte ranges to CSV read options that specify where in the CSV you want to read. These byte ranges don't necessarily have to be aligned on line break boundaries, the CSV reader should just read until the end of the line, and skip anything before the first line break in a byte range.
Based on discussion, the scope is going to be reduced here. The first implementation will support a single byte range that is already assumed to be aligned on byte boundaries.
Will not handle quotes/returns and other edge cases.
Reporter: Ziheng Wang / @marsupialtail
PRs and other links:
Note: This issue was originally created as ARROW-17313. Please see the migration documentation for further details.