<?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: Data Lineage in Unity Catalog not Populating in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/53083#M29675</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A few thoughts:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Can you confirm that the cluster is running in either Access Mode "Assigned" or "Shared"&lt;/LI&gt;
&lt;LI&gt;You can confirm that UC is setup correctly using this guide: &lt;A href="https://docs.databricks.com/data-governance/unity-catalog/index.html" target="_blank"&gt;https://docs.databricks.com/data-governance/unity-catalog/index.html&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Consider doing a full refresh on the Catalog explorer page to help eliminate any strange browser caching behaviors&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;And if you are looking to enable column mapping mode, it can be added as a&amp;nbsp; `TBLPROPERTIES` to a table using:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;'delta.columnMapping.mode' = 'name'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;...or at a session, cluster level with: `&lt;SPAN&gt;spark.databricks.delta.properties.defaults.columnMapping.mode`.&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Nov 2023 04:16:50 GMT</pubDate>
    <dc:creator>brockb</dc:creator>
    <dc:date>2023-11-20T04:16:50Z</dc:date>
    <item>
      <title>Data Lineage in Unity Catalog not Populating</title>
      <link>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/50836#M28913</link>
      <description>&lt;P&gt;I have been trying to get the data lineage to populate with the simplest of queries on a unity enabled catalog with a unity enabled cluster.&amp;nbsp; I am essentially running the example provided with more data to see how it works with various aggregates downstream.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CREATE OR REPLACE TABLE 
unity_metastore.lineage_test.table1_standard (
  _id INT,
  food STRING,
  score DECIMAL,
  food_type STRING
);

INSERT INTO unity_metastore.lineage_test.table1_standard 
  (_id, food, score, food_type)
VALUES
  (1, 'pizza', 9.5, 'italian'),
  (2, 'tacos', 8.7, 'mexican'),
  (3, 'pasta', 7.5, 'italian'),
  (4, 'burrito', 9.0, 'mexican'),
  (5, 'burger', 4.5, 'american'),
  (6, 'sourkraut', 2.4, 'polish'),
  (7, 'fried rice', 6.0, 'chinese'),
  (8, 'hot pot', 9.0, 'chinese'),
  (9, 'mole', 8.7, 'mexican'),
  (10, 'dim sum', 7.0, 'chinese')
;

CREATE OR REPLACE TABLE 
unity_metastore.lineage_test.table2_standard
AS SELECT
  _id,
  food,
  score,
  food_type
FROM unity_metastore.lineage_test.table1_standard
WHERE score &amp;gt; 5
;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;However when I go to the lineage tab on the tables (which I have all privileges for the catalog and every schema/table underneath it) they are blank.&amp;nbsp; There is history being collected and data is showing up in them.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am running a cluster with&amp;nbsp; 13.3 LTS and the following runtime settings enabled&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;spark.databricks.dataLineage.enabled true &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;spark.databricks.delta.dataLineage.enabled true &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;spark.databricks.delta.columnMapping.mode true&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2023 20:17:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/50836#M28913</guid>
      <dc:creator>Ian_Neft</dc:creator>
      <dc:date>2023-11-10T20:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Data Lineage in Unity Catalog not Populating</title>
      <link>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/53083#M29675</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A few thoughts:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Can you confirm that the cluster is running in either Access Mode "Assigned" or "Shared"&lt;/LI&gt;
&lt;LI&gt;You can confirm that UC is setup correctly using this guide: &lt;A href="https://docs.databricks.com/data-governance/unity-catalog/index.html" target="_blank"&gt;https://docs.databricks.com/data-governance/unity-catalog/index.html&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Consider doing a full refresh on the Catalog explorer page to help eliminate any strange browser caching behaviors&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;And if you are looking to enable column mapping mode, it can be added as a&amp;nbsp; `TBLPROPERTIES` to a table using:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;'delta.columnMapping.mode' = 'name'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;...or at a session, cluster level with: `&lt;SPAN&gt;spark.databricks.delta.properties.defaults.columnMapping.mode`.&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2023 04:16:50 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/53083#M29675</guid>
      <dc:creator>brockb</dc:creator>
      <dc:date>2023-11-20T04:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Data Lineage in Unity Catalog not Populating</title>
      <link>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/62442#M31969</link>
      <description>&lt;P&gt;I have exactly the same issue, create the sample tables , everything seems fine but I can not see any data in lineage tab page in databricks .&lt;/P&gt;&lt;P&gt;can anybody say some other thing to help me, because that answer doesn't work for me&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 12:30:43 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/62442#M31969</guid>
      <dc:creator>davood_NL</dc:creator>
      <dc:date>2024-03-01T12:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Data Lineage in Unity Catalog not Populating</title>
      <link>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/83233#M36885</link>
      <description>&lt;P&gt;&lt;SPAN&gt;You might need to update your outbound firewall rules to allow for connectivity to the Amazon Kinesis / Event Hubs&amp;nbsp;endpoint.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.databricks.com/en/data-governance/unity-catalog/data-lineage.html#:~:text=To%20view%20lineage%20for%20a,Runtime%2013.3%20LTS%20or%20above" target="_blank"&gt;https://docs.databricks.com/en/data-governance/unity-catalog/data-lineage.html#:~:text=To%20view%20lineage%20for%20a,Runtime%2013.3%20LTS%20or%20above&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/data-governance/unity-catalog/data-lineage" target="_blank"&gt;https://learn.microsoft.com/en-us/azure/databricks/data-governance/unity-catalog/data-lineage&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2024 13:55:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/83233#M36885</guid>
      <dc:creator>AlexYu</dc:creator>
      <dc:date>2024-08-16T13:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Data Lineage in Unity Catalog not Populating</title>
      <link>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/111688#M43972</link>
      <description>&lt;P&gt;Cluster running in shared mode with Databricks runtime 15.4 LTS&lt;/P&gt;&lt;P&gt;UC setup as per Databricks guide. I can see system tables everything but data is not populating in the table_lineage table. EventHub Firewall 9093 port is also open.&lt;/P&gt;&lt;P&gt;Enabled runtime settings as well&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;spark.databricks.dataLineage.enabled true&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;spark.databricks.delta.dataLineage.enabled true&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;spark.databricks.delta.columnMapping.mode true&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;still no luck. Any other thing that can be done or checked. Quickhelp is appreciated&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2025 12:01:22 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-lineage-in-unity-catalog-not-populating/m-p/111688#M43972</guid>
      <dc:creator>pmahawar</dc:creator>
      <dc:date>2025-03-04T12:01:22Z</dc:date>
    </item>
  </channel>
</rss>

