GitXplorerGitXplorer
c

json2bin

public
2 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
2ee58ad79cb814d182cad8fa536de7af79ee7498

Update README.md

ccahya-wirawan committed 5 months ago
Unverified
1a73cc1077d7a633021ea192561e3404d895a00e

Update README.md

ccahya-wirawan committed 5 months ago
Unverified
a30ae389ff0bb9feab2a897159982e9f984e33be

added pic

ccahya-wirawan committed 5 months ago
Unverified
bc2121aedcf5d3ca884921a570e68badaa35771e

cleanup

ccahya-wirawan committed 5 months ago
Unverified
e5bd44a87b9283c634f450c04f9c15c7baba16dd

add verbosity

ccahya-wirawan committed 5 months ago
Unverified
a79d1abd086561c50ff1b20efc9093001c240ebc

Revert "debug the performance of each thread"

ccahya-wirawan committed 5 months ago

README

The README file for this repository.

Json2bin

Crates.io Version Crates.io Downloads License: Apache 2.0

A fast multithreading Jsonl converter to RWKV binidx files written in Rust.

performance-multithreading

Installation

$ cargo install json2bin

Usage

$ json2bin -h
Json converter to RWKV binidx file format
Usage: json2bin [OPTIONS] --input <INPUT>

Options:
  -i, --input <INPUT>            Jsonlines file to read
  -o, --output-dir <OUTPUT_DIR>  Output directory for binidx files [default: -]
  -t, --thread <THREAD>          Number of threads [default: 8]
  -v, --verbose                  Verbosity
  -h, --help                     Print help
  -V, --version                  Print version

Following command will convert the jsonl file src/sample.jsonl into src/sample.bin and src/sample.idx files.

$ json2bin -i src/sample.jsonl

The output directory can be set with the argument "--output-dir <OUTPUT_DIR>" or "-o <OUTPUT_DIR>"

$ json2bin -i src/sample.jsonl -o output

The default threads number is 8, it can be changed with the argument "--thread" or "-t"

$ json2bin -i src/sample.jsonl -t 4

Performance comparison

We converted a 19GB English Wikipedia (20231101.en) in jsonl format to binidx format in M2 Apple machine. The Rust json2bin run with 7 threads, and it was 70 times faster than the Python json2binidx:

  • The Python json2binidx: 1:01:45 or 5.13MB/s
  • This Rust json2bin: 52.64s or 360.86MB/s