38 releases (major breaking)

new 54.2.0 Feb 16, 2025
54.0.0 Dec 23, 2024
53.4.0 Jan 18, 2025
53.3.0 Nov 20, 2024
27.0.0 Nov 14, 2022

#196 in Parser implementations

Download history 263082/week @ 2024-10-30 265441/week @ 2024-11-06 248025/week @ 2024-11-13 233676/week @ 2024-11-20 128981/week @ 2024-11-27 209481/week @ 2024-12-04 240751/week @ 2024-12-11 167504/week @ 2024-12-18 85133/week @ 2024-12-25 187297/week @ 2025-01-01 279379/week @ 2025-01-08 233751/week @ 2025-01-15 243148/week @ 2025-01-22 237350/week @ 2025-01-29 271002/week @ 2025-02-05 278499/week @ 2025-02-12

1,070,029 downloads per month
Used in 49 crates (14 directly)

Apache-2.0

3MB
62K SLoC

Transfer data between the Arrow memory format and JSON line-delimited records.

See the module level documentation for the reader and writer for usage examples.

Binary Data

As per RFC7159 JSON cannot encode arbitrary binary data. A common approach to workaround this is to use a binary-to-text encoding scheme, such as base64, to encode the input data and then decode it on output.

#
// The data we want to write
let input = BinaryArray::from(vec![b"\xDE\x00\xFF".as_ref()]);

// Base64 encode it to a string
let encoded: StringArray = b64_encode(&BASE64_STANDARD, &input);

// Write the StringArray to JSON
let batch = RecordBatch::try_from_iter([("col", Arc::new(encoded) as _)]).unwrap();
let mut buf = Vec::with_capacity(1024);
let mut writer = LineDelimitedWriter::new(&mut buf);
writer.write(&batch).unwrap();
writer.finish().unwrap();

// Read the JSON data
let cursor = Cursor::new(buf);
let mut reader = ReaderBuilder::new(batch.schema()).build(cursor).unwrap();
let batch = reader.next().unwrap().unwrap();

// Reverse the base64 encoding
let col: BinaryArray = batch.column(0).as_string::<i32>().clone().into();
let output = b64_decode(&BASE64_STANDARD, &col).unwrap();

assert_eq!(input, output);

Dependencies

~7–13MB
~141K SLoC