Data Loading Concepts#

This guide covers the core concepts for loading and managing text data from local files in NVIDIA NeMo Curator.

Pipeline-Based Data Loading#

NeMo Curator uses a pipeline-based architecture for handling large-scale text data processing. Data flows through processing stages that transform tasks, enabling distributed processing of local files.

The system provides two primary readers for text data:

  • JsonlReader - For JSON Lines format files (most common)

  • ParquetReader - For columnar Parquet files (better performance for large datasets)

Both readers support optimization through:

  • Field selection - Reading specified columns to reduce memory usage

  • Partitioning control - Using blocksize or files_per_partition to optimize DocumentBatch sizes during distributed processing

  • Recommended block size - Use ~128MB for optimal object store performance with smaller data chunks

from nemo_curator.pipeline import Pipeline
from nemo_curator.stages.text.io.reader import JsonlReader, ParquetReader

# Basic usage with optimization
pipeline = Pipeline(name="data_processing")

# JSONL reader with field selection and partitioning
jsonl_reader = JsonlReader(
    file_paths="/path/to/jsonl_directory",
    blocksize="128MB",  # Recommended for object store optimization
    fields=["text", "id"]  # Column selection for efficiency
)
pipeline.add_stage(jsonl_reader)

# Parquet reader with performance optimization
parquet_reader = ParquetReader(
    file_paths="data.parquet",
    files_per_partition=4,  # Alternative to blocksize
    fields=["text", "metadata"]
)

# Execute pipeline
results = pipeline.run()

Supported File Formats#

JSON Lines format - Most commonly used format for text datasets.

from nemo_curator.stages.text.io.reader import JsonlReader

# Optimized JSONL reading
reader = JsonlReader(
    file_paths="data_directory/",
    blocksize="128MB",  # Optimal for distributed processing
    fields=["text", "id"]  # Read only required columns
)

most-common fast-loading

Columnar format - Better performance for large datasets with PyArrow optimization.

from nemo_curator.stages.text.io.reader import ParquetReader

# Optimized Parquet reading
reader = ParquetReader(
    file_paths="data.parquet",
    files_per_partition=8,  # Control partition size
    fields=["text", "metadata"]  # Column selection
)

production gpu-optimized

Optimization Strategies#

Partitioning Control#

Note

Partitioning Strategy: Specify either files_per_partition or blocksize. If files_per_partition is provided, blocksize is ignored.

# Option 1: Size-based partitioning (recommended)
reader = JsonlReader(
    file_paths="/path/to/data",
    blocksize="128MB"  # Optimal for object store performance
)

# Option 2: File count-based partitioning  
reader = ParquetReader(
    file_paths="/path/to/data",
    files_per_partition=16  # Match your cluster size
)

Performance Recommendations#

  • Block size and files per partition: Use ~128MB for optimal performance. Very large batches lead to memory overheads when passing data between stages through the object store, while very small batches induce overhead from processing many more tasks. We recommend ~128MB as a good balance. Try to avoid going below 32MB or above 1GiB partition sizes.

  • Field selection: Specify fields parameter to read required columns

  • Engine choice: ParquetReader defaults to PyArrow with dtype_backend="pyarrow" for optimal performance and memory efficiency. If you encounter compatibility issues with certain data types or schemas, you can override these defaults through read_kwargs:

    # Remove PyArrow dtype backend if compatibility issues arise
    reader = ParquetReader(
        file_paths="data.parquet",
        read_kwargs={"dtype_backend": None}  # Falls back to pandas default behavior
    )
    

Data Export Options#

NeMo Curator provides flexible export options for processed datasets:

from nemo_curator.stages.text.io.writer import JsonlWriter, ParquetWriter

# Add writers to pipeline after processing stages
pipeline.add_stage(JsonlWriter(path="output_directory/"))
# or
pipeline.add_stage(ParquetWriter(path="output_directory/"))

# Execute pipeline to write results
results = pipeline.run()

Common Loading Patterns#

Multi-Source Data#

# Combine multiple directories with same reader type
reader = JsonlReader(file_paths=[
    "dataset_v1/",
    "dataset_v2/", 
    "additional_data/"
])

Note

You cannot combine different reader types (JsonlReader + ParquetReader) in the same pipeline stage. For different file types, you would need to create a new BaseReader that can read based on different extensions provided.

Remote Data Sources#

This page focuses on loading text data from local files using JsonlReader and ParquetReader. Both readers support remote storage locations (Amazon S3, Google Cloud Storage) when you provide remote file paths.

For downloading and processing data from remote sources like ArXiv, Common Crawl, and Wikipedia, refer to the Data Acquisition Concepts page which covers:

  • DocumentDownloader, DocumentIterator, DocumentExtractor components

  • Built-in support for Common Crawl, ArXiv, Wikipedia, and custom sources

  • Integration patterns with pipeline-based processing

  • Configuration and scaling strategies

The data acquisition process produces standardized output that integrates seamlessly with the pipeline-based loading concepts described on this page.