v0.7.0
版本发布时间: 2020-06-19 05:22:39
delta-io/delta最新发布版本:v3.2.1rc1(2024-09-05 00:48:36)
We are excited to announce the release of Delta Lake 0.7.0 on Apache Spark 3.0. This is the first release on Spark 3.x and adds support for metastore-defined tables and SQL DDLs. The key features in this release are as follows.
-
Support for defining tables in the Hive metastore (#85) - You can now define Delta tables in the Hive metastore and use the table name in all SQL operations. Specifically, we have added support for:
- SQL DDLs to create tables, insert into tables, explicitly alter the schema of the tables, etc. See the Scala and Python examples for details.
-
DataFrame.saveAsTable(tableName)
andDataFrameWriterV2
APIs (#307). -
DeltaTable.forName(tableName)
API to create instances ofio.delta.tables.DeltaTable
(#412).
This integration uses Catalog APIs introduced in Spark 3.0. You must enable the Delta Catalog by setting additional configurations when starting your SparkSession. See the documentation for details.
-
Support for SQL Delete, Update and Merge - With Spark 3.0, you can now use SQL DML operations
DELETE
,UPDATE
andMERGE
. See the documentation for details. -
Support for automatic and incremental Presto/Athena manifest generation (#453) - You can now use
ALTER TABLE SET TBLPROPERTIES
to enable automatic regeneration of the Presto/Athena manifest files on every operation on a Delta table. This regeneration is incremental, that is, manifest files are updated for only the partitions that have been updated by the operation. See the documentation for details. -
Support for controlling the retention of the table history - You can now use
ALTER TABLE SET TBLPROPERTIES
to configure how long the table history and delete files are maintained in Delta tables. See the documentation for details. -
Support for adding user-defined metadata in Delta table commits - You can now add user-defined metadata as strings in commits made to a Delta table by any operation. For
DataFrame.write
andDataFrame.writeStream
operations, you can set the optionuserMetadata
. For other operations, you can set the SparkSession configurationspark.databricks.delta.commitInfo.userMetadata
. See the documentation for details. -
Support Azure Data Lake Storage Gen2 (#288) - Spark 3.0 has support for Hadoop 3.2 libraries which enables support for Azure Data Lake Storage Gen2. See the documentation for details on how to configure Delta Lake with the correct versions of Spark and Hadoop libraries for Azure storage systems.
-
Improved support for streaming one-time triggers - With Spark 3.0, we now ensure that one-time trigger (also known as
Trigger.Once
) processes all outstanding data in a Delta table in a single micro-batch even if rate limits are set with theDataStreamReader
optionmaxFilesPerTrigger
.
Due to the significant internal changes, workloads on previous versions of Delta using the DeltaTable
programmatic APIs may require additional changes to migrate to 0.7.0. See the Migration Guide for details.
Credits Alan Jin, Alex Ott, Burak Yavuz, Jose Torres, Pranav Anand, QP Hou, Rahul Mahadev, Rob Kelly, Shixiong Zhu, Subhash Burramsetty, Tathagata Das, Wesley Hoffman, Yin Huai, Youngbin Kim, Zach Schuermann, Eric Chang, Herman van Hovell, Mahmoud Mahdi