How to configure Delta Lake on Azure as a destination in Mage to write data to a Delta table using ABFS.
Key | Description | Example Value | Required |
---|---|---|---|
account_name | Your Azure Storage account name. This is the name of the account that hosts your Delta table. | myazurestorage | ✅ |
access_key | The access key for your Azure Storage account. Used to authenticate writes to your Delta table. | ABC123...XYZ | ✅ |
table_uri | URI for the Delta table. Must follow the abfs://<container>/<path> format. For more options, refer to the delta-rs docs. | abfs://my-container/delta/my-table | ✅ |
mode | Write mode. - append : Adds rows to the table. Errors if schema changes.- overwrite : Replaces all existing rows and recreates the table. | append (default) or overwrite | ✅ |
overwrite
mode, ensure downstream systems tolerate table recreation.