JSON Tools RS
A high-performance Rust library for advanced JSON manipulation with SIMD-accelerated parsing, providing unified flattening and unflattening operations through a clean builder pattern API. Ships with Rust, Python, and JVM (Java/Spark) bindings.
Why JSON Tools RS?
JSON Tools RS is designed for developers who need to:
- Transform nested JSON into flat structures for databases, CSV exports, or analytics
- Clean and normalize JSON data from external APIs or user input
- Process large batches of JSON documents efficiently
- Maintain type safety with perfect roundtrip support (flatten โ unflatten โ original)
- Work with both Rust and Python using the same consistent API
Unlike simple JSON parsers, JSON Tools RS provides a complete toolkit for JSON transformation with production-ready performance and error handling.
Features
- ๐ Unified API: Single
JSONToolsentry point for flattening, unflattening, or pass-through transforms (.normal()) - ๐ง Builder Pattern: Fluent, chainable API for easy configuration and method chaining
- โก High Performance: SIMD-accelerated JSON parsing with FxHashMap, SmallVec stack allocation, and tiered caching
- ๐ Parallel Processing: Built-in Rayon-based parallelism (persistent work-stealing pool) for 3-5x speedup on batch operations and large nested structures
- ๐ฏ Complete Roundtrip: Flatten JSON and unflatten back to original structure with perfect fidelity
- ๐งน Comprehensive Filtering: Remove empty strings, nulls, empty objects, and empty arrays (works for both flatten and unflatten)
- ๐ Advanced Replacements: Key/value replacements, literal (exact substring match) by default, or regex by wrapping the pattern in
r'...' - ๐ก๏ธ Collision Handling: Intelligent
.handle_key_collision(true)to collect colliding values into arrays - ๐ Date Normalization: Automatic detection and normalization of ISO-8601 dates to UTC
- ๐ Automatic Type Conversion: Convert strings to numbers, booleans, and nulls with
.auto_convert_types(true) - ๐ฆ Batch Processing: Process single JSON or batches; Python also supports dicts and lists of dicts
- ๐ Python Bindings: Full Python support with perfect type preservation (input type = output type)
- ๐ DataFrame/Series Support: Native support for Pandas, Polars, PyArrow, and PySpark DataFrames and Series in Python
- โ JVM Bindings: Java/Spark UDFs (row and batched
mapPartitionstiers) for Databricks Jobs/notebooks on classic compute and other Spark workloads -- seejvm/README.md
Table of Contents
- Why JSON Tools RS?
- Features
- Quick Start
- Quick Reference
- Installation
- Architecture
- Performance
- Contributing
- License
- Changelog
Quick Start
Rust - Unified JSONTools API
The JSONTools struct provides a unified builder pattern API for all JSON manipulation operations. Simply call .flatten() or .unflatten() to set the operation mode, then chain configuration methods and call .execute().
Basic Flattening
use ;
let json = r#"{"user": {"name": "John", "profile": {"age": 30, "city": "NYC"}}}"#;
let result = new
.flatten
.execute?;
if let Single = result
// Output: {"user.name": "John", "user.profile.age": 30, "user.profile.city": "NYC"}
Advanced Flattening with Filtering
use ;
let json = r#"{"user": {"name": "John", "details": {"age": null, "city": ""}}}"#;
let result = new
.flatten
.separator
.lowercase_keys
.key_replacement
.value_replacement
.remove_empty_strings
.remove_nulls
.remove_empty_objects
.remove_empty_arrays
.execute?;
if let Single = result
// Output: {"user::name": "John"}
Automatic Type Conversion
Convert string values to numbers, booleans, dates, and null automatically for data cleaning and normalization.
use ;
let json = r#"{
"id": "123",
"price": "$1,234.56",
"discount": "15%",
"active": "yes",
"verified": "1",
"created": "2024-01-15T10:30:00+05:00",
"status": "N/A"
}"#;
let result = new
.flatten
.auto_convert_types
.execute?;
if let Single = result
// Output: {
// "id": 123,
// "price": 1234.56,
// "discount": 15.0,
// "active": true,
// "verified": 1,
// "created": "2024-01-15T05:30:00Z", // Normalized to UTC
// "status": null
// }
Python - Unified JSONTools API
The Python bindings provide the same unified JSONTools API with perfect type matching: input type equals output type.
Basic Usage
# Basic flattening - dict input โ dict output
=
# {'user.name': 'John', 'user.age': 30}
# Basic unflattening - dict input โ dict output
=
# {'user': {'name': 'John', 'age': 30}}
Advanced Configuration & Parallelism
# Configure tools with parallel processing settings
=
# Process a batch of data
=
=
DataFrame & Series Support
# Pandas DataFrame input โ Pandas DataFrame output
=
=
# <class 'pandas.core.frame.DataFrame'>
# Also works with Polars, PyArrow Tables, and PySpark DataFrames
# Series input โ Series output (Pandas, Polars, PyArrow)
JVM / Spark
JNI-based Java bindings, mirroring the same JSONTools builder, for use as Apache
Spark UDFs -- a simple row UDF and a higher-throughput batched mapPartitions
transform. Built for Databricks Jobs/notebooks on classic compute and other Spark
workloads (not usable inside a Databricks Lakeflow Declarative Pipeline --
Databricks doesn't permit JVM libraries on pipeline compute at all; use the Python
bindings above, wrapped in a pandas_udf, for that case instead).
;
;
try
See jvm/README.md for the Spark UDF API and
Setting Up on Databricks
for the full deployment walkthrough (both this and the pandas_udf path).
Quick Reference
Method Cheat Sheet
| Method | Description | Example |
|---|---|---|
.flatten() |
Set operation mode to flatten | JSONTools::new().flatten() |
.unflatten() |
Set operation mode to unflatten | JSONTools::new().unflatten() |
.normal() |
Set mode to pass-through (transform only) | JSONTools::new().normal() |
.separator(sep) |
Set key separator (default: ".") |
.separator("::") |
.lowercase_keys(bool) |
Convert keys to lowercase | .lowercase_keys(true) |
.remove_empty_strings(bool) |
Remove empty string values | .remove_empty_strings(true) |
.remove_nulls(bool) |
Remove null values | .remove_nulls(true) |
.remove_empty_objects(bool) |
Remove empty objects {} |
.remove_empty_objects(true) |
.remove_empty_arrays(bool) |
Remove empty arrays [] |
.remove_empty_arrays(true) |
.key_replacement(find, repl) |
Replace key patterns (literal, or regex via r'...') |
.key_replacement("r'user_'", "") |
.value_replacement(find, repl) |
Replace value patterns (literal, or regex via r'...') |
.value_replacement("@old.com", "@new.com") |
.handle_key_collision(bool) |
Collect colliding keys into arrays | .handle_key_collision(true) |
.auto_convert_types(bool) |
Convert types (nums, bools, dates) | .auto_convert_types(true) |
.parallel_threshold(n) |
Min batch size for parallelism | .parallel_threshold(500) |
.num_threads(n) |
Number of threads (default: CPU count) | .num_threads(Some(4)) |
.nested_parallel_threshold(n) |
Nested object parallelism size | .nested_parallel_threshold(50) |
.max_array_index(n) |
Max array index for unflatten (DoS protection) | .max_array_index(100_000) |
Automatic Type Conversion
When .auto_convert_types(true) is enabled, the library performs smart parsing on string values:
- Date & Time (ISO-8601):
- Detects date strings to avoid converting them to numbers (e.g., "2024-01-01").
- Normalizes datetimes to UTC.
- Supports offsets (
+05:00), Z suffix, and naive datetimes.
- Numbers:
- Basic:
"123"โ123,"45.67"โ45.67 - Separators:
"1,234.56"(US),"1.234,56"(EU),"1 234.56"(Space) - Currency:
"$123","โฌ99","ยฃ50","ยฅ1000","R$50" - Scientific:
"1e5"โ100000 - Percentages:
"50%"โ50.0,"12.5%"โ12.5 - Basis Points:
"50bps"โ0.005,"100 bp"โ0.01 - Suffixes:
"1K","2.5M","5B"(Thousand, Million, Billion)
- Booleans:
"true","false","yes","no","on","off","y","n"(case-insensitive).- Note:
"1"and"0"are treated as numbers, not booleans.
- Nulls:
"null","nil","none","N/A"(case-insensitive) โnull.
Installation
Rust
Python
JVM / Spark
No published artifact yet -- build from source (cargo build --release --features jvm && cd jvm && mvn package), or download the jar from a jvm-ci.yml CI run. See
jvm/README.md for details; a Maven Central release
(io.github.amaye15:json-tools-rs-spark) ships automatically on tagged releases.
Architecture
The codebase is organized into focused, single-responsibility modules:
src/
โโโ lib.rs Facade: mod declarations + pub use re-exports
โโโ json_parser.rs Conditional SIMD parser (sonic-rs on 64-bit, simd-json on 32-bit)
โโโ types.rs Core types: JsonInput, JsonOutput
โโโ error.rs Error types with codes E001-E008
โโโ config.rs Configuration structs and operation modes
โโโ cache.rs Tiered caching: regex, key deduplication, phf perfect hash
โโโ convert.rs Type conversion: numbers, dates, booleans, nulls (SIMD-optimized)
โโโ transform.rs Filtering, key/value replacements, collision handling
โโโ flatten.rs Flattening algorithm with Rayon parallelism
โโโ unflatten.rs Unflattening with SIMD separator detection
โโโ builder.rs Public JSONTools builder API and execute() entry point
โโโ python.rs Python bindings via PyO3
โโโ jvm.rs JVM bindings via JNI (Java/Spark UDFs, see jvm/)
โโโ tests.rs Unit tests
โโโ main.rs CLI examples
The processing pipeline:
- Parse -- SIMD-accelerated JSON parsing (
json_parser) - Flatten/Unflatten -- Recursive traversal with Arc<str> key dedup (
flatten/unflatten) - Transform -- Lowercase, replacements (cached regex), collision handling (
transform) - Filter -- Remove empty strings, nulls, empty objects/arrays (
transform) - Convert -- Type conversion with first-byte discriminators (
convert) - Serialize -- Output to JSON string or native Python types
Performance
Benchmark Results
| Benchmark | Time | Description |
|---|---|---|
| Deep nesting (100 levels) | 8.3 ยตs | Deeply nested JSON objects |
| Wide objects (1,000 keys) | ~337 ยตs | Flat objects with many keys |
| Large arrays (5,000 items) | ~2.11 ms | Arrays with many elements |
| Parallel batch (10,000 items) | ~2.61 ms | Batch processing with Rayon |
Measured on Apple Silicon. Results may vary by platform and data shape.
Optimization Techniques
JSON Tools RS uses several techniques to achieve high performance (~2,000+ ops/ms):
- SIMD-JSON: Hardware-accelerated parsing via sonic-rs (64-bit) / simd-json (32-bit).
- SIMD Byte Search: memchr/memmem for SIMD-accelerated string operations and pattern matching.
- FxHashMap: Faster hashing for string keys with rustc-hash.
- Tiered Caching: Three-level regex cache (compile-time phf table โ thread-local FxHashMap โ global
RwLock<FxHashMap>). - SmallVec & Cow: Stack allocation for depth stacks and number buffers; zero-copy string handling.
- Arc<str> Deduplication: Shared key storage to minimize allocations in wide/deep JSON.
- First-Byte Discriminators: Rapid rejection of non-convertible strings during type conversion.
- Parallelism: Rayon's persistent work-stealing thread pool for batch processing and large nested structures (avoids per-call OS thread spawn cost).
CLI Demo
The crate includes an educational demo binary that showcases library features:
This prints progressive examples covering basic flattening, unflattening, custom separators, filtering, replacements, collision handling, type conversion, and batch processing.
Contributing
See CONTRIBUTING.md for development setup, testing, benchmarking, and PR guidelines.
Changelog
v0.9.2 (Current)
(v0.9.1 was tagged a day earlier but only completed publishing to Maven Central --
a crates.io/PyPI release pipeline bug caused those two to fail before any upload.
Fixed and re-cut as v0.9.2 across all three registries; no code changes beyond the
release pipeline fix itself.)
- JVM (Java) bindings (BREAKING for
key_replacement/value_replacement, see below): new Spark UDF bindings (jvm/) with full feature parity, via a JNI shim over the same Rust core -- seejvm/README.md. key_replacement/value_replacementpattern syntax (BREAKING): patterns are now literal (exact substring match) by default; wrap inr'...'(e.g.r'^admin_') for regex. Previously every pattern was always compiled as regex.- Rayon parallelism: batch processing switched back from
std::thread::scope(per-call OS thread spawn) to Rayon's persistent work-stealing pool -- measurably faster for small-to-medium batches. has_escapescanner bug fix: escape sequences not adjacent to a quote (\n,\t,\r,\uXXXX) were previously invisible to the tape scanner, silently skippingauto_convert_types/replacements/lowercase_keysfor affected strings.- crates.io and Maven Central publishing enabled on tagged releases.
See CHANGELOG.md for full details on all of the above.
v0.9.0
- Crossbeam Parallelism: Migrated from Rayon to Crossbeam for finer-grained parallel control.
- DataFrame/Series Support: Native Python support for Pandas, Polars, PyArrow, and PySpark DataFrames and Series.
- Modular Architecture: Refactored into 10 focused modules for maintainability (zero API changes).
- Performance Optimizations: Eliminated per-entry HashMap in parallel flatten, early-exit discriminators, SIMD literal fallback, thread-local regex cache half-eviction, vectorized
clean_number_string(). - Python Binding Optimizations:
mem::takefor zero-cost builder mutations, O(1) DataFrame/Series reconstruction.
v0.8.0
- Python Feature Parity: Added
auto_convert_types,parallel_threshold,num_threads, andnested_parallel_thresholdto Python bindings. - Enhanced Type Conversion: Added support for ISO-8601 dates, currency codes (USD, EUR), basis points (bps), and suffixed numbers (K/M/B).
- Date Normalization: Automatic detection and UTC normalization of date strings.
See CHANGELOG.md for full history.