# fluxpipe **Repository Path**: xiaoyis/fluxpipe ## Basic Information - **Project Name**: fluxpipe - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-07-14 - **Last Updated**: 2026-07-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FluxPipe Declarative data pipeline engine — greenfield implementation (JDK 17). ## Documentation - 新人培训使用教程:`docs/FluxPipe_New_User_Tutorial.md` - 完整项目介绍与使用手册:`docs/FluxPipe_Complete_Manual.md` - 行业算子使用说明:`docs/Industry_Operators_Usage.md` - 全量能力清单:`docs/full-capability-catalog.md` - 功能差距与待办:`docs/FeatureGapAnalysis.md` - Pipeline 样例索引:`examples/templates/README.md` ## Quick Start Requires JDK 17 + Maven 3.9.5. ### Production Package ```bash bin/package.sh tar -xzf target/fluxpipe-0.1.0-SNAPSHOT.tar.gz -C /opt cd /opt/fluxpipe-0.1.0-SNAPSHOT export FLUXPIPE_JAVA_HOME=/path/to/jdk-17 bin/fluxpipe.sh list-operators bin/fluxpipe.sh -c examples/templates/01-file-line.yaml validate bin/start.sh examples/templates/01-file-line.yaml bin/status.sh bin/stop.sh ``` The distribution is separated for production upgrades: ```text fluxpipe-0.1.0-SNAPSHOT/ bin/ startup, stop, status and packaging scripts config/ logback and runtime config lib/ engine and third-party runtime dependencies plugins/ operator plugin jars, add/remove then restart to reload logs/ runtime logs run/ pid files examples/ YAML templates ```