- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2021 11:32 AM
Is it possible to access Delta tables outside of DBR (Databricks Runtime) ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2021 07:24 AM
https://docs.delta.io/latest/presto-integration.html
https://docs.delta.io/latest/redshift-spectrum-integration.html
and more are on the way!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2021 07:26 AM
Delta Lake is an independent open-source project ( under Linux Foundation ) and is based on an open format . This has led to the community building connectors for delta from multiple engines - not just spark.
Out side of DBR, Delta Lake could be used in your spark code by adding the dependencies as mentioned
here In addition to this, there are connectors for other engines like presto, athena, redshift spectrum etc.
Also, you could natively query your Delta Lake with Scala and Java (via the Delta Standalone Reader) and Python (via the Delta Rust API)