<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: GDPR/CCPA Compliance Delete for PII data in Data Governance</title>
    <link>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/165481#M2953</link>
    <description>&lt;P&gt;For GDPR/CCPA deletion requests involving PII, I think the key is having a clearly defined process that identifies all locations where the user’s data may exist, including primary records, backups, logs, integrations, and derived data.&lt;/P&gt;&lt;P&gt;It’s also important to distinguish between data that must be deleted and information that may need to be retained for a legitimate legal or operational requirement. Keeping an audit trail of the deletion request without retaining unnecessary PII can help demonstrate that the request was handled appropriately.&lt;/P&gt;&lt;P&gt;Automating the workflow where possible could reduce mistakes, but I’d still include validation and access controls before permanently deleting data. Clear retention policies and documented deletion procedures can make compliance much easier to manage.&lt;/P&gt;&lt;P&gt;For a quick break after working through privacy requirements, &lt;A href="http://learntofly2.io/" target="_blank"&gt;learntofly2.io&lt;/A&gt; can be a simple browser option.&lt;/P&gt;</description>
    <pubDate>Wed, 12 Aug 2026 11:55:47 GMT</pubDate>
    <dc:creator>WilliamCarterr</dc:creator>
    <dc:date>2026-08-12T11:55:47Z</dc:date>
    <item>
      <title>GDPR/CCPA Compliance Delete for PII data</title>
      <link>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152085#M2804</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am currently designing a PII governance framework to meet CCPA compliance requirements on Databricks. I understand that Databricks provides mechanisms such as &lt;STRONG&gt;VACUUM&lt;/STRONG&gt; and &lt;STRONG&gt;Deletion Vectors combined with REORG … APPLY (PURGE)&lt;/STRONG&gt; to permanently remove data. With a well‑designed deletion workflow across the Lakeflow / medallion architecture, end‑to‑end PII deletion can be achieved.&lt;/P&gt;&lt;P&gt;However, &lt;STRONG&gt;I would like to understand whether Databricks offers any native feature, service, or managed capability&lt;/STRONG&gt; that can reduce the operational overhead of implementing and maintaining this workflow, and help centrally orchestrate and enforce PII deletions across the entire lakehouse, rather than relying primarily on custom pipelines and control tables.&lt;/P&gt;&lt;P&gt;Thanks in advance and really appreciate your response.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 01:43:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152085#M2804</guid>
      <dc:creator>abhijit007</dc:creator>
      <dc:date>2026-03-26T01:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: GDPR/CCPA Compliance Delete for PII data</title>
      <link>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152106#M2805</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/97456"&gt;@abhijit007&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;No, Databricks still does NOT provide a native, centralized PII deletion orchestration service across the lakehouse. Though as you mentioned right, it's achievable through custom pipelines and control tables.&lt;BR /&gt;Check this -&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/security/privacy/gdpr-delta?utm_source=chatgpt.com" target="_blank"&gt;Prepare your data for GDPR compliance | Databricks on AWS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 08:20:43 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152106#M2805</guid>
      <dc:creator>Sumit_7</dc:creator>
      <dc:date>2026-03-26T08:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: GDPR/CCPA Compliance Delete for PII data</title>
      <link>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152121#M2806</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/97456"&gt;@abhijit007&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;A new Data Classification feature (currently in Public Preview), allows to automatically classify and tag sensitive data in your catalog. It goes through few steps:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;AI-driven engine scans Unity Catalog tables and detects PII data and assigns classification tags;&lt;/LI&gt;
