Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Rjoin
rjoin is a new command line utility for joining records of two files on common fields.
Dual-licensed under MIT or unlicense
Documentation
Installation
The binary name for rjoin is rj
.
# requires nightly channel
)
(don't forget to add $HOME/.cargo/bin
to your path).
Why should you use rjoin
?
- it can perform the join on multiple fields
- it has higher flexibilty on specifying the field separators and record terminators compared to GNU join
- it has (subjectively) cleaner CLI.
Why you should not use rjoin
?
- you need a specific output format. GNU join is more flexible on this, but it can be mitigated by piping the output to
awk
. - you need a case insensitive join. This can be mitigated by preprocessing data with
tr
utility. - you don't have an AVX2 capable CPU.
Quick Example
Let's suppose we have the following data:
To get the lines with the common key:
Some comments:
- by default, the first field is the key. If you wish to use another field, you can specify it using
--key/-k
option (even per file).rj
supports multiple fields as the key, but the number of key fields in both files must be equal. - by default, only the lines with the common key are printed. If you wish to print also unmached lines from the left or right file, use
any combination of these:
--show-left/-l
,--show-right/-r
or--show-both/-b
. Note however, if you use any of these options, the default behavior is reset (e.g. if you want to see the unmatched lines in the left file along with the matched lines, use-lb
. With-l
you will not see the matched lines.) - there are multiple lines with the same key in both files, resulting in Cartesian product.
To get the lines with the unmatched key in both files:
Check the tutorial for the detailed walkthrough.
Contributing
Any kind of contribution (e.g. comment, suggestion, question, bug report and pull request) is welcome.
Why Rust?
Because C eats a bloody lot of mental resources only to avoid shooting my leg, or worse.
Acknowledgments
The CSV parser used in Rjoin is based on the work of Y. Li, N. R. Katsipoulakis, B. Chandramouli, J. Goldstein, and D. Kossmann. Mison: a fast JSON parser for data analytics. In VLDB, 2017.
The SIMD part was shamelessly copied from pikkr
And finally a big thanks to BurntSushi for his excellent work.