Language: 中文 | English
Release date: 2026-07-08
v2.2.0 packages the project for open-source review: clearer English positioning, public demo assets, example SQL, example lineage output, and maintenance documents that make contribution, security, and roadmap expectations explicit.
The demo shows the core workflow:
- Enter a target table and field.
- Query upstream/downstream lineage.
- Review the generated lineage graph with layer grouping, path edges, and node metadata.
- Use the result as governance evidence for impact analysis and audit review.
git clone git@github.com:NickyLam/DATA_RELY_ANALYSIS_PLATFORM.git
cd DATA_RELY_ANALYSIS_PLATFORM
python3.11 -m venv .venv
source .venv/bin/activate
python3.11 -m pip install -r requirements.txt
python3.11 run_app.pyOpen:
- Frontend:
http://localhost:8899/static/index.html - API docs:
http://localhost:8899/docs
Force a clean parse when refreshing local data:
python3.11 run_app.py --reparseCREATE TABLE ICL.CUSTOMER_DAILY_SNAPSHOT AS
SELECT
c.CUST_ID,
c.CUST_NAME,
a.ACCT_BALANCE,
CASE WHEN a.ACCT_BALANCE > 100000 THEN 'VIP' ELSE 'STANDARD' END AS CUSTOMER_TIER
FROM IML.CUSTOMER_PROFILE c
LEFT JOIN IOL.ACCOUNT_BALANCE a
ON c.CUST_ID = a.CUST_ID;Full example: docs/examples/oracle_warehouse_lineage.sql
curl -X POST http://localhost:8899/api/lineage/query \
-H 'Content-Type: application/json' \
-d '{
"target_table": "ICL.CUSTOMER_DAILY_SNAPSHOT",
"target_field": "CUSTOMER_TIER",
"direction": "upstream"
}'{
"target": {
"table": "ICL.CUSTOMER_DAILY_SNAPSHOT",
"field": "CUSTOMER_TIER"
},
"direction": "upstream",
"summary": {
"node_count": 4,
"edge_count": 3,
"max_depth": 2
},
"nodes": [
{
"id": "ICL.CUSTOMER_DAILY_SNAPSHOT.CUSTOMER_TIER",
"table": "ICL.CUSTOMER_DAILY_SNAPSHOT",
"field": "CUSTOMER_TIER",
"layer": "ICL"
},
{
"id": "IOL.ACCOUNT_BALANCE.ACCT_BALANCE",
"table": "IOL.ACCOUNT_BALANCE",
"field": "ACCT_BALANCE",
"layer": "IOL"
}
],
"edges": [
{
"source": "IOL.ACCOUNT_BALANCE.ACCT_BALANCE",
"target": "ICL.CUSTOMER_DAILY_SNAPSHOT.CUSTOMER_TIER",
"transform": "CASE WHEN ACCT_BALANCE > 100000 THEN 'VIP' ELSE 'STANDARD' END"
}
]
}Machine-readable sample: docs/examples/lineage_query_output.json
- English README summary and reviewer-oriented quick explanation.
- Release notes with install commands, example SQL, output example, screenshot, and GIF.
CONTRIBUTING.md,SECURITY.md,ROADMAP.md, and GitHub issue templates.- Public demo assets in
docs/assets/.
- Field lineage is preserved through
_exexchange-table workflows. - Warehouse layer detection covers enterprise data warehouse layers such as SRC, MSL, ITL, IOL, ICL, IML, IDL, IEL, and DQC.
- Frontend graph visualization exposes layer color, path, and node detail context for quick review.
Recommended pre-release checks:
python3.11 -m pytest tests/
ruff check app/ core/ tests/
mypy app/ core/Run this only after reviewing the current working tree and tag target:
gh release create v2.2.0 \
--title "v2.2.0 - Open-source data lineage analyzer for Oracle and enterprise warehouse SQL" \
--notes-file docs/releases/v2.2.0.md \
docs/assets/demo-lineage-graph.png \
docs/assets/demo-lineage-flow.gif
