matlab/matlab-choose-bigdata-solution
> Guide users or agents to the correct MATLAB tool for processing large tabular data in file-based formats (CSV, Parquet, delimited text, spreadsheets, MDF) that may not fit in memory. Use when a user or agent mentions large files, big data, out-of-memory errors, OOM, scaling up, tall arrays, datastores, or needs to process multiple tabular files. Covers the decision between datastore + tall, datastore + transform, and parallel execution. Also use when a user or agent has working in-memory code (readtable, parquetread) that runs out of memory and needs a migration path. Also covers building custom datastore classes for proprietary or non-standard formats — use when the task requires subclassing matlab.io.Datastore, implementing a custom reader, building an extensible datastore, or integrating a new file format with tall arrays or parallel computing. Do NOT use for MAT files (use matfile instead).
npx skills add https://github.com/matlab/matlab-agentic-toolkit --skill matlab-choose-bigdata-solution
Help users and agents select the right MATLAB tool for large **tabular data in
file-based formats** (CSV, Parquet, delimited text, spreadsheets, MDF). The
skill encodes a decision flowchart — recommend one clear path, not a menu of
options.
readtable, parquetread, or similarreadtable supports these formats but the built-in datastores do not. Scaling these requires a custom datastore (see "Formats Without a Built-in Datastore" and "Custom Datastores" sections below)matlab-import-export-data skillmatfile provides partial I/O for large .mat files, different workflowmatlab-read-database and matlab-use-duckdb skills in the reporting-and-database-access categoryminibatchqueue for batching (not tall or transform)ALWAYS run this check BEFORE recommending datastore or tall array patterns.
Estimate the file-size-to-available-RAM ratio (accounting for in-memory
expansion of the file format).
| Condition | Route | Rationale |
|-----------|-------|-----------|
| Single file, ratio < 0.5 | Native MATLAB I/O (readtable, parquetread) | Fits in memory; datastore/tall adds unnecessary complexity |
| Single file, ratio ≥ 0.5, OR user/agent reports OOM | Continue to Decision Flowchart below | Data may not fit in memory |
| Multiple files | Continue to Decision Flowchart below | Datastore patterns provide unified multi-file access |
| Size unknown and user/agent describes data as "large", "big", or "huge" | Continue to Decision Flowchart below | Assume large until proven otherwise |
If the data fits in memory (single file, ratio < 0.5): recommend native
I/O and stop. Mention that datastore and tall array patterns exist if the
data grows beyond memory in the future, but do not implement them now.
Follow this flowchart strictly. Present ONE recommended path, not multiple
alternatives. Only mention alternatives if the situation is ambiguous.
Is the data described as "large" or causing OOM?
│
├── YES
│ │
│ ├── Is the goal to process all data as ONE continuous dataset?
│ │ │
│ │ └── YES → Datastore + Tall Arrays
│ │ Choose datastore by format:
│ │ CSV/delimited text → tabularTextDatastore
│ │ Parquet → parquetDatastore
│ │ Excel (.xlsx/.xls) → spreadsheetDatastore
│ │ MDF (.mf4/.mdf) → mdfDatastore (requires Vehicle Network Toolbox)
│ │ Other formats → Custom Datastore
│ │
│ └── Is the goal to process each unit INDEPENDENTLY?
│ │
│ ├── One read = one FILE
│ │ CSV/delimited text → tabularTextDatastore
│ │ Excel (.xlsx/.xls) → spreadsheetDatastore
│ │ Other formats → Custom Datastore or fileDatastore
│ │
│ └── One read = one ROW GROUP
│ Parquet → parquetDatastore
│
└── NO / UNCLEAR
└── STOP. Ask: (1) what is the file format? (2) do you need to process
all data as one dataset, or each file/unit independently?
Do NOT show code until these are answered.
Optional (requires Parallel Computing Toolbox):
├── Speed up tall arrays locally → Open a parallel pool
├── Speed up readall on transforms → UseParallel
└── Speed up tall arrays on Hadoop/Spark → mapreducer (also requires MATLAB Parallel Server)
Critical rules:
before writing any code.** Do not show code examples, do not generate scripts,
do not demonstrate both approaches. Ask which applies and wait for the answer.
The correct response to ambiguity is a short clarifying question, not a menu
of options with code for each.
readtable or parquetreadparquetDatastore defaults to ReadSize = "rowgroup". Do NOT force ReadSize = "file" on a Parquet datastore unless the workflow truly needs whole-file granularityUse when: processing one large file OR multiple files as a single dataset.
Use the datastore matching the format (see Decision Flowchart above).
% Single file
ds = tabularTextDatastore("largedata.csv");
tt = tall(ds);
% Multiple files
ds = tabularTextDatastore("data/*.csv");
tt = tall(ds);
% For example, compute statistics with the tall array and gather results.
% Tall handles chunking automatically. Specify DataVars to avoid errors
% on non-numeric columns.
result = groupsummary(tt, "GroupVar", {"mean", "std"}, "NumericVar");
result = gather(result);
Key points:
mean, std, min, max, groupsummary, sortrows, topkrows[a, b] = gather(tallA, tallB)DuckDB alternative (R2026a+): When the goal is to filter, aggregate,
deduplicate, or sample a large file down to a small in-memory result, a
single DuckDB query may be faster than datastore + tall. DuckDB queries
CSV/Parquet/JSON files directly without loading them into memory. Requires
Database Toolbox.
conn = duckdb();
result = fetch(conn, "SELECT * FROM read_csv_auto('large.csv') WHERE Region = 'West'");
close(conn);
For complex DuckDB workflows, see the matlab-use-duckdb skill in the
reporting-and-database-access category.
Migrating from readtable (OOM on large files):
% Before:
T = readtable("large.csv");
stats = groupsummary(T, "Category", "mean");
% After:
ds = tabularTextDatastore("large.csv");
tt = tall(ds);
stats = gather(groupsummary(tt, "Category", "mean"));
tabularTextDatastore uses a stricter textscan-based parser. Key gotchas:
TextType must be set at creation time — read-only after constructionTrimNonNumeric unsupported — read as %q, strip on the tall array%f errors on non-numeric content — read as %q, convert with str2doubleExtraColumnsRule does not exist — append "%*[^\r\n]" to TextscanFormatsdetectImportOptions does not apply — configure via datastore properties directlySee references/readtable-to-datastore-migration.md for the full property mapping.
Migrating from parquetread: Replace with parquetDatastore + tall. Types
are preserved exactly — no format specifier issues. All parquetread options
map 1:1 to datastore properties. See references/parquetread-to-datastore-migration.md.
Use when: each file in a folder should be processed independently (per-file
statistics, per-file transformations, file-level aggregation).
% Set up datastore to read one file at a time
ds = tabularTextDatastore("data/*.csv");
ds.ReadSize = "file";
% For example, compute statistics by transforming the datastore with a custom function.
tds = transform(ds, @computeFileStats);
results = readall(tds);
function out = computeFileStats(data)
numVars = vartype("numeric");
out = table( ...
min(data{:, numVars}, [], 1, "omitmissing"), ...
max(data{:, numVars}, [], 1, "omitmissing"), ...
mean(data{:, numVars}, 1, "omitmissing"), ...
VariableNames=["Min", "Max", "Mean"]);
end
For Excel files, use spreadsheetDatastore instead of tabularTextDatastore.
spreadsheetDatastore defaults to ReadSize = "file" so no override is needed.
For per-sheet processing (e.g., statistics per worksheet), set ReadSize = "sheet"
so each read returns exactly one sheet's data.
Key points:
tabularTextDatastore, set ReadSize = "file" so each read returnsexactly one file's data. The default ReadSize is a row count, which can
split a single file across multiple reads but it will not go across file
boundaries
transform applies a function to each read — the datastore output contains only thetransformed results, not the original data. The transform function does not
need to return the same number of rows as its input (e.g., computing the mean
of each variable produces a single row per read)
readall on the transformed datastore collects all per-file results"omitmissing" for missing-data flags (R2023a+). On R2022b and earlier, use "omitnan" instead.Do NOT use tall arrays for per-file processing. Tall arrays treat all files
as one continuous dataset — they have no concept of file boundaries.
Use when: a Parquet dataset is partitioned by row group (e.g., one row group
per item, sensor, region, or time bucket) and each row group must be processed
independently. Row groups are the natural unit of independence in Parquet —
data from different row groups should not be mixed when the partitioning
encodes a meaningful grouping.
% parquetDatastore defaults ReadSize to "rowgroup" — one read = one row group.
% Do NOT set ReadSize = "file": that would mix row groups within the same file.
pds = parquetDatastore("data/");
% For example, compute statistics by transforming the datastore with a custom function.
tds = transform(pds, @computeRowGroupStats);
results = readall(tds);
function out = computeRowGroupStats(data)
out = table( ...
unique(data.item), ...
mean(data.val, "omitmissing"), ...
std(data.val, "omitmissing"), ...
VariableNames=["Item", "Mean", "Std"]);
end
Key points:
parquetDatastore defaults to ReadSize = "rowgroup". Each read returnsexactly one row group — leave the default
Writers commonly assign one row group per partition key (item, sensor, day),
so per-row-group processing preserves those boundaries
Do NOT set ReadSize = "file" on a Parquet datastore for this workflow —
it merges all row groups in a file into a single read and silently mixes data
that was meant to stay separate. Use file-level granularity only when each file
already contains exactly one logical group.
The readall call in both per-file and per-row-group transform workflows
supports parallel execution when Parallel Computing Toolbox is installed and
licensed. Suggest this only when the toolbox is available:
results = readall(tds, UseParallel=true);
UseParallel=true parallelizes reads across workers in an open parallelpool. If no pool is open, MATLAB opens one automatically
UseParallel if Parallel Computing Toolbox is availableUse when: the goal is to speed up a tall array workflow with local cores.
Only recommend if Parallel Computing Toolbox is installed and licensed.
% Start a thread or process pool
parpool("Threads");
% parpool("Processes");
ds = tabularTextDatastore("data/*.csv");
tt = tall(ds);
result = gather(mean(tt, "omitmissing"));
Tall array computations automatically distribute across available workers when
a parallel pool is open. No code changes needed beyond opening the pool.
Do NOT suggest parpool or parallel pool workflows unless Parallel Computing
Toolbox is available — parpool errors without it.
Use ONLY when the user or agent explicitly has a Hadoop or Spark environment.
Requires both Parallel Computing Toolbox and MATLAB Parallel Server.
mr = mapreducer(cluster);
ds = tabularTextDatastore("hdfs:///data/*.csv");
tt = tall(ds);
result = gather(mean(tt, "omitmissing"));
Do NOT recommend mapreducer for local parallel processing — a parallel pool
is simpler and sufficient for local multi-core execution.
Do NOT suggest mapreducer for Hadoop/Spark execution unless the user or agent
has Parallel Computing Toolbox and a Hadoop or Spark environment with MATLAB
Parallel Server installed and licensed.
| Function | Purpose | When to Use |
|----------|---------|-------------|
| tabularTextDatastore | Multiple reads per file for CSV/text | Large CSV/text files |
| parquetDatastore | Multiple reads per file for Parquet | Large Parquet files |
| spreadsheetDatastore | Multiple reads per file for Excel | Large .xlsx/.xls files |
| mdfDatastore | Multiple reads per file for MDF | Large .mf4/.mdf files (requires Vehicle Network Toolbox) |
| tall | Lazy evaluation over a datastore | Continuous dataset processing |
| gather | Execute deferred tall computations | Collect results into memory |
| transform | Apply function to each datastore read | Per-file (text) or per-row-group (Parquet) processing |
| groupsummary | Grouped statistics (tall-compatible) | Aggregation by category |
| parpool | Open parallel worker pool | Speed up tall computations |
| mapreducer | Connect to Hadoop/Spark cluster | Hadoop/Spark environments only |
Built-in datastores (such as tabularTextDatastore, parquetDatastore,
spreadsheetDatastore, mdfDatastore) do NOT support JSON, XML, HTML, or Word
documents. If the user or agent has an OOM error with readtable on one of these formats,
do NOT recommend converting to Parquet/CSV first — readtable itself would OOM
during the conversion, creating a circular dependency.
Why not fileDatastore with readtable? A common instinct is to use
fileDatastore(@readtable) — but if readtable OOMs on the file, wrapping it
in fileDatastore does not help because the read function still loads the
entire file into memory.
Instead, recommend building a custom datastore that performs multiple
reads per file (chunked reading), processing it in manageable pieces without
loading it entirely into memory (e.g., reading N lines of XML at a time, or
parsing JSON arrays incrementally). A fileDatastore with such a read
function is one option; implementing the full matlab.io.Datastore interface
is another. See the "Custom Datastores" section below for implementation guidance.
A custom datastore can then be used with tall or transform just like the
built-in datastores.
If a file format is not supported by one of the built-in datastores, build a
custom datastore by subclassing matlab.io.Datastore. This applies to:
Before building a custom datastore, check whether fileDatastore with a
custom ReadFcn is sufficient (one file = one read, each file fits in memory,
no state needed). Set UniformRead=true at construction so readall returns
a concatenated table (read-only after construction). For partial reads within
a file, fileDatastore with ReadMode="partialfile" supports chunked
iteration (see references/custom-datastore/implementation.md for the
required 3-output ReadFcn signature). Only build a full custom datastore class
when those simpler patterns are insufficient.
For full implementation guidance, read references/custom-datastore/implementation.md.
It covers:
references/custom-datastore/testing-guidelines.md)references/custom-datastore/mixin-decision-tree.md)----
Copyright 2026 The MathWorks, Inc.
----
Take matlab/matlab-choose-bigdata-solution from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.