
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2021 09:51 AM
When should I use one over the other? There seems to be an overlap of some functionality
Labels:
- Labels:
-
Delta
-
Delta Live Tables
-
Use
1 ACCEPTED SOLUTION
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2021 03:00 AM
Delta Live Tables are targeted towards building an ETL pipeline where several Delta tables are interconnected from a flow perspective and in a single notebook. Multi-task Jobs is more generic orchestration framework that allows you to execute various Notebooks in a flow
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2021 07:58 AM
Delta Live Tables provides and API for 'declarative data flow'. Instead of writing the code to manually read in data, apply transformations, and write it out, Delta Live tables instead asks you to declare the input source, the transformations, and the intended output source. The managed runtime will automatically optimize under the covers and perform the required reads, bookmarking, and compute logistics. It is very similar to how Terraform is declarative for building cloud infrastructure, whereas Delta Live Tables are declarative for data tables.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2021 03:00 AM
Delta Live Tables are targeted towards building an ETL pipeline where several Delta tables are interconnected from a flow perspective and in a single notebook. Multi-task Jobs is more generic orchestration framework that allows you to execute various Notebooks in a flow

