pub struct Decoder { /* private fields */ }
Expand description

JSON values to Arrow record batch decoder.

A Decoder decodes arbitrary streams of serde_json::Values and converts them to RecordBatches. To decode JSON formatted files, see Reader.

Examples

use arrow::json::reader::{Decoder, DecoderOptions, ValueIter, infer_json_schema};
use std::fs::File;
use std::io::{BufReader, Seek, SeekFrom};
use std::sync::Arc;

let mut reader =
    BufReader::new(File::open("test/data/mixed_arrays.json").unwrap());
let inferred_schema = infer_json_schema(&mut reader, None).unwrap();
let options = DecoderOptions::new()
    .with_batch_size(1024);
let decoder = Decoder::new(Arc::new(inferred_schema), options);

// seek back to start so that the original file is usable again
reader.seek(SeekFrom::Start(0)).unwrap();
let mut value_reader = ValueIter::new(&mut reader, None);
let batch = decoder.next_batch(&mut value_reader).unwrap().unwrap();
assert_eq!(4, batch.num_rows());
assert_eq!(4, batch.num_columns());

Implementations

Create a new JSON decoder from some value that implements an iterator over serde_json::Values (aka implements the Iterator<Item=Result<Value>> trait).

Returns the schema of the reader, useful for getting the schema without reading record batches

Read the next batch of serde_json::Value records from the interator into a RecordBatch.

Returns None if the input iterator is exhausted.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.