-
-
Notifications
You must be signed in to change notification settings - Fork 53
Batch
Signature: items → item arrays — generic, not token-specific
This utility packs incoming items into arrays: batch() returns a composable function for use in chain(); batch.asStream() wraps it as an object-mode Transform stream. As soon as the array is big enough (a configurable value) it is emitted as an output. All arrays are as big as specified but the last one can be smaller but never empty.
Example:
import batch from 'stream-json/utils/batch.js';
import {streamArray} from 'stream-json/streamers/stream-array.js';
import chain from 'stream-chain';
import fs from 'node:fs';
const pipeline = chain([fs.createReadStream('sample.json'), streamArray.withParser(), batch({batchSize: 100})]);
// count all odd values from a huge array
let oddCounter = 0;
pipeline.on('data', data => {
console.log('Batch size:', data.length);
data.forEach(pair => {
if (pair.value % 2) ++oddCounter;
});
});
pipeline.on('end', () => console.log('Odd numbers:', oddCounter));The module returns a factory function. batch() returns a composable function for use in chain(). batch.asStream() returns a Transform stream for .pipe() usage.
options is an optional object. When wrapping as a stream (asStream), standard stream options are accepted too. Additionally, the following custom options are recognized:
-
batchSizeis a positive integer number, which defines how many items should be placed into an array before it is outputted. Default: 1000.
Alias of the factory function.
Returns a Transform stream suitable for .pipe() usage. The returned stream has a _batchSize property attached.
import batch from 'stream-json/utils/batch.js';
// ...
const pipeline = chain([fs.createReadStream('sample.json'), streamArray.withParser(), batch({batchSize: 100})]);
// ...Returns a {readable, writable} pair suitable for Web Streams. The pair has a _batchSize property attached for parity with asStream.
batch ships in two substrate-specific entries with the same factory shape:
-
Node —
stream-json/utils/batch.js. HasasStream(Node Duplex) andasWebStream(Web pair). Both attach_batchSizeto the returned object. -
Web —
stream-json/web/utils/batch.js. HasasWebStreamonly. Pulls in no Node-stream imports.
Both factories return the same flushable, so chain on either substrate auto-wraps it.
// Web
import {chain} from 'stream-chain/web';
import {parser} from 'stream-json/web/parser.js';
import {streamArray} from 'stream-json/web/streamers/stream-array.js';
import batch from 'stream-json/web/utils/batch.js';
const pipeline = chain([source, parser(), streamArray(), batch({batchSize: 100})]);
for await (const arr of pipeline.readable) console.log('Batch size:', arr.length);Start here
Core
Filters
Streamers
Essentials
Utilities
File I/O (Node-only)
JSONC
JSONL (use stream-chain)
Reference
Built on stream-chain