jm
and jm.py
are scripts which make it easy to splat (that is to
stream the top-level values in) JSON arrays or JSON objects
losslessly, even if they occur in very large JSON documents.
(Losslessly here refers primarily to numeric precision, but jm
also handles duplicate keys within a JSON object losslessly as well.)
Once installed, each script is typically trivial or very easy to use, e.g. to splat the top-level array of a JSON document in a file named input.json one could write:
jm input.json
or
jm.py input.json
For example:
$ jm <<< '{"a": 1,"b": "2", "c": {"d": 3} }'
1
"2"
{"d":3}
Further examples and variations are shown below.
For large inputs, jm
is typically 3 or more times faster than jm.py
and
consumes significantly less memory, but jm.py can be made to ignore
comments, and Pythonistas might find jm.py
of interest as it is easy to modify.
jm
requires PHP 8 and requires the installation of
JSON Machine package.
jm.py
requires Python 3, and requires the installation of the
ijson package.
In this document, splatting a JSON array is to be understood as producing a stream of the top-level items in the array (one line per item), and similarly, streaming a JSON object means producing a stream of the top-level values, or of the corresponding key-value singleton objects if the -s option is specified. Splatting other JSON values simply means printing them.
The two scripts are quite similar in terms of capabilties and typical usage, but there are important differences, notably in the way paths to subdocuments are specified: jm uses JSON Pointer (RFC 6901), whereas jm.py has a less comprehensive notation. As already illustrated, however, typically no path need be specified at all.
If the yajl2 library has been installed (as by brew install yajl
)
then jm.py will ignore / C-style comments. /
jm.py
preserves the precision of numbers, at least to the extent that
the ijson and simplejson packages allow.
The way in which jm
prints JSON numbers depends on the --recode
and --bigint_as_string
options, which are mutually exclusive:
Usage: jm [ OPTIONS ] [ FILEPATH ... ]
or: jm [-h | --help]
where FILEPATH defaults to stdin, and the other options are:
-s | --keys | --tag KEYNAME
--array
--bigint_as_string | --recode
--count | --limit=LIMIT
--pointer=JSONPOINTER *
--version
The --tag option precludes the --array, --keys, and -s options.
JSONPOINTER defaults to ''.
* Several pointers may be specified by repeating the --pointer option.
For details, simply invoke the script with the --help option, or review the documentation contained within the script itself.
usage: jm.py [-h] [-i IPATH] [-s] [--values] [-k] [--count] [--limit LIMIT] [--tag KEYNAME] [-v] [-V] [filename ...]
Stream a JSON array or object.
positional arguments:
filename
options:
-h, --help show this help message and exit
-i IPATH, --ipath IPATH
the ijson path to the object or array to be streamed
-s, --singleton stream JSON objects as single-key objects
--values stream JSON objects by printing the values of their keys
-k, --keys stream JSON objects by printing their keys
--count count the number of lines that would be printed
--limit LIMIT limit the number of JSON values (lines) printed
--tag KEYNAME instead of emitting a line X of JSON, emit TAG<tab>X where TAG is determined by KEYNAME (see below)
-v verbose mode
-V, --version show program's version number and exit
The --limit and --count options are mutually exclusive,
as are the --tag, --s, --keys and --values options.
For details, simply invoke the script with the --help option, or review the documentation contained within the script itself.
In these examples, $JM means that jm and jm.py can be used interchangeably.
(1) $JM <<< '[1,"2", {"a": 4}, [5.0000000000000000000000000006]]'
yields:
1
"2"
{"a":4}
[5.0000000000000000000000000006]
(2) $JM --tag a <<< '[{"a": 1}, {"a": [2]}, {"b": [3]}]' | sed 's/\t/<tab>/'
yields
1<tab>{"a": 1}
[2]<tab>{"a": [2]}
<tab>{"b": [3]}
(3) jm --keys <<< '{"a": 1, "b": [2]}'
is equivalent to
jm.py --keys --ipath '' <<< '{"a": 1, "b": [2]}'
Both yield:
"a"
"b"
(4) jm <<< '{"a": 1, "b": [2,3]}'
is equivalent to
jm.py --ipath '' --values <<< '{"a": 1, "b": [2,3]}'
Both yield:
1
[2,3]
(5) jm -s <<< '{"a": 1, "b": [2,3]}'
is equivalent to
jm.py --ipath '' -s <<< '{"a": 1, "b": [2,3]}'
Both yield:
{"a": 1}
{"b": [2,3]}
(6) jm --pointer "/results" <<< '{"results": {"a": 1, "b": [2,3]}}'
is equivalent to
jm.py --values --ipath "results" <<< '{"results": {"a": 1, "b": [2,3]}}'
Both yield the same stream as (4) above, namely:
1
[2, 3]
(7) jm --bigint_as_string <<< '[10000000000000000000002, 3.0000000000000000000004]'
yields
"10000000000000000000002"
3
(8) jm --array <<< '{"a": 1, "b": [2,3]}'
yields
[
1,
[2,3]
]
(9) jm --recode <(echo '[1.000000000000000001,20000000000000000003]')
yields
1
2.0e+19
(10) jm --pointer "/-" <<< '[1,[2,3]]'
yields
1
2
3
Note that in the last example, the JSON Pointer "/-" points in turn to the items in the top-level array (i.e. 1 and then [2,3]), and that streaming 1 produces 1, and streaming [2,3] produces 2 and then 3.
(1) Install "JSON Machine"
The simplest way to install "JSON Machine" is usually to run:
composer require halaxa/json-machine
in the user's home directory or in the same directory in which you intend to install the jm
script.
To install composer
, you could try brew install composer
using
homebrew. See "Additional Documentation" below for further details
and alternatives.
If you wish to clone or download the JSON Machine repository instead
of installing it using composer
, then please note that jm
will
assume it resides in the directory ~/github/json-machine/
.
(2) Download the file named jm
from this repository.
If at all possible, ensure it is executable (e.g. chmod +x jm
).
Otherwise, it can still be run as a PHP script, e.g. for help:
php jm --help
1) Ensure that both simplejson and ijson are installed, e.g.:
pip install simplejson
pip install ijson
2) Install yajl (OPTIONAL)
If you want to strip / C-style comments / from the input files,
then ensure the yajl library has been installed (e.g. via brew install yajl
).
3) Download the file named jm.py
in the bin directory of this repository.
If at all possible, ensure it is executable (e.g. chmod +x jm.py
).
Otherwise, it can still be run as a python3 script, e.g. for help:
python3 jm.py --help
The following two tables show some performance metrics for two queries against a 1.5GB "real-world" JSON data set: the traffic violations data set from Montgomery County, MD. The file is about 1.5GB. Further details about it are given below.
The entries in the tables are based on runs of /usr/bin/time -lp on a 3GHz Mac Mini.
In the tables, u+s is the user+system time in seconds, and mrss is the
maximum resident set size in MB. To facilitate comparison, the first
entry of the first table shows metrics for the wc
command for
counting the number of lines in the file.
Except for this first line, the queries in the first table compute the length of the .data array (i.e. 1829779):
u+s | mrss (MB) | command |
---|---|---|
1.3s | 1.7 | wc -l |
169s | 1.3 | jm --pointer=/data --count |
306s | 1.8 | jm.py -i data.item --count |
40s | 3987.0 | jq '.data|length' |
42s | 6442.0 | gojq '.data|length' |
53s | 7330.0 | fq '.data|length' |
46s | 10346.0 | jaq '.data|length' |
In the second table, the queries extract the value of .meta.view.createdAt (i.e. 1403103517):
u+s | mrss (MB) | command |
---|---|---|
0.0s | 2.0 | jq -n --stream "$CMD" |
0.0s | 3.4 | gojq -n --stream "$CMD" |
0.1s | 13.6 | jm --pointer=/meta/view/createdAt |
0.2s | 17.6 | jm.py -i meta.view.createdAt --limit 1 |
233.0s | 18.0 | jm.py -i meta.view.createdAt |
50.3s | 3869.1 | jq .meta.view.createdAt |
50.3s | 6108.6 | gojq .meta.view.createdAt |
57.3s | 8252.4 | fq .meta.view.createdAt |
56.2s | 10474.1 | jaq .meta.view.createdAt |
CMD='first(inputs|select(length==2 and .[0]==["meta","view","createdAt"]))|.[1]'
The file used in all cases was obtained on Jan 11, 2023 from https://data.montgomerycountymd.gov/api/views/4mse-ku6q/rows.json It is archived at https://web.archive.org/web/20230112063656/https://data.montgomerycountymd.gov/api/views/4mse-ku6q/rows.json
The file size is 1,459,336,880 bytes, and the .meta.view.createdAt value in the file is 1403103517.
Special thanks to https://github.com/halaxa, the creator of "JSON Machine".
Thanks also to the creators and maintainers of ijson.