qsv
has several features:
-
mimalloc
(default) - use the mimalloc allocator (see Memory Allocator for more info). -
jemallocator
- use the jemalloc allocator (see Memory Allocator for more info). -
apply
- enableapply
command. This swiss-army knife of CSV transformations is very powerful, but it has a lot of dependencies that increases both compile time and binary size. -
fetch
- enables thefetch
&fetchpost
commands. -
foreach
- enableforeach
command (not valid for Windows). -
geocode
- enablegeocode
command. -
luau
- enableluau
command. Embeds a Luau interpreter into qsv. Luau has type-checking, sandboxing, additional language operators, increased performance & other improvements over Lua. -
polars
- enables all Polars-powered commands (currently,joinp
andsqlp
). Note that Polars is a very powerful library, but it has a lot of dependencies that drastically increases both compile time and binary size. -
python
- enablepy
command. Note that qsv will look for the shared library for the Python version (Python 3.7 & above supported) it was compiled against & will abort on startup if the library is not found, even if you're NOT using thepy
command. Check Python section for more info. -
to
- enables theto
command except the parquet option. -
to_parquet
- enables theparquet
option of theto
command. This is a separate feature as it brings in theduckdb
dependency, which markedly increases binary size and compile time. Use thesqlp
command with the--format parquet
option instead if you don't need theto
command's other options and you don't need to convert to parquet a directory of CSVs. -
self_update
- enable self-update engine, checking GitHub for the latest release. Note that if you manually built qsv,self-update
will only check for new releases. It will NOT offer the choice to update itself to the prebuilt binaries published on GitHub. You need not worry that your manually built qsv will be overwritten by a self-update. -
feature_capable
- enable to buildqsv
binary variant which is feature-capable. -
all_features
- enable to buildqsv
binary variant with all features enabled (apply,fetch,foreach,geocode,luau,polars,python,to,to_parquet,self_update). -
lite
- enable to buildqsvlite
binary variant with all features disabled. -
datapusher_plus
- enable to buildqsvdp
binary variant - the DataPusher+ optimized qsv binary. -
nightly
- enable to turn on nightly/unstable features in therand
,regex
,hashbrown
&pyo3
crates when building with Rust nightly/unstable. -
distrib_features
- enable to buildqsv
binary variant with all features enabled exceptself_update
. This should make it easier for distro packagers to buildqsv
with all features enabled exceptself_update
as qsv removes and adds features over time.
ℹ️ NOTE:
qsvlite
, as the name implies, always has non-default features disabled.qsv
can be built with any combination of the above features using the cargo--features
&--no-default-features
flags. The prebuiltqsv
binaries has all applicable features valid for the target platform.