Releases: dathere/qsv
0.125.0
In this release, we focused on the ποΈ need for even more speed ποΈ .
This was done primarily by tweaking several supporting qsv crates. qsv-docopt
now parses command-line arguments slightly faster. qsv-stats
, the crate behind commands like stats
, schema
, tojsonl
, and frequency
, has been further optimized for speed. qsv-dateparser
has been updated to support new timezone handling options in datefmt
. qsv-sniffer
also got a speed boost.
Per the benchmark suite, stats
is 25% faster (1.563 secs vs 2.067 secs) when computing the 13 "streaming" stats and 14% faster when computing --everything
(17 columns of addl stats - 3.149 secs vs 3.656 secs) for the 1M row, 41 column, 520mb sample of NYC's 311 data.
The count
command has been refactored to utilize Polars' SQLContext, which leverages LazyFrames evaluation to automagically count even very large files in just a few seconds. Previously, count
was already using Polars, but it mistakenly fell back to a slower counting mode. Now, it consistently delivers fast performance, even without an index. On the same benchmark suite, it takes 0.052 secs vs 0.503 seconds - almost 10x faster!
As count
is not just a top-level command, but also a widely used helper used by several qsv commands, this gives the entire suite a nice performance boost.
Continuing on the performance front, the excel
command now has a new short --metadata
mode, allowing users to just get a "shorter" version of the metadata report that only list the workbook's top level metadata (sheet index, sheet name, sheet type, visibility) instead of the full metadata report (which also has info like num rows, column metadata, etc.). On the benchmark suite, the short metadata report takes all of 0.005 secs vs 11.237 secs for the 1M row xlsx version of the same NYC 311 data - more than 3 orders of magnitude faster! (it may actually be faster since 0.005 secs is at the limits of what hyperfine can measure)
The datefmt
command also got some major enhancements with new timezone handling and timestamp parsing options, though at the cost of a small 15% performance penalty.
Lastly, we are excited to announce that qsv will be featured at the CSV,Conf,V8 conference in Puebla, Mexico on May 28-29. I'll be presenting a talk titled "qsv: A Blazing Fast CSV Data-Wrangling Toolkit". Hope to see you there!.
Added
excel
: added short mode to--metadata
option #1699datefmt
: addedts-resolution
option to specify resolution to use when parsing unix timestamps #1704datefmt
: added timezone handling options #1706 #1707 #1642
Changed
count
: refactored to use Polars SQLContext 43a236fstats
: refactored stats_path helper function 174c30eapply
,applydp
,datefmt
,excel
,geocode
,py
,validate
: use std::mem::take to avoid clone 1fd187f 8402d3a 8496157excel
: optimized workbook opening operation 67f662e- build(deps): bump flexi_logger from 0.27.4 to 0.28.0 by @dependabot in #1673
- build(deps): bump polars from 0.38.2 to 0.38.3 by @dependabot in #1674
- build(deps): bump uuid from 1.7.0 to 1.8.0 by @dependabot in #1675
- build(deps): bump hashbrown from 0.14.3 to 0.14.4 by @dependabot in #1680
- build(deps): bump reqwest from 0.11.26 to 0.11.27 by @dependabot in #1679
- build(deps): bump bytes from 1.5.0 to 1.6.0 by @dependabot in #1685
- build(deps): bump regex from 1.10.3 to 1.10.4 by @dependabot in #1686
- build(deps): bump indexmap from 2.2.5 to 2.2.6 by @dependabot in #1687
- build(deps): bump rayon from 1.9.0 to 1.10.0 by @dependabot in #1688
- build(deps): bump qsv_docopt from 1.6.0 to 1.7.0 by @dependabot in #1691
- build(deps): bump reqwest from 0.12.1 to 0.12.2 by @dependabot in #1693
- build(deps): bump serde_json from 1.0.114 to 1.0.115 by @dependabot in #1694
- build(deps): bump itoa from 1.0.10 to 1.0.11 by @dependabot in #1695
- build(deps): bump actions/setup-python from 5.0.0 to 5.1.0 by @dependabot in #1700
- build(deps): bump rust_decimal from 1.34.3 to 1.35.0 by @dependabot in #1701
- build(deps): bump chrono from 0.4.35 to 0.4.37 by @dependabot in #1702
- build(deps): bump tokio from 1.36.0 to 1.37.0 by @dependabot in #1703
- build(deps): bump qsv-sniffer from 0.10.2 to 0.10.3 by @dependabot in #1708
- build(deps): bump titlecase from 2.2.1 to 3.0.0 by @dependabot in #1709
- build(deps): bump qsv-stats from 0.13.0 to 0.14.0 by @dependabot in #1710
- applied select clippy recommendations
- updated several indirect dependencies
- added several benchmarks for new/changed commands
- bumped MSRV to 1.77.1
- use
#[cfg(debug_assertions)]
conditional compilation to avoid compiling debug code in release mode - use patched forks of
jsonschema
,cached
,self_update
andlocalzone
crates to avoid old dependencies
which was causing dependency bloat
Fixed
count
: fixed polars_count_input helper, as it was always falling back to "slow" counting mode 3484c89
Full Changelog: 0.124.1...0.125.0
0.124.1
Datapusher+ "Speed of Insight" Release! πππ
This release is all about speed, speed, speed! We've made qsv even faster by leveraging Polars' multithreaded, mem-mapped CSV reader to get near-instant row counts of large CSV files, and near instant SQL queries and aggregations with Datapusher+ - automagically inferring metadata and giving you quick insights into your data in seconds!
We're demoing our qsv-powered Datapusher+ at the March 2024 installment of CKAN Montly Live on March 20, 2024, 13:00-14:00 UTC. Join us!
Beyond pushing data reliably at speed into your CKAN Datastore (it pushes real good! π), DP+ does some extended analysis, processing and enrichment of the data so it can be readily Used.
Both fetch
and fetchpost
commands now also have a --disk-cache
option and are fully synched - forming the foundation for high-speed data enrichment from Web Services - including datHere's forthcoming, fully-integrated Data Enrichment Service.
ππ½ Hi-ho Quicksilver, away! ππ½
Added
count
: automatically use Polars multithreaded, mem-mapped CSV reader whenpolars
feature is enabled to get near-instant row counts of large CSV files even without an index #1656qsvdp
: added polars support to Datapusher+-optimized binary variant, so we can do near instant SQL queries and aggregations during DP+ processing #1664fetchpost
: added--disk-cache
options and synced usage options withfetch
#1671- extended
.infile-list
to skip empty and commented lines, and to validate file paths
20a45c8 and
2650930
Changed
sqlp
: automatically disableread_csv()
fast path optimization when a custom delimiter is specified #1648- refactored util::count_rows() helper to also use polars if available 1e09e17 and 8d321fe
- publish: updated Windows MSI publish GH Action workflow to use Wix 3.14 from 3.11 75894ef
- deps: bump polars from 0.38.1 to 0.38.2 5faf90e
- deps: update Luau from 0.614 to 0.616 eb197fe and 52331da
- build(deps): bump sysinfo from 0.30.6 to 0.30.7 by @dependabot in #1650
- build(deps): bump chrono from 0.4.34 to 0.4.35 by @dependabot in #1651
- build(deps): bump strum from 0.26.1 to 0.26.2 by @dependabot in #1658
- build(deps): bump qsv-stats from 0.12.0 to 0.13.0 by @dependabot in #1663
- build(deps): bump anyhow from 1.0.80 to 1.0.81 by @dependabot in #1662
- build(deps): bump reqwest from 0.11.25 to 0.11.26 by @dependabot in #1667
- applied select clippy recommendations
- updated several indirect dependencies
- added several benchmarks for new/changed commands
Fixed
dedup
: fixed #1665 dedup not handling numeric values properly by adding a --numeric option #1666joinp
: reenable join validation tests now that Polars 0.38.2 join validation is working again 5faf90e and fcfc75bcount
: broken in unreleased 0.124.0. Polars-powered count require a "clean" CSV file as it infers the schema based on the first 1000 rows of a CSV. This will sometimes result in an invalid "error" (e.g. it infers a column is a number column, when its not). 0.124.1 fixes this by adding a fallback to the "regular" CSV reader if a Polars error occurs a2c0869
Removed
gender_guesser
0.2.0 has been released. Remove patch.crates-io entry
97873a5
Full Changelog: 0.123.0...0.124.1
0.123.0
OPEN DATA DAY 2024 Release! πππ
In celebration of Open Data Day, we're releasing qsv 0.123.0 - the biggest release ever with 330+ commits! qsv 0.123.0 continues to focus on performance, stability and reliability as we continue setting the stage for qsv's big brother - qsv pro.
We've been baking qsv pro for a while now, and it's almost ready for release. qsv pro is a cross-platform Desktop Data Wrangling tool marrying an Excel-like UI with the power of qsv, backed by cloud-based data cleaning, enrichment and enhancement service that's easy to use for casual Excel users and Data Publishers, yet powerful enough for data scientists and data engineers.
Stay tuned!
Highlights:
sqlp
now has automaticread_csv()
fast path optimization, often making optimized queries run dramatically faster - e.g what took 6.09 seconds for a non-trivial SQL aggregation on an 18 column, 657mb CSV with 7.43 million rows now takes just 0.14 seconds with the optimization - π 43.5x FASTER π ! 1
# with fast path optimization turned off
/usr/bin/time qsv sqlp taxi.csv --no-optimizations "select VendorID,sum(total_amount) from taxi group by VendorID order by VendorID"
VendorID,total_amount
1,52377417.52985942
2,89959869.13054822
4,600584.610000027
(3, 2)
6.09 real 6.82 user 0.16 sys
# with fast path optimization, fully exploiting Polars' multithreaded, mem-mapped CSV reader!
/usr/bin/time qsv sqlp taxi.csv "select VendorID,sum(total_amount) from taxi group by VendorID order by VendorID"
VendorID,total_amount
1,52377417.52985942
2,89959869.13054822
4,600584.610000027
(3, 2)
0.14 real 1.09 user 0.09 sys
# in contrast, csvq takes 72.46 seconds - 517.57x slower
/usr/bin/time csvq "select VendorID,sum(total_amount) from taxi group by VendorID order by VendorID"
+----------+---------------------+
| VendorID | SUM(total_amount) |
+----------+---------------------+
| 1 | 52377417.529256366 |
| 2 | 89959869.1264675 |
| 4 | 600584.6099999828 |
+----------+---------------------+
72.46 real 65.15 user 75.17 sys
"Traditional" SQL engines
qsv and csvq both operate on "bare" CSVs. For comparison, let's contrast qsv's performance against "traditional" SQL engines
that require setup and import (aka ETL). Not counting setup and import time (which alone, takes several minutes), we get:
sqlite3.43.2 takes 2.910 seconds - 20.79x slower
sqlite> .timer on
sqlite> select VendorID,sum(total_amount) from taxi group by VendorID order by VendorID;
1,52377417.53
2,89959869.13
4,600584.61
Run Time: real 2.910 user 2.569494 sys 0.272972
PostgreSQL 15.6 using PgAdmin 4 v6.12 takes 18.527 seconds - 132.34x slower
even with an index, qsv sqlp is still 5.96x faster
sqlp
now supports JSONL output format and adds compression support for Avro and Arrow output formats.fetch
now has a--disk-cache
option, so you can cache web service responses to disk, complete with cache control and expiry handling!jsonl
is now multithreaded with additional--batch
and--job
options.split
now has three modes: split by record count, split by number of chunks and split by file size.datefmt
is a new top-level command for date formatting. We extracted it fromapply
to make it easier to use, and to set the stage for expanded date and timezone handling.enum
now has a--start
option.excel
now has a--keep-zero-time
option and now has improved datetime/duration parsing/handling with upgrade of calamine from 0.23 to 0.24.tojsonl
now has--trim
and--no-boolean
options and eliminated false positive boolean inferences.
Added
apply
: addgender_guess
operation #1569datefmt
: new top-level command for date formatting. #1638enum
: add--start
option #1631excel
: added--keep-zero-time
option; improved datetime/duration parsing/handling with upgrade of calamine from 0.23 to 0.24 #1595fetch
: add--disk-cache
option #1621jsonl
: major performance refactor! Now multithreaded with addl--batch
and--job
options #1553sniff
: added addl mimetype/file formats detected by bumpingfile-format
from 0.23 to 0.24 #1589split
: add<outdir>
error handling and add usage text examples #1585split
: added--chunks
option #1587split
: add--kb-size
option #1613sqlp
: added JSONL output format and compression support for AVRO and Arrow output formats in #1635tojsonl
: add--trim
option #1554- Add QSV_DOTENV_PATH env var #1562
- Add license scan report and status by @fossabot in #1550
- Added several benchmarks for new/changed commands
Changed
luau
: bumped Luau from 0.606 to 0.614freq
: major performance refactor - 1a3a4b4split
: migrate to rayon from threadpool #1555split
: refactored to actually create chunks <= desired--kb-size
, obviating need for hacky--sep-factor
option #1615tojsonl
: improved true/false boolean inferencing false positive handling #1641tojsonl
: fine-tune boolean inferencing #1643schema
: use parallel sort when sorting enums for fields 523c60a- Use array for rustflags to avoid conflicts with user flags by @clarfonthey in #1548
- Make it easier and more consistent to package for distros by @alerque in #1549
- Replace
simple_home_dir
withsimple_expand_tilde
crate #1578 - build(deps): bump rayon from 1.8.0 to 1.8.1 by @dependabot in #1547
- build(deps): bump rayon from 1.8.1 to 1.9.0 by @dependabot in #1623
- build(deps): bump uuid from 1.6.1 to 1.7.0 by @dependabot in #1551
- build(deps): bump jql-runner from 7.1.2 to 7.1.3 by @dependabot in #1552
- build(deps): bump jql-runner from 7.1.3 to 7.1.5 by @dependabot in #1602
- build(deps): bump jql-runner from 7.1.5 to 7.1.6 by @dependabot in #1637
- build(deps): bump flexi_logger from 0.27.3 to 0.27.4 by @dependabot in #1556
- build(deps): bump regex from 1.10.2 to 1.10.3 by @dependabot in #1557
- build(deps): bump cached from 0.47.0 to 0.48.0 by @dependabot in #1558
- build(deps): bump cached from 0.48.0 to 0.48.1 by @dependabot in #1560
- build(deps): bump cached from 0.48.1 to 0.49.2 by @dependabot in #1618
- build(deps): bump chrono from 0.4.31 to 0.4.32 by @dependabot in #1559
- build(deps): bump chrono from 0.4.32 to 0.4.33 by @dependabot in #1566
- build(deps): bump mlua from 0.9.4 to 0.9.5 by @dependabot in #1565
- build(deps): bump mlua from 0.9.5 to 0.9.6 by @dependabot in #1632
- build(deps): bump serde from 1.0.195 to 1.0.196 by @dependabot in #1568
- build(deps): bump serde from 1.0.196 to 1.0.197 by @dependabot in #1612
- build(deps): bump serde_json from 1.0.111 to 1.0.112 by @dependabot in #1567
- build(deps): bump serde_json from 1.0.112 to 1.0.113 by @dependabot in #1576
- build(deps): bump serde_json from 1.0.113 to 1.0.114 by @dependabot in #1610
- bump Polars from 0.36 to 0.37 #1570
- build(deps): bump polars from 0.37.0 to 0.38.0 by @dependabot in #1629
- build(deps): bump polars from 0.38.0 to 0.38.1 by @dependabot in #1634
- build(deps): bump strum from 0.25.0 to 0.26.1 by @dependabot in #1572
- build(deps): bump indexmap from 2.1.0 to 2.2.1 by @dependabot in https://g...
-
measurements taken on an Apple Mac Mini 2023 model with an M2 Pro chip with 12 CPU cores & 32GB of RAM, running macOS Sonoma 14.4 β©
0.122.0
π REQUEST FOR USE CASES: π
Please help define the future of qsv.
Add what you're currently using qsv for here - #1529
Not only does it help us catalog what use cases we should optimize for, posters will get higher priority access to the qsv pro preview.
Highlights:
qsvpy
is now available in the prebuilt binaries for select platforms! It's a new qsv binary variant with the python feature, enabling thepy
command. Three subvariants are available - qsvpy310, qsvpy311 and qsvpy312, corresponding to Python 3.10, 3.11 and 3.12 respectively.- Removed
generate
command asgenerate
's main dependency is unmaintained and has old dependencies.generate
was also not used much, as the test data it generated was not well suited for training models and it was too slow so we decided to remove it even before thesynthesize
(#235) command is ready. reverse
now has index support and can work in "streaming" mode and handle larger than memory CSV files.sort
andsample
: users can now choose from three Random Number Generator (RNG) algorithms with the--rng
option - standard, faster & cryptosecure.pseudo
now has--start
,--increment
&--formatstr
options.fmt
now has a--no-final-newline
option to suppress the final newline for better interoperability with other tools, specifically Excel. It also treats "T" as special value for tab character for the--out-delimiter
option.
Added
reverse
: now has index support and can work in "streaming" mode #1531sort
: added--rng <kind>
for different kinds of RNGs - standard, faster & cryptosecure #1535sample
: added--rng <kind>
option (standard, faster & cryptosecure) #1532pseudo
: major refactor. Added--start
,--increment
&--formatstr
options #1541fmt
: add--no-final-newline
option #1545- added additional benchmarks
- added additional test for new options. We now have ~1,300 tests!
Changed
fmt
:--out-delimiter
now treats "T" as special value for tab character #1546- build(deps): bump whatlang from 0.16.3 to 0.16.4 by @dependabot in #1525
- build(deps): bump serde_json from 1.0.110 to 1.0.111 by @dependabot in #1524
- build(deps): bump pyo3 from 0.20.1 to 0.20.2 by @dependabot in #1526
- build(deps): bump sysinfo from 0.30.3 to 0.30.4 by @dependabot in #1523
- build(deps): bump sysinfo from 0.30.4 to 0.30.5 by @dependabot in #1530
- build(deps): bump serial_test from 2.0.0 to 3.0.0 by @dependabot in #1534
- build(deps): bump mlua from 0.9.2 to 0.9.3 by @dependabot in #1540
- build(deps): bump mlua from 0.9.3 to 0.9.4 by @dependabot in #1542
- build(deps): bump simple-home-dir from 0.2.1 to 0.2.3 by @dependabot in #1544
- apply select clippy suggestions
- update several indirect dependencies
Removed
- removed
generate
command #1527 - removed
generate
feature from GitHub Action workflows #1528 sample
: removed--faster
RNG sampling option, replacing it with--rng
#1532
Full Changelog: 0.121.0...0.122.0
0.121.0
Two days ago, qsv 0.120.0 was released. Hours later, significant updates occurred in our ecosystem: Polars upgraded to version 0.36, Homebrew rolled out support for Rust 1.75.0, and our pull request for 'cached' was merged.
In light of these developments, we're releasing 0.121.0 out of cycle to leverage the new features, fixes and performance enhancements in these key components integral to qsv.
π REQUEST FOR USE CASES: π
Please help define the future of qsv.
Add what you're currently using qsv for here - #1529
Not only does it help us catalog what use cases we should optimize for, posters will get higher priority access to the qsv pro preview.
Added
sqlp
: with Polars 0.36, it now supports:- subqueries for JOIN and FROM (examples)
- REGEXP and RLIKE pattern matching (examples)
- common variant spelling STDEV in the SQL engine (in addition to STDDEV)
- and more under the hood improvements!
sqlp
: now supports writing to Apache Avro format 32f2fbbsqlp
: when writing to CSV--format
, if the--output
file has a TSV or TAB extension, it will automatically use the tab delimiter c97048c
Changed
- Bump polars from 0.35 to 0.36 #1521
- build(deps): bump serde from 1.0.193 to 1.0.194 by @dependabot in #1520
- build(deps): bump serde_json from 1.0.109 to 1.0.110 by @dependabot in #1519
- build(deps): bump semver from 1.0.20 to 1.0.21 by @dependabot in #1518
- build(deps): bump serde_stacker from 0.1.10 to 0.1.11 by @dependabot in #1517
- build(deps): bump cached from 0.46.1 to 0.47.0 by @dependabot in #1522
- bumped MSRV to 1.75.0
Fixed
cat
: fixed performance regression inrowskey
by moving unchanging variables out of hot loop - 96a40e9sqlp
: Polars 0.36 fixed the SQL SUBSTR() function
Full Changelog: 0.120.0...0.121.0
0.120.0
Happy New Year! πππ
Here's the first release of 2024, the biggest ever with 280+ commits! qsv 0.120.0 continues to focus on performance, stability and reliability as we continue setting the stage for qsv's big brother - qsv pro.
Apart from wrapping qsv with a User Interface, qsv pro also comes with a retinue of related cloud-based data cleaning, enrichment and enhancement services along with expanded metadata inferencing to make your Data Useful, Usable and Used!
qsv pro draws inspiration from OpenRefine, but reimagined without its file size and speed limitations, with qsv pro having the ability to process multi-gigabyte files in seconds.
It incorporates hard lessons we learned in the past 12 years deploying Data Portals and Data Pipelines to create a new Data/Metadata Wrangling and AI-assisted Data Publishing service that's easy to use for casual Excel users and Data Publishers, yet powerful enough for data scientists and data engineers.
But it's not quite ready for release yet, so stay tuned!
We're now taking signups for a preview release however, so if you're interested, please sign up here!
Excitingly, qsv was also mentioned on Hacker News in this thread Dec 23, 2023! As a result, we're now almost at 2,000+ stars on GitHub from 900 stars on Dec 22! πππ
Stay tuned for more advancements in 2024 β it's set to be a landmark year for qsv! π¦π¦π¦
Added
cat
: add rowskey --group options; increased perf of rowskey #1508validate
: add --trim and --quiet options #1452apply
&applydp
:operations regex_replace
now supports empty--replacement
with the "<NULL>" special value #1470 and #1471exclude
: also consider rows with empty fields #1498extsort
: add--tmp-dir
option ca1f461
Changed
validate
: Faster RFC4180 validation with byterecords and SIMD-accelerated utf8 validation #1440excel
: minor performance tweaks #1446apply
,applydp
,explode
,geocode
,pseudo
: consolidate redundant code and use onereplace_column_value
helper fn in util.rs #1456excel
: bump calamine from 0.22 to 0.23 #1473excel
&joinp
: use atoi_simd for faster &[u8] to int conversion 9521f3ecat
,describegpt
,headers
,sqlp
,to
,tojsonl
: refactor commands that accept multiple input files to use improved process_input helper #1496fetch
&fetchpost
: get_response refactor for maintainability and performance #1507luau
: replaced --no-colindex option with --colindex option. --col-index slows down processing and is not often used, so make it an option, not the default. a0c8568- make thousands crate optional with apply feature in #1453
- build(deps): bump uuid from 1.6.0 to 1.6.1 by @dependabot in #1430
- build(deps): bump serde from 1.0.192 to 1.0.193 by @dependabot in #1432
- build(deps): bump data-encoding from 2.4.0 to 2.5.0 by @dependabot in #1435
- build(deps): bump mlua from 0.9.1 to 0.9.2 by @dependabot in #1436
- build(deps): bump url from 2.4.1 to 2.5.0 by @dependabot in #1437
- build(deps): bump jql-runner from 7.0.6 to 7.0.7 by @dependabot in #1439
- build(deps): bump jql-runner from 7.0.7 to 7.1.0 by @dependabot in #1447
- build(deps): bump jql-runner from 7.1.0 to 7.1.1 by @dependabot in #1457
- build(deps): bump jql-runner from 7.1.1 to 7.1.2 by @dependabot in #1486
- build(deps): bump hashbrown from 0.14.2 to 0.14.3 by @dependabot in #1441
- build(deps): bump redis from 0.23.3 to 0.23.4 by @dependabot in #1442
- build(deps): bump redis from 0.23.3 to 0.24.0 by @dependabot in #1455
- build(deps): bump atoi_simd from 0.15.3 to 0.15.4 by @dependabot in #1444
- build(deps): bump atoi_simd from 0.15.4 to 0.15.5 by @dependabot in #1445
- build(deps): bump atoi_simd from 0.15.5 to 0.15.6 by @dependabot in #1512
- build(deps): bump actions/setup-python from 4.7.1 to 4.8.0 by @dependabot in #1454
- build(deps): bump actions/setup-python from 4.8.0 to 5.0.0 by @dependabot in #1459
- build(deps): bump actions/stale from 8 to 9 by @dependabot in #1463
- build(deps): bump itoa from 1.0.9 to 1.0.10 by @dependabot in #1464
- build(deps): bump tokio from 1.34.0 to 1.35.0 by @dependabot in #1465
- build(deps): bump tokio from 1.35.0 to 1.35.1 by @dependabot in #1483
- build(deps): bump ryu from 1.0.15 to 1.0.16 by @dependabot in #1466
- build(deps): bump file-format from 0.22.0 to 0.23.0 by @dependabot in #1468
- build(deps): bump github/codeql-action from 2 to 3 by @dependabot in #1476
- build(deps): bump geosuggest-utils from 0.5.1 to 0.5.2 by @dependabot in #1479
- build(deps): bump geosuggest-core from 0.5.1 to 0.5.2 by @dependabot in #1478
- build(deps): bump reqwest from 0.11.22 to 0.11.23 by @dependabot in #1480
- build(deps): bump calamine from 0.23.0 to 0.23.1 by @dependabot in #1481
- build(deps): bump qsv-sniffer from 0.10.0 to 0.10.1 by @dependabot in #1484
- build(deps): bump anyhow from 1.0.75 to 1.0.76 by @dependabot in #1485
- build(deps): bump futures from 0.3.29 to 0.3.30 by @dependabot in #1492
- build(deps): bump futures-util from 0.3.29 to 0.3.30 by @dependabot in #1491
- build(deps): bump crossbeam-channel from 0.5.9 to 0.5.10 by @dependabot in #1490
- build(deps): bump sysinfo from 0.29.10 to 0.29.11 by @dependabot in #1443
- Bump sysinfo from 0.29.11 to 0.30 #1489
- build(deps): bump sysinfo from 0.30.0 to 0.30.1 by @dependabot in #1495
- build(deps): bump sysinfo from 0.30.1 to 0.30.2 by @dependabot in #1504
- build(deps): bump sysinfo from 0.30.2 to 0.30.3 by @dependabot in #1509
- build(deps): bump tabwriter from 1.3.0 to 1.4.0 by @dependabot in #1500
- build(deps): bump tempfile from 3.8.1 to 3.9.0 by @dependabot in #1502
- build(deps): bump qsv_docopt from 1.4.0 to 1.5.0 by @dependabot in #1503
- build(deps): bump ahash from 0.8.6 to 0.8.7 by @dependabot in #1510
- build(deps): bump serde_json from 1.0.108 to 1.0.109 by @dependabot in #1511
- apply select clippy suggestions
- update several indirect dependencies
- pin Rust nightly to 2023-12-23
Fixed
apply
: Fix fordynfmt
andcalcconv
subcommands not working in release mode #1467luau
: fix check for excess mapped columns earlier. Otherwise, we'll get a CSV different field count error db15811
Removed
luau
: remove unneeded--jit
option as we precompile luau scripts to bytecode #1438
Full Changelog: 0.119.0...0.120.0
0.119.0
Highlights:
As we prepare for version 1.0, we're focusing on performance, stability and reliability as we set the stage for qsv pro - a cloud-backed UI version of qsv powered by Tauri, set to be released in 2024. Stay tuned!
diff
is now out of beta and blazingly fast! Give "the fastest CSV-diff in the world" a try π!joinp
now supports snappy automatic compression/decompression!sqlp
&joinp
now recognize theQSV_COMMENT_CHAR
environment variable, allowing you to skip comment lines in your input CSV files. They're also faster with the upgrade to Polars 0.35.4.sqlp
now supports subqueries, table aliases, and more!luau
: upgraded embedded Luau from 0.599 to 0.604; refactored code to reduce unneeded allocations and increase performance (more than doubling it!) as we prepare for extended recipe support.cat
is now even faster with the--flexible
option. If you know your CSV files are valid, you can use this option to skip CSV validation and makecat
run twice as fast!- qsv can now add a Byte Order Mark (BOM) header sequence to produce Excel-friendly CSVs with the
QSV_OUTPUT_BOM
environment variable. stats
,sort
,schema
&validate
are now faster with the use ofatoi_simd
to directly convert &[u8] to integer, skipping unnecessary utf8 validation, while also using SIMD CPU instructions for noticeably faster performance.
Added
diff
: added option/flag for headers in output by @janriemer in #1395diff
: added option/flag--delimiter-output
by @janriemer in #1402cat
: added--flexible
option to makecat rows
faster still #1408sqlp
&joinp
: both commands now recognize QSV_COMMENT_CHAR env var #1412joinp
: added snappy compression/decompression support #1413geocode
: now automatically decompresses snappy-compressed index files #1429- Add Byte Order Mark (BOM) output support #1424
- Added Codacy code quality badge 9959129
Changed
stats
,sort
,schema
&validate
: use atoi_simd to directly convert &[u8] to integer skipping unnecessary utf8 validation, while also using SIMD instructions for noticeably faster performancecat
: fastercat rows
#1407count
: optimize--width
option #1411luau
: upgrade embedded Luau from 0.603 to 0.604 #1426- use
ato_simd
for fast &[u8] to int conversion #1423 luau
: performance refactor 4cebd7c- build(deps): bump csv-diff from 0.1.0-beta.4 to 0.1.0 by @dependabot in #1394
- build(deps): bump serde_json from 1.0.107 to 1.0.108 by @dependabot in #1393
- build(deps): bump indexmap from 2.0.2 to 2.1.0 by @dependabot in #1397
- build(deps): bump jql-runner from 7.0.4 to 7.0.5 by @dependabot in #1399
- build(deps): bump jql-runner from 7.0.5 to 7.0.6 by @dependabot in #1400
- build(deps): bump file-format from 0.21.0 to 0.22.0 by @dependabot in #1401
- build(deps): bump cached from 0.46.0 to 0.46.1 by @dependabot in #1403
- build(deps): bump serde from 1.0.190 to 1.0.192 by @dependabot in #1404
- build(deps): bump tokio from 1.33.0 to 1.34.0 by @dependabot in #1409
- build(deps): bump flexi_logger from 0.27.2 to 0.27.3 by @dependabot in #1410
- build(deps): bump qsv-stats from 0.11.0 to 0.12.0 by @dependabot in #1415
- build(deps): bump itertools from 0.11.0 to 0.12.0 by @dependabot in #1418
- build(deps): bump rust_decimal from 1.33.0 to 1.33.1 by @dependabot in #1420
- build(deps): bump polars from 0.35.2 to 0.35.4 by @dependabot in #1425
- build(deps): bump uuid from 1.5.0 to 1.6.0 by @dependabot in #1428
- bump MSRV to 1.74.0
- apply select clippy suggestions
- update several indirect dependencies
- pin Rust nightly to 2023-11-18
Fixed
pseudo
: detect when more than one column is selected for pseudonymization 0b09372- dotenv (.env) tweaks/fixes #1427
- fix several typos 723443e
- fix several markdown lints
Removed
- remove fast-float as std float parse is now also using Eisel-Lemire algorithm #1414
Full Changelog: 0.118.0...0.119.0
NOTE:
To verify prebuilt binary zip archives - click here.
0.118.0
Highlights:
- With the Polars upgrade to 0.34.2, the
sqlp
andjoinp
enjoy expanded capabilities and a noticeable performance boost. π¦π - We now publish the 500, 1000, 5000 and 15000 Geonames cities indices for the
geocode
command, with users able to easily switch indices with theindex-load
subcommand. As the name implies, the 500 index contains cities with populations of 500 or more, the 1000 index contains cities with populations of 1000 or more, and so on.
The 15000 index (default) is the smallest (13mb) and fastest with ~26k cities. The 500 index is the largest(56mb) and slowest, with ~200k cities. The 5000 index is 21mb with ~53k cities. The 1000 index is 44mb with ~140k cities. π - The
geocode
command now returns US Census FIPS codes for US places with the%json
and%pretty-json
formats, returning both US State and US County FIPS codes, with upcoming support for Cities and other US Census geographies (School Districts, Voting Districts, Congressional Districts, etc.) π - Improved performance for
stats
,schema
andtojsonl
commands with the stats cache bincode refactor. This is especially noticeable for large CSV files asstats
previously created large bincode cache files by default.
The bincode cache allows other commands (currently, onlyschema
andtojsonl
) to skip recomputing statistics and deserialize the saved stats data structures directly into memory. Now, it will only create a bincode file if the--stats-binout
option is specified (typically, before using theschema
antojsonl
commands).stats
will still continue to create a stats CSV cache file by default, but it will be much smaller than the bincode file, and is universally applicable, unlike the bincode cache. π - self-update will now verify updates. This is done by verifying the zipsign signature of the release zip archive before applying it. This should make it harder for malicious actors to compromise the self-update process. Version 0.118.0 has the verification code, and future releases will use this new verification process.
Regardless, we will zipsign all zip archives starting with this release.
Users can manually verify the signatures by downloading the zipsign public key and running thezipsign
command line tool. See Verifying the Integrity of the Prebuilt Binaries Zip Archive for more info. π¦ - The
frequency
command now supports the--ignore-case
option for case-insensitive frequency counts. π¦π - The
schema
command can now compile case-insensitive enum constraints. π¦ - Improved performance for
apply
andapplydp
commands with faster compile-time perfect hash functions for operations lookups. π - Several minor performance improvements and bug fixes with
snappy
,sniff
&cat
commands. π
Added
frequency
: added--ignore-case
option #1386geocode
: added 500, 1000, 5000, 15000 Geonames cities convenience shortcuts toindex
subcommands bd9f4c3schema
: added--ignore-case
option when compiling enum constraints; replaced Hashset with faster AHashset a16a1casnappy
: addedbuf_size
parm to compress helper fn e0c0d1fsniff
added--just-mime
option #1372- added zipsign signature verification to self-update #1389
Changed
apply
&applydp
: replaced binary_search with faster compile-time perfect hash functions for operations lookups #1371stats
,schema
andtojsonl
: stats cache bincode refactor #1377luau
: replaced sanitise-file-name with more popular sanitize-filename crate 8927cb7cat
: minor optimization by preallocating with capacity c13c341sqlp
&joinp
: expanded speed/functionality with upgrade to Polars 0.34.2 #1385tojsonl
: improved boolean inferencing. Now correctly infers booleans, even if the enum domain range is more than 2, but has cardinality 2 case-insensitive 6345f2d- build(deps): bump strum_macros from 0.25.2 to 0.25.3 by @dependabot in #1368
- build(deps): bump regex from 1.10.1 to 1.10.2 by @dependabot in #1369
- build(deps): bump uuid from 1.4.1 to 1.5.0 by @dependabot in #1373
- build(deps): bump hashbrown from 0.14.1 to 0.14.2 by @dependabot in #1376
- build(deps): bump self_update from 0.38.0 to 0.39.0 by @dependabot in #1378
- build(deps): bump ahash from 0.8.5 to 0.8.6 by @dependabot in #1383
- build(deps): bump serde from 1.0.189 to 1.0.190 by @dependabot in #1388
- build(deps): bump futures from 0.3.28 to 0.3.29 by @dependabot in #1390
- build(deps): bump futures-util from 0.3.28 to 0.3.29 by @dependabot in #1391
- build(deps): bump tempfile from 3.8.0 to 3.8.1 by @dependabot in 4f6200c
- apply select clippy suggestions
- update several indirect dependencies
- pin Rust nightly to 2023-10-26
Fixed
dedup
: fixed --ignore-case not being honored during internal sort option #1387applydp
: fixed wrong usage text usingapply
and notapplydp
c47ba86geocode
: fixedindex-update
not honoring--timeout
parameter 3272a9egeocode
: fixedindex-load
to work properly with convenience shortcuts 5097326
Full Changelog: 0.117.0...0.118.0
0.117.0
Highlights:
geocode
: added Federal Information Processing Standards (FIPS) codes to results for US places, so we can derive GEOIDs. This paves the way to doing data enrichment lookups (starting with the US Census) in an upcoming release. π¦- Added Goal/Non-goals, explicitly codifying what qsv is and isn't, and what we're trying to achieve with the toolkit.
excel
: CSV output processing is now multi-threaded, making it a bit faster. The bottleneck is still the Excel/ODS library we're using (calamine), which is single-threaded. But there are active discussions underway to make it much faster in the future. π- Upgrading the MSRV to 1.73.0 has allowed us to use LLVM 17, which has resulted in a small performance boost. π
Added:
geocode
: added Federal Information Processing Standards (FIPS) codes to results for US places.- Added Goals/Non-goals to README.md
Changed
cat
: minor optimization 343bb66excel
: CSV output processing is now multi-threaded #1360geocode
: more efficient dynfmt ptocessing #1367frequency
: optimize allocations before hot loop 655bebcluau
: upgraded embedded Luau from 0.596 to 0.599deps
: bump calamine from 0.22.0 to 0.22.1 4c4ed7edocs
: reorganized README, moving FEATURES and INTERPRETERS to their own markdown files.- build(deps): bump byteorder from 1.4.3 to 1.5.0 by @dependabot in #1347
- build(deps): bump tokio from 1.32.0 to 1.33.0 by @dependabot in #1354
- build(deps): bump regex from 1.9.6 to 1.10.0 by @dependabot in #1356
- build(deps): bump semver from 1.0.19 to 1.0.20 by @dependabot in #1358
- build(deps): bump pyo3 from 0.19.2 to 0.20.0 by @dependabot in #1359
- build(deps): bump serde from 1.0.188 to 1.0.189 by @dependabot in #1361
- build(deps): bump flate2 from 1.0.27 to 1.0.28 by @dependabot in #1363
- build(deps): bump regex from 1.10.0 to 1.10.1 by @dependabot in #1366
deps
: update several indirect dependencies- pin Rust nightly to 2023-10-14
- bump MSRV to 1.73.0
Removed
excel
: removed--progressbar
option as Excel/ODS maximum sheet size is just too small (1,048,576 rows) to make it useful.
Fixed
Full Changelog: 0.116.0...0.117.0
0.116.0
Highlights: π π
- Benchmarks refinements galore with more benchmarks and more comprehensive benchmarking instructions. π
geocode
: The Geonames index's configuration metadata is now available with thegeocode index-check
subcommand. No need to maintain a separate metadata JSON file. This should make it even easier to maintain multiple Geonames index files with different configurations without having to worry if you're looking at the right metadata JSON file. πcat
:rowskey
subcommand is now 27% faster ππ½tojsonl
: parallelized with rayon, making it 33% faster! ππ½- smaller qsv binary size and faster compile times if the
to_parquet
feature is disabled. If you're good enough withsqlp
's ability to create a parquet file from a SQL query, qsv's binary size and compile time will be markedly smaller/faster. ππ½ - minor perf tweaks & optimizations -
count
andluau
commands ππ½
Added
geocode
: added Geonames index file metadata toindex-check
subcommandtojsonl
: parallelized with rayon #1338to
: addedto_parquet
feature. #1341benchmarks
: upgraded from 3.0.0 to 3.3.1- you can now specify a separate benchmarking binary as we dogfood qsv for the benchmarks and some features are required that may not be in the qsv binary variant being benchmarked
- added additional
count
benchmarks with--width
option - added additional
luau
benchmarks with single/multi filter options - added additional
search
benchmark with--unicode
option - show absolute path of qsv binaries used (both the one we're dogfooding and the one being benchmarked) and their version info before running the benchmarks proper
- ensured
schema
benchmark was not using the stats cache with the--force
option
Changed
cat
: use an empty byte_record var instead of repeatedly allocating a new one in a hot loop eddafd1count
: minor optimization bb113c0luau
: minor perf tweaks c71cd16 and f9c1e3c- (deps): bump Geosuggest from 0.4.5 to 5.1 #1333
- (deps): use patched version of calamine which has unreleased fixes since 0.22.0
- build(deps): bump flexi_logger from 0.27.0 to 0.27.2 by @dependabot in #1328
- build(deps): bump indexmap from 2.0.0 to 2.0.1 by @dependabot in #1329
- build(deps): bump hashbrown from 0.14.0 to 0.14.1 by @dependabot in #1334
- build(deps): bump file-format from 0.20.0 to 0.21.0 by @dependabot in #1335
- build(deps): bump indexmap from 2.0.1 to 2.0.2 by @dependabot in #1336
- build(deps): bump regex from 1.9.5 to 1.9.6 by @dependabot in #1337
- build(deps): bump jql-runner from 7.0.3 to 7.0.4 by @dependabot in #1340
- build(deps): bump csvs_convert from 0.8.7 to 0.8.8 by @dependabot in #1339
- build(deps): bump actions/setup-python from 4.7.0 to 4.7.1 by @dependabot in #1342
- build(deps): bump reqwest from 0.11.21 to 0.11.22 by @dependabot in #1343
- build(deps): bump csv from 1.2.2 to 1.3.0 by @dependabot in #1344
- build(deps): bump actix-governor from 0.4.1 to 0.5.0 by @dependabot in #1346
- applied select clippy suggestions
- update several indirect dependencies
- pin Rust nightly to 2023-10-04
Removed
geocode
: removed separate metadata JSON file for Geonames index files. The metadata is now embedded in the index file itself and can be viewed with theindex-check
command.- removed redundant setting from profile.release-samply in Cargo.toml 2a35be5
Fixed
geocode
: when producing JSON output with the now subcommands (suggestnow,
reversenow
,countryinfonow
), we now produce valid JSON. We previously generated JSON with escaped/extra quotes as it was formatted to be included in CSV files, which is required for thesuggest
,reverse
andcountryinfo
subcommands as they are designed to process CSVs with multiple rows, thus requiring escaped JSON. Thenow
commands are only meant for one result so there's no need to escape quote the JSON. #1345schema
: fixed--force
flag not being honored
Full Changelog: 0.115.0...0.116.0