Convert CSV files to Apache Arrow. You may also be interested in json2arrow, csv2parquet, or json2parquet.
You can get the latest releases from https://github.com/domoritz/csv2arrow/releases/.
cargo install csv2arrow
```
USAGE:
csv2arrow [OPTIONS]
ARGS:
OPTIONS:
-d, --delimiter
-h, --header <HEADER>
Set whether the CSV file has headers
--help
Print help information
-m, --max-read-records <MAX_READ_RECORDS>
The number of records to infer the schema from. All rows if not present. Setting
max-read-records to zero will stop schema inference and all columns will be string typed
-n, --dry
Only print the schema
-p, --print-schema
Print the schema to stderr
-s, --schema-file <SCHEMA_FILE>
File with Arrow schema in JSON format
-V, --version
Print version information
```
The --schema-file option uses the same file format as --dry and --print-schema.