Forum Discussion
Brian_169
Jan 03, 2025Copper Contributor
Data archiving of delta table in Azure Databricks
Hi all, Currently I am researching on data archiving for delta table data on Azure platform as there is data retention policy within the company. I have studied the documentation from Databri...
Kidd_Ip
Jan 05, 2025MVP
Try below on configure Lifecycle Policy in Azure Storage
{
"rules": [
{
"enabled": true,
"name": "ArchiveOldData",
"type": "Lifecycle",
"definition": {
"actions": {
"tierToArchive": {
"daysAfterCreationGreaterThan": 1825,
"prefixMatch": ["test-container/sales"]
}
}
}
}
]
}