8000 Improve UI, combine run result info by ismailsimsek · Pull Request #73 · memiiso/opendbt · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Improve UI, combine run result info #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Apr 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ adapter and providing jinja context with further adapter/python methods.

# Features

- :white_check_mark: Includes superior dbt docs documentation UI, user-friendly data catalog, including row level
lineage
- :white_check_mark: Includes superior [dbt catalog UI](https://memiiso.github.io/opendbt), user-friendly data catalog,
including row level
lineage, [see it here](https://memiiso.github.io/opendbt)
- :white_check_mark: Integrates Python and DLT Jobs to dbt. Enables Extract&Load (EL) with dbt.
- :white_check_mark: Supports DBT Mesh setups. Supports running multiple projects which are using cross project ref
models.
Expand Down
10 changes: 10 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Opendbt Catalog

[See it in action](https://memiiso.github.io/opendbt)

Summary of the catalog files:

- [catalog.json](catalog.json): Generated by dbt
- [catalogl.json](catalogl.json): Generated by opendbt contains extended catalog information with column level lineage
- [manifest.json](manifest.json): Generated by dbt
- [run_info.json](run_info.json): Generated by opendbt, contains latest run information per object/model
185 changes: 185 additions & 0 deletions docs/catalog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
{
"metadata": {
"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json",
"dbt_version": "1.9.4",
"generated_at": "2025-04-22T09:16:44.346647Z",
"invocation_id": "742c6339-ca49-4d87-9aab-e8f90fb3ef7f",
"env": {}
},
"nodes": {
"model.dbtcore.my_core_table1": {
"metadata": {
"type": "BASE TABLE",
"schema": "core",
"name": "my_core_table1",
"database": "dev",
"comment": null,
"owner": null
},
"columns": {
"id": {
"type": "INTEGER",
"index": 1,
"name": "id",
"comment": null
},
"row_data": {
"type": "VARCHAR",
"index": 2,
"name": "row_data",
"comment": null
}
},
"stats": {
"has_stats": {
"id": "has_stats",
"label": "Has Stats?",
"value": false,
"include": false,
"description": "Indicates whether there are statistics for this table"
}
},
"unique_id": "model.dbtcore.my_core_table1"
},
"model.dbtcore.my_executedlt_model": {
"metadata": {
"type": "BASE TABLE",
"schema": "core",
"name": "my_executedlt_model",
"database": "dev",
"comment": null,
"owner": null
},
"columns": {
"event_tstamp": {
"type": "TIMESTAMP WITH TIME ZONE",
"index": 1,
"name": "event_tstamp",
"comment": null
},
"event_id": {
"type": "BIGINT",
"index": 2,
"name": "event_id",
"comment": null
},
"_dlt_load_id": {
"type": "VARCHAR",
"index": 3,
"name": "_dlt_load_id",
"comment": null
},
"_dlt_id": {
"type": "VARCHAR",
"index": 4,
"name": "_dlt_id",
"comment": null
},
"event_tstamp__v_text": {
"type": "VARCHAR",
"index": 5,
"name": "event_tstamp__v_text",
"comment": null
}
},
"stats": {
"has_stats": {
"id": "has_stats",
"label": "Has Stats?",
"value": false,
"include": false,
"description": "Indicates whether there are statistics for this table"
}
},
"unique_id": "model.dbtcore.my_executedlt_model"
},
"model.dbtcore.my_first_dbt_model": {
"metadata": {
"type": "BASE TABLE",
"schema": "core",
"name": "my_first_dbt_model",
"database": "dev",
"comment": null,
"owner": null
},
"columns": {
"id": {
"type": "INTEGER",
"index": 1,
"name": "id",
"comment": null
},
"data_value": {
"type": "VARCHAR",
"index": 2,
"name": "data_value",
"comment": null
},
"column_3": {
"type": "VARCHAR",
"index": 3,
"name": "column_3",
"comment": null
}
},
"stats": {
"has_stats": {
"id": "has_stats",
"label": "Has Stats?",
"value": false,
"include": false,
"description": "Indicates whether there are statistics for this table"
}
},
"unique_id": "model.dbtcore.my_first_dbt_model"
},
"model.dbtcore.my_second_dbt_model": {
"metadata": {
"type": "BASE TABLE",
"schema": "core",
"name": "my_second_dbt_model",
"database": "dev",
"comment": null,
"owner": null
},
"columns": {
"pk_id": {
"type": "INTEGER",
"index": 1,
"name": "pk_id",
"comment": null
},
"data_value1": {
"type": "VARCHAR",
"index": 2,
"name": "data_value1",
"comment": null
},
"data_value2": {
"type": "VARCHAR",
"index": 3,
"name": "data_value2",
"comment": null
},
"event_tstamp": {
"type": "TIMESTAMP WITH TIME ZONE",
"index": 4,
"name": "event_tstamp",
"comment": null
}
},
"stats": {
"has_stats": {
"id": "has_stats",
"label": "Has Stats?",
"value": false,
"include": false,
"description": "Indicates whether there are statistics for this table"
}
},
"unique_id": "model.dbtcore.my_second_dbt_model"
}
},
"sources": {},
"errors": null
}
Loading
0