简体   繁体   中英

What are databricks spark delta tables? Does they also stores data for a specific session and how can I view these delta tables and their structure

What is the purpose of spark delta tables? Does they meant to store data permanently or only holds the processing data till the session lasts. How can I view them in spark cluster and what database they belongs to.

What is the purpose of spark delta tables?

The primary goal is to enable single table transnational writes in multicluster setups. This is achieved by keeping a transaction log (idea very similar to append-only tables in typical database systems).

Does they meant to store data permanently or only holds the processing data till the session lasts.

There are persistent, and by definition scoped across the sessions.

. How can I view them in spark cluster and what database

Same as any other table in Spark. There are not specific to any database, and written using delta format.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM