Welcome to the comprehensive documentation for The Pipeline Framework. This site provides everything you need to understand, use, and extend the framework for building reactive pipeline processing systems.
In addition to programmatic development, The Pipeline Framework includes a visual canvas designer at https://app.pipelineframework.org that allows you to create and configure your pipelines using an intuitive visual interface. This tool makes it easier to design complex pipeline architectures without writing code.The Pipeline Framework is a powerful tool for building reactive pipeline processing systems. It simplifies the development of distributed systems by providing a consistent way to create, configure, and deploy pipeline steps.
- Reactive Programming: Built on top of Mutiny for non-blocking operations
- Annotation-Based Configuration: Simplifies adapter generation with
@PipelineStep
- Visual Design Canvas: Create and configure pipelines with the visual designer at https://app.pipelineframework.org
- gRPC and REST Support: Automatically generates adapters for both communication protocols
- Modular Design: Clear separation between runtime and deployment components
- Auto-Generation: Generates necessary infrastructure at build time
- Observability: Built-in metrics, tracing, and logging support
- Error Handling: Comprehensive error handling with DLQ support
- Concurrency Control: Virtual threads and backpressure management
For complete documentation including detailed reference implementation, YAML configuration schema, and Canvas designer guide, see:
- Framework Overview - Complete architecture overview
- Reference Implementation - Complete implementation guide
- YAML Configuration Schema - Complete YAML schema documentation
- Canvas Designer Guide - Complete Canvas usage guide
- Introduction: Overview of the framework and its capabilities
- Getting Started: Setting up the framework in your project
- Creating Pipeline Steps: Building your first pipeline steps
- Application Structure: Structuring pipeline applications
- Backend Services: Creating backend services that implement pipeline steps
- Orchestrator Services: Building orchestrator services that coordinate pipelines
- Configuration: Configuration options and best practices
- Error Handling: Managing errors and dead letter queues
- Observability: Monitoring and observing pipeline applications
- Best Practices: Recommended practices for pipeline development
- Local Steps: Creating pipeline steps that run locally within the orchestrator
- Architecture: Core concepts and architectural patterns
- Annotations: Detailed annotation reference
- Pipeline Compilation: How the annotation processor works
- Common Module Structure: Shared components structure
- Dependency Management: Managing dependencies in pipeline applications
To run the documentation site locally:
cd docs
npm install
npm run dev
The documentation site will be available at http://localhost:5173
.
If you find issues with the documentation or want to contribute improvements:
- Fork the repository
- Make your changes
- Submit a pull request
All contributions are welcome!
The site will be available at http://localhost:5173
To build the static site:
cd docs
npm run build
The built site will be in docs/.vitepress/dist
This documentation site supports Mermaid diagrams for visualizing workflows and architectures. The site uses the vitepress-plugin-mermaid
plugin which enables GitHub-style Mermaid syntax:
```mermaid
graph TD
A[Input] --> B[Process]
B --> C[Output]
```
Note: Using Mermaid diagrams significantly increases the bundle size (currently ~4.8MB vs 1.5MB without Mermaid) as the plugin includes many different diagram types and their dependencies in the bundle. This is a trade-off between rich visualization capabilities and site performance.
- A Cloudflare account
- The project repository connected to Cloudflare Pages
When setting up the project in Cloudflare Pages, use the following Vitepress configuration:
- Build command:
npm run build
- Build output directory:
.vitepress/dist
- Root directory:
/
,docs
The documentation site now includes:
- Search Functionality: Users can search across all documentation pages using the search bar in the top navigation
- Multi-Version Support: Documentation is available for multiple versions of the The Pipeline Framework:
- v0.9.0 (current)
- v0.8.0
- v0.7.0
- Mermaid Diagram Support: Rich diagrams for visualizing workflows (with increased bundle size)
The VitePress configuration includes ignoreDeadLinks: true
to prevent build failures due to links that are valid in the context of the full project but not within the documentation site. This is necessary because:
- The documentation site only covers The Pipeline Framework, not the entire project
- Many markdown files in the project contain links that are valid in the context of the full repository but aren't relevant to the documentation site
- There are localhost links in various README files that can't be resolved during the build process
This is a common configuration for documentation sites that are part of larger projects.
If you prefer to deploy manually, you can use Wrangler:
-
Install Wrangler:
npm install -g wrangler
-
Build the documentation:
cd docs && npm run build
-
Deploy to Cloudflare Pages:
wrangler pages deploy docs/.vitepress/dist --project-name=your-project-name
No special environment variables are required for the basic setup.
After deployment, you can configure a custom domain through the Cloudflare dashboard.