Skip to content

Commit c715a49

Browse files
Updated demo gifs in readme and docs
1 parent 15961f9 commit c715a49

File tree

6 files changed

+54
-37
lines changed

6 files changed

+54
-37
lines changed

README.md

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ In practice, a single generic pipeline reads the Dataflowspec and uses it to orc
5959
| Liquid cluster support | Bronze, Bronze Quarantine, Silver tables|
6060
| [DLT-META CLI](https://databrickslabs.github.io/dlt-meta/getting_started/dltmeta_cli/) | ```databricks labs dlt-meta onboard```, ```databricks labs dlt-meta deploy``` |
6161
| Bronze and Silver pipeline chaining | Deploy dlt-meta pipeline with ```layer=bronze_silver``` option using Direct publishing mode |
62-
| [create_sink](https://docs.databricks.com/aws/en/dlt-ref/dlt-python-ref-sink) API support |Supported formats:external ```delta table```, ```kafka```.Bronze, Silver layers|
62+
| [create_sink](https://docs.databricks.com/aws/en/dlt-ref/dlt-python-ref-sink) API support |Supported formats:```external delta table , kafka``` Bronze, Silver layers|
6363
| [Databricks Asset Bundles](https://docs.databricks.com/aws/en/dev-tools/bundles/) | Supported
6464
| [DLT-META UI](https://github.com/databrickslabs/dlt-meta/tree/main/lakehouse_app#dlt-meta-lakehouse-app-setup) | Uses Databricks Lakehouse DLT-META App
6565

@@ -138,38 +138,37 @@ If you want to run existing demo files please follow these steps before running
138138
dlt_meta_home=$(pwd)
139139
export PYTHONPATH=$dlt_meta_home
140140
```
141+
![onboardingDLTMeta.gif](docs/static/images/onboardingDLTMeta.gif)
142+
143+
141144
7. Run onboarding command:
142145
```commandline
143146
databricks labs dlt-meta onboard
144147
```
145-
![onboardingDLTMeta.gif](docs/static/images/onboardingDLTMeta.gif)
146-
147148
148-
Above commands will prompt you to provide onboarding details. If you have cloned dlt-meta git repo then accept defaults which will launch config from demo folder.
149+
The command will prompt you to provide onboarding details. If you have cloned the dlt-meta repository, you can accept the default values which will use the configuration from the demo folder.
149150
![onboardingDLTMeta_2.gif](docs/static/images/onboardingDLTMeta_2.gif)
150151
151-
152-
- Goto your databricks workspace and located onboarding job under: Workflow->Jobs runs
152+
Above onboard cli command will:
153+
1. Push code and data to your Databricks workspace
154+
2. Create an onboarding job
155+
3. Display a success message: ```Job created successfully. job_id={job_id}, url=https://{databricks workspace url}/jobs/{job_id}```
156+
4. Job URL will automatically open in your default browser.
153157
154158
### depoly using dlt-meta CLI:
155159
156-
- Once onboarding jobs is finished deploy `bronze` and `silver` DLT using below command
160+
- Once onboarding jobs is finished deploy Lakeflow Declarative Pipeline using below command
157161
- ```commandline
158162
databricks labs dlt-meta deploy
159163
```
160-
- - Above command will prompt you to provide dlt details. Please provide respective details for schema which you provided in above steps
161-
- - Bronze DLT
162-
163-
![deployingDLTMeta_bronze.gif](docs/static/images/deployingDLTMeta_bronze.gif)
164+
The command will prompt you to provide pipeline configuration details.
164165

166+
![deployingDLTMeta_bronze_silver.gif](docs/static/images/deployingDLTMeta_bronze_silver.gif)
165167

166-
- Silver DLT
167-
- - ```commandline
168-
databricks labs dlt-meta deploy
169-
```
170-
- - Above command will prompt you to provide dlt details. Please provide respective details for schema which you provided in above steps
171-
172-
![deployingDLTMeta_silver.gif](docs/static/images/deployingDLTMeta_silver.gif)
168+
Above deploy cli command will:
169+
1. Deploy Lakeflow Declarative pipeline with dlt-meta configuration like ```layer```, ```group```, ```dataflowSpec table details``` etc to your databricks workspace
170+
2. Display message: ```dlt-meta pipeline={pipeline_id} created and launched with update_id={pipeline_update_id}, url=https://{databricks workspace url}/#joblist/pipelines/{pipeline_id}```
171+
3. Pipline URL will automatically open in your defaul browser.
173172

174173

175174
## More questions

docs/content/getting_started/dltmeta_cli.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -65,32 +65,32 @@ draft: false
6565
```shell
6666
databricks labs dlt-meta onboard
6767
```
68-
- Above command will prompt you to provide onboarding details.
69-
- If you have cloned dlt-meta git repo then accepting defaults will launch config from [demo/conf](https://github.com/databrickslabs/dlt-meta/tree/main/demo/conf) folder.
70-
- You can create onboarding files e.g onboarding.json, data quality and silver transformations and put it in conf folder as show in [demo/conf](https://github.com/databrickslabs/dlt-meta/tree/main/demo/conf)
68+
- The command will prompt you to provide onboarding details. If you have cloned the dlt-meta repository, you can accept the default values which will use the configuration from the demo folder.
7169

7270
![onboardingDLTMeta_2.gif](/images/onboardingDLTMeta_2.gif)
7371

74-
![onboardingDLTMeta.gif](/images/onboardingDLTMeta.gif)
72+
- Above onboard cli command will:
73+
1. Push code and data to your Databricks workspace
74+
2. Create an onboarding job
75+
3. Display a success message: ```Job created successfully. job_id={job_id}, url=https://{databricks workspace url}/jobs/{job_id}```
76+
4. Job URL will automatically open in your default browser.
77+
7578

7679
- Once onboarding jobs is finished deploy `bronze` and `silver` DLT using below command
7780

78-
## Dataflow DLT Pipeline:
81+
## DLT-META Lakeflow Declarative Pipeline:
7982

80-
#### Deploy Bronze DLT
83+
#### Deploy ```Bronze``` and ```Silver``` layer into single pipeline
8184
```shell
8285
databricks labs dlt-meta deploy
8386
```
84-
- Above command will prompt you to provide dlt details. Please provide respective details for schema which you provided in above steps
87+
- Above command will prompt you to provide pipeline details. Please provide respective details for schema which you provided in above steps
8588

86-
![deployingDLTMeta_bronze.gif](/images/deployingDLTMeta_bronze.gif)
89+
![deployingDLTMeta_bronze_silver.gif](/images/deployingDLTMeta_bronze_silver.gif)
8790

88-
#### Deploy Silver DLT
89-
```shell
90-
databricks labs dlt-meta deploy
91-
```
92-
- - Above command will prompt you to provide dlt details. Please provide respective details for schema which you provided in above steps
91+
- Above deploy cli command will:
92+
1. Deploy Lakeflow Declarative pipeline with dlt-meta configuration like ```layer```, ```group```, ```dataflowSpec table details``` etc to your databricks workspace
93+
2. Display message: ```dlt-meta pipeline={pipeline_id} created and launched with update_id={pipeline_update_id}, url=https://{databricks workspace url}/#joblist/pipelines/{pipeline_id}```
94+
3. Pipline URL will automatically open in your defaul browser.
9395

94-
![deployingDLTMeta_silver.gif](/images/deployingDLTMeta_silver.gif)
9596

96-
- Goto your databricks workspace and located onboarding job under: Workflow->Jobs runs

docs/content/releases/_index.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,27 @@ date: 2021-08-04T14:50:11-04:00
44
weight: 80
55
draft: false
66
---
7+
# v0.0.10
8+
## Enhancements
9+
- Added apply_changes_from_snapshot support in silver layer [PR](https://github.com/databrickslabs/dlt-meta/pull/187)
10+
- Added UI using databricks lakehouse app for onboarding/deploy commands [PR](https://github.com/databrickslabs/dlt-meta/pull/168)
11+
- Added support for non-Delta as sinks(delta, kafka) [PR](https://github.com/databrickslabs/dlt-meta/pull/157)
12+
- Added quarantine support in silver layer for data quality rules [PR](https://github.com/databrickslabs/dlt-meta/pull/191)
13+
- Added support for table comments, column comments, and cluster_by [PR](https://github.com/databrickslabs/dlt-meta/pull/91)
14+
- Added catalog support for sourceDetails and targetDetails [PR](https://github.com/databrickslabs/dlt-meta/issues/173)
15+
- Added DBDemos for dlt-meta [PR](https://github.com/databrickslabs/dlt-meta/issues/183)
16+
- Added YAML support for onboarding [PR](https://github.com/databrickslabs/dlt-meta/issues/184)
17+
- Fixed issue cluster by not working with bronze append only table [PR](https://github.com/databrickslabs/dlt-meta/issues/197)
18+
- Fixed issue view name containing period when using DPM [PR](https://github.com/databrickslabs/dlt-meta/issues/169)
19+
- Fixed issue CLI onboarding overwrite option always set to True [PR](https://github.com/databrickslabs/dlt-meta/issues/163)
20+
- Fixed issue Silver DLT not creating based on passed database [PR](https://github.com/databrickslabs/dlt-meta/issues/160)
21+
- Fixed issue PyPI download stats display [PR](https://github.com/databrickslabs/dlt-meta/issues/200)
22+
- Fixed issue Silver Data Quality not working [PR](https://github.com/databrickslabs/dlt-meta/issues/156)
23+
- Fixed issue Removed DPM flag check inside dataflowpipeline [PR](https://github.com/databrickslabs/dlt-meta/issues/177)
24+
- Fixed issue Updated dlt-meta demos into Delta Live Tables Notebook github [PR](https://github.com/databrickslabs/dlt-meta/issues/158)
725

826
# v0.0.9
9-
## Enhancement
27+
## Enhancements
1028
- Added apply_changes_from_snapshot api support in bronze layer: [PR](https://github.com/databrickslabs/dlt-meta/pull/124)
1129
- Added dlt append_flow api support for silver layer: [PR](https://github.com/databrickslabs/dlt-meta/pull/63)
1230
- Added support for file metadata columns for autoloader: [PR](https://github.com/databrickslabs/dlt-meta/pull/56)
@@ -27,7 +45,7 @@ draft: false
2745
- Fixed issue Onboarding with multiple partition columns errors out: [PR](https://github.com/databrickslabs/dlt-meta/pull/134)
2846

2947
# v0.0.8
30-
## Enhancement
48+
## Enhancements
3149
- Added dlt append_flow api support: [PR](https://github.com/databrickslabs/dlt-meta/pull/58)
3250
- Added dlt append_flow api support for silver layer: [PR](https://github.com/databrickslabs/dlt-meta/pull/63)
3351
- Added support for file metadata columns for autoloader: [PR](https://github.com/databrickslabs/dlt-meta/pull/56)
@@ -45,14 +63,14 @@ draft: false
4563

4664

4765
# v0.0.7
48-
## Enhancement
66+
## Enhancements
4967
### 1. Mismatched Keys: Update read_dlt_delta() with key "source_database" instead of "database" [#33](https://github.com/databrickslabs/dlt-meta/pull/33)
5068
### 2. Create dlt-meta cli documentation #45
5169
- Readme and docs to include above features
5270

5371

5472
# v0.0.6
55-
## Enhancement
73+
## Enhancements
5674
### 1. Migrate to create_streaming_table api from create_streaming_live_table [#37](https://github.com/databrickslabs/dlt-meta/pull/39)
5775
#### Updates
5876
- Readme and docs to include above features
259 KB
Loading
1 MB
Loading
329 KB
Loading

0 commit comments

Comments
 (0)