&lt;LI&gt;Results of classification are stored in a&amp;nbsp;&lt;STRONG&gt;system table&lt;/STRONG&gt; &lt;CODE class="p8i6j0f"&gt;system.data_classification.results&lt;/CODE&gt;;&lt;/LI&gt;
&lt;LI&gt;You can leverage ABAC policies using those tags to mask/filter PII;&lt;/LI&gt;
&lt;LI&gt;Leverage the system table to automatically remove GDPR data.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Check for more details:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://docs.databricks.com/aws/en/data-governance/unity-catalog/data-classification" target="_blank" rel="noopener"&gt;Data classification documentation&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://docs.databricks.com/aws/en/data-governance/unity-catalog/data-classification#gdpr-discovery-and-deletion" target="_blank" rel="noopener"&gt;GDPR discovery and deletion notebook example&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 09:13:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152121#M2806</guid>
      <dc:creator>aleksandra_ch</dc:creator>
      <dc:date>2026-03-26T09:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: GDPR/CCPA Compliance Delete for PII data</title>
      <link>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152251#M2807</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/175319"&gt;@Sumit_7&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for the details. It's helpful.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2026 08:03:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152251#M2807</guid>
      <dc:creator>abhijit007</dc:creator>
      <dc:date>2026-03-27T08:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: GDPR/CCPA Compliance Delete for PII data</title>
      <link>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152252#M2808</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/102072"&gt;@aleksandra_ch&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks .. The notebook reference is helpful.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2026 08:05:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/152252#M2808</guid>
      <dc:creator>abhijit007</dc:creator>
      <dc:date>2026-03-27T08:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: GDPR/CCPA Compliance Delete for PII data</title>
      <link>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/165452#M2952</link>
      <description>&lt;DIV class=""&gt;Hi there,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;I spent the last while building a metadata-driven GDPR retention and right-to-erasure framework on Databricks Unity Catalog.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;The core decision:&lt;/STRONG&gt; policy lives in a small set of governance tables (&lt;STRONG&gt;what's PII, retention rules, active legal holds, erasure requests&lt;/STRONG&gt;), and a job engine just walks them. Adding a new table to the framework means inserting registry rows, not writing new code.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;For base retention we adopted the new Auto-TTL feature, layered with a hold-aware override so litigation holds or open erasure requests can gate pure age-based expiry. RTBF requests hit redaction before physical purge, so we have a defensible "stopped processing this data on date X" answer well before storage cleanup runs.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Structure inspired by Snowflake-Labs' sfguide-data-retention-and-purge (Apache 2.0), adapted for Unity Catalog with automatic PII discovery and Auto-TTL added.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Still open: propagating an erasure request across systems where the same person shows up under different source-system keys. The framework assumes one entity, one key today. If you've solved that cleanly, I'd like to hear how.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Happy GDPRing!&lt;/DIV&gt;</description>
      <pubDate>Wed, 12 Aug 2026 09:56:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/165452#M2952</guid>
      <dc:creator>Armanillo_RoK</dc:creator>
      <dc:date>2026-08-12T09:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: GDPR/CCPA Compliance Delete for PII data</title>
      <link>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/165481#M2953</link>
      <description>&lt;P&gt;For GDPR/CCPA deletion requests involving PII, I think the key is having a clearly defined process that identifies all locations where the user’s data may exist, including primary records, backups, logs, integrations, and derived data.&lt;/P&gt;&lt;P&gt;It’s also important to distinguish between data that must be deleted and information that may need to be retained for a legitimate legal or operational requirement. Keeping an audit trail of the deletion request without retaining unnecessary PII can help demonstrate that the request was handled appropriately.&lt;/P&gt;&lt;P&gt;Automating the workflow where possible could reduce mistakes, but I’d still include validation and access controls before permanently deleting data. Clear retention policies and documented deletion procedures can make compliance much easier to manage.&lt;/P&gt;&lt;P&gt;For a quick break after working through privacy requirements, &lt;A href="http://learntofly2.io/" target="_blank"&gt;learntofly2.io&lt;/A&gt; can be a simple browser option.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2026 11:55:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/gdpr-ccpa-compliance-delete-for-pii-data/m-p/165481#M2953</guid>
      <dc:creator>WilliamCarterr</dc:creator>
      <dc:date>2026-08-12T11:55:47Z</dc:date>
    </item>
  </channel>
</rss>

