Data Federation Mesh Core Framework
Project description
nv-dfm-core
Core framework for the Data Federation Mesh (DFM) project.
Overview
nv-dfm-core provides the foundation for building and running federated data processing pipelines:
| Component | Description |
|---|---|
| Pipeline API | Declarative Python API for defining pipelines (Pipeline, Yield, PlaceParam, ForEach, etc.) |
| Compilation | IRGen and ModGen convert pipelines to executable Petri nets |
| Execution | NetRunner, JobController, and Router for distributed execution |
| CLI | dfm command for development, federation management, and deployment |
| Targets | Flare (distributed) and Local (multiprocessing) execution backends |
Installation
pip install nv-dfm-core
Or with uv in the monorepo:
uv sync --package nv-dfm-core
Quick Start
from nv_dfm_core.api import Pipeline, Yield, PlaceParam
from nv_dfm_core.session import Session
# Define a pipeline
with Pipeline() as p:
result = SomeOperation(...)
Yield(value=result)
# Execute with a session (see tutorials for federation setup)
with Session(federation="my_federation") as session:
job = session.execute(p)
for result in job.results():
print(result)
Documentation
License
Apache License 2.0. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
nv_dfm_core-3.1.27-py3-none-any.whl
(371.9 kB
view details)
File details
Details for the file nv_dfm_core-3.1.27-py3-none-any.whl.
File metadata
- Download URL: nv_dfm_core-3.1.27-py3-none-any.whl
- Upload date:
- Size: 371.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27a5715e63fb2b623a7e04bd68daa3379aab067bde115e8a6cae5c83877df63d
|
|
| MD5 |
bc3e963553d7b28c58b37157ddad3eab
|
|
| BLAKE2b-256 |
f004f9a9f8ab731bf4be4d94d959691eaa4bee522e7a43b94e3e4f5da26fc3f3
|