Reputation: 987
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.
Upvotes: 2
Views: 1055
Reputation: 31
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.
Upvotes: 3