- Does it handle files with different schemas?
- It merges any valid JSONL files regardless of schema consistency. If schemas differ, the output is still valid JSONL but downstream tools may encounter missing fields. Enable schema validation to flag mismatches before merging.
- Can it deduplicate on merge?
- Yes — specify a key field (e.g., 'id') and duplicate records (same key value) are deduplicated, keeping the first or last occurrence based on your setting.
- Is there a size limit?
- Files up to 50MB can be merged in-browser. For larger files, use the streaming CLI alternative: cat file1.jsonl file2.jsonl > merged.jsonl (no tool needed for simple concatenation).