Pipeline Execution Backends#
Configure and optimize execution backends to run NeMo Curator pipelines efficiently across single machines, multi-GPU systems, and distributed clusters.
Overview#
Execution backends (executors) are the engines that run NeMo Curator Pipeline workflows across your compute resources. They handle:
Task Distribution: Distribute pipeline stages across available workers and GPUs
Resource Management: Allocate CPU, GPU, and memory resources to processing tasks
Scaling: Automatically or manually scale processing based on workload
Data Movement: Optimize data transfer between pipeline stages
Choosing the right executor impacts:
Pipeline performance and throughput
Resource utilization efficiency
Ease of deployment and monitoring
This guide covers all execution backends available in NeMo Curator and applies to all modalities: text, image, video, and audio curation.
Basic Usage Pattern#
All pipelines follow this standard execution pattern:
from nemo_curator.pipeline import Pipeline
pipeline = Pipeline(name="example_pipeline", description="Curator pipeline")
pipeline.add_stage(...)
# Choose an executor below and run
results = pipeline.run(executor)
Key points:
The same pipeline definition works with any executor
Executor choice is independent of pipeline stages
Switch executors without changing pipeline code
Available Backends#
XennaExecutor (recommended)#
XennaExecutor uses Cosmos-Xenna, a Ray-based execution engine optimized for distributed data processing. Xenna provides native streaming support, automatic resource scaling, and built-in fault tolerance. This executor is the recommended choice for most workloads, especially for video and multimodal pipelines.
Key Features:
Streaming execution: Process data incrementally as it arrives, reducing memory requirements
Auto-scaling: Dynamically adjusts worker allocation based on stage throughput
Fault tolerance: Built-in error handling and recovery mechanisms
Resource optimization: Efficient CPU and GPU allocation for video/multimodal workloads
from nemo_curator.backends.xenna import XennaExecutor
executor = XennaExecutor(
config={
# Execution mode: 'streaming' (default) or 'batch'
# Batch processes all data for a stage before moving to the next; streaming runs stages concurrently.
"execution_mode": "streaming",
# Logging interval: seconds between status logs (default: 60)
# Controls how frequently progress updates are printed
"logging_interval": 60,
# Ignore failures: whether to continue on failures (default: False)
# When True, the pipeline continues execution instead of failing fast when stages raise errors.
"ignore_failures": False,
# CPU allocation percentage: ratio of CPU to allocate (0-1, default: 0.95)
# Fraction of available CPU resources to use for pipeline execution
"cpu_allocation_percentage": 0.95,
# Autoscale interval: seconds between auto-scaling checks (default: 180)
# How often to run the stage auto-scaler.
"autoscale_interval_s": 180,
# Max workers per stage: maximum number of workers (optional)
# Limits worker count per stage; None means no limit
"max_workers_per_stage": None,
}
)
results = pipeline.run(executor)
Configuration Parameters:
Parameter |
Type |
Default |
Description |
|---|---|---|---|
|
|
|
Execution mode: |
|
|
|
Seconds between status log updates |
|
|
|
If |
|
|
|
Fraction (0-1) of available CPU resources to allocate |
|
|
|
Seconds between auto-scaling evaluations |
|
|
|
Maximum workers per stage; |
For more details, refer to the official NVIDIA Cosmos-Xenna project.
RayActorPoolExecutor#
RayActorPoolExecutor uses Ray’s ActorPool for efficient distributed processing with fine-grained resource management. This executor creates pools of Ray actors per stage, enabling better load balancing and fault tolerance through Ray’s native mechanisms. Deduplication workflows automatically use this executor for GPU-accelerated stages.
Key Features:
ActorPool-based execution: Creates dedicated actor pools per stage for optimal resource utilization
Load balancing: Uses
map_unorderedfor efficient work distribution across actorsRAFT support: Native integration with RAFT (RAPIDS Analytics Framework Toolbox) for GPU-accelerated clustering and nearest-neighbor operations
Head node exclusion: Optional
ignore_head_nodeparameter to reserve the Ray cluster’s head node for coordination tasks only
Example: Fuzzy Deduplication
from nemo_curator.stages.deduplication.fuzzy.workflow import FuzzyDeduplicationWorkflow
workflow = FuzzyDeduplicationWorkflow(
input_path="/data/documents",
cache_path="/data/cache",
output_path="/data/output",
text_field="text",
perform_removal=True,
num_bands=20,
minhashes_per_band=13,
)
# The workflow automatically uses RayActorPoolExecutor for GPU-accelerated stages
results = workflow.run()
For more details, refer to Text Deduplication.
RayDataExecutor#
RayDataExecutor uses Ray Data, a scalable data processing library built on Ray Core. Ray Data provides a familiar DataFrame-like API for distributed data transformations. This executor is best suited for large-scale text processing tasks that benefit from Ray Data’s optimized data loading and transformation pipelines.
Key Features:
Ray Data API: Leverages Ray Data’s optimized data processing primitives
Scalable transformations: Efficient map-batch operations across distributed workers
from nemo_curator.backends.experimental.ray_data import RayDataExecutor
executor = RayDataExecutor()
results = pipeline.run(executor)
Ray Executors in Practice#
Ray-based executors provide enhanced scalability and performance for large-scale data processing tasks. These executors are beneficial for:
Large-scale classification tasks: Distributed inference across multi-GPU setups
Deduplication workflows: Parallel processing of document similarity computations
Resource-intensive stages: Automatic scaling based on computational demands
Choosing a Backend#
All executors can deliver strong performance; choose based on your workload requirements:
XennaExecutor: Default for most workloads due to maturity and extensive real-world usage (including video pipelines); supports streaming and batch execution with auto-scaling.RayActorPoolExecutor: Automatically used for deduplication workflows; provides GPU-accelerated processing with RAFT integration.RayDataExecutor: Best for batch data transformations using Ray Data’s DataFrame-like API.
Minimal End-to-End example#
from nemo_curator.pipeline import Pipeline
from nemo_curator.backends.xenna import XennaExecutor
# Build your pipeline
pipeline = Pipeline(name="curator_pipeline")
# pipeline.add_stage(stage1)
# pipeline.add_stage(stage2)
# Run with Xenna (recommended)
executor = XennaExecutor(config={"execution_mode": "streaming"})
results = pipeline.run(executor)
print(f"Completed with {len(results) if results else 0} output tasks")