<?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: Why is my lineage extraction not showing up in the Unity Catalog in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/why-is-my-lineage-extraction-not-showing-up-in-the-unity-catalog/m-p/28882#M20647</link>
    <description>&lt;P&gt;We have the same problem from the beginning and Microsoft support is not able to bring solutions to this since mid-december (a case is open).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In beginning of december, we noticed no lineage data was showing up depsite GA and we decided to try the simple example from the official doc without any success either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We also tried many alternatives either ourself or asked by the support without sucess:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Run notebook as job&lt;/LI&gt;&lt;LI&gt;Grant select / all to users the whole catalog/schema&lt;/LI&gt;&lt;LI&gt;ommit/add the spark lineage flag option&lt;/LI&gt;&lt;LI&gt;create tables from scratch&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The cluster logs seems empty as well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tried in other workspaces, with others metastore without any sucess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Stephan Smit​ Are your workspace deployed in Azure as well ? IF yes, which region ? &lt;/P&gt;</description>
    <pubDate>Tue, 17 Jan 2023 12:44:15 GMT</pubDate>
    <dc:creator>L_Favre</dc:creator>
    <dc:date>2023-01-17T12:44:15Z</dc:date>
    <item>
      <title>Why is my lineage extraction not showing up in the Unity Catalog</title>
      <link>https://community.databricks.com/t5/data-engineering/why-is-my-lineage-extraction-not-showing-up-in-the-unity-catalog/m-p/28880#M20645</link>
      <description>&lt;P&gt;Im trying to get the lineage graph to work in Unity catalog, however nothing seems to appear even though I followed the docs. I did the following steps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Created a Unity metastore and attached the workspace to that metastore.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Created a Single user Spark 11.2 cluster within the linked workspace with the following option:&lt;/P&gt;&lt;P&gt;spark.databricks.dataLineage.enabled true&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Created a catalog &lt;I&gt;lineage_data&lt;/I&gt; and a schema within that called &lt;I&gt;lineagedemo &lt;/I&gt;managed by the Unity metastore.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Executed the following script with the previously created Spark Cluster (lineage demo: &lt;A href="https://docs.databricks.com/data-governance/unity-catalog/data-lineage.html" alt="https://docs.databricks.com/data-governance/unity-catalog/data-lineage.html" target="_blank"&gt;https://docs.databricks.com/data-governance/unity-catalog/data-lineage.html &lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CREATE TABLE IF NOT EXISTS
  lineage_data.lineagedemo.menu (
    recipe_id INT,
    app string,
    main string,
    dessert string
  );
&amp;nbsp;
INSERT INTO lineage_data.lineagedemo.menu
    (recipe_id, app, main, dessert)
VALUES
    (1,"Ceviche", "Tacos", "Flan"),
    (2,"Tomato Soup", "Souffle", "Cree Brulee"),
    (3,"Chips","Grilled Cheese","Cheesecake");
&amp;nbsp;
CREATE TABLE
  lineage_data.lineagedemo.dinner
AS SELECT
  recipe_id, concat(app," + ", main," + ",dessert)
AS
  full_menu
FROM
  lineage_data.lineagedemo.menu
&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Go to the data explorer and open the lineage tab for the table dinner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No lineage is visible.. What Am i doing wrong? Where can I find more logging regarding the lineage extraction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 12:02:39 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/why-is-my-lineage-extraction-not-showing-up-in-the-unity-catalog/m-p/28880#M20645</guid>
      <dc:creator>stephansmit</dc:creator>
      <dc:date>2022-10-06T12:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my lineage extraction not showing up in the Unity Catalog</title>
      <link>https://community.databricks.com/t5/data-engineering/why-is-my-lineage-extraction-not-showing-up-in-the-unity-catalog/m-p/28881#M20646</link>
      <description>&lt;P&gt;I can see the data inside the tables by querying them. So I do have privileges to the see the lineage.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 12:10:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/why-is-my-lineage-extraction-not-showing-up-in-the-unity-catalog/m-p/28881#M20646</guid>
      <dc:creator>stephansmit</dc:creator>
      <dc:date>2022-10-06T12:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my lineage extraction not showing up in the Unity Catalog</title>
      <link>https://community.databricks.com/t5/data-engineering/why-is-my-lineage-extraction-not-showing-up-in-the-unity-catalog/m-p/28882#M20647</link>
      <description>&lt;P&gt;We have the same problem from the beginning and Microsoft support is not able to bring solutions to this since mid-december (a case is open).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In beginning of december, we noticed no lineage data was showing up depsite GA and we decided to try the simple example from the official doc without any success either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We also tried many alternatives either ourself or asked by the support without sucess:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Run notebook as job&lt;/LI&gt;&lt;LI&gt;Grant select / all to users the whole catalog/schema&lt;/LI&gt;&lt;LI&gt;ommit/add the spark lineage flag option&lt;/LI&gt;&lt;LI&gt;create tables from scratch&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The cluster logs seems empty as well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tried in other workspaces, with others metastore without any sucess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Stephan Smit​ Are your workspace deployed in Azure as well ? IF yes, which region ? &lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 12:44:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/why-is-my-lineage-extraction-not-showing-up-in-the-unity-catalog/m-p/28882#M20647</guid>
      <dc:creator>L_Favre</dc:creator>
      <dc:date>2023-01-17T12:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why is my lineage extraction not showing up in the Unity Catalog</title>
      <link>https://community.databricks.com/t5/data-engineering/why-is-my-lineage-extraction-not-showing-up-in-the-unity-catalog/m-p/28883#M20648</link>
      <description>&lt;P&gt;@Stephan Smit​&amp;nbsp;We finally got a solution from level 3 support (Databricks support).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may check your firewall logs.&lt;/P&gt;&lt;P&gt;On our side, we had to open communication to "Event Hub endpoint".&lt;/P&gt;&lt;P&gt;The destination depends on your workspace region: &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/resources/supported-regions#control-plane-ip-addresses" alt="https://learn.microsoft.com/en-us/azure/databricks/resources/supported-regions#control-plane-ip-addresses" target="_blank"&gt;Azure Databricks regions - Azure Databricks | Microsoft Learn&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 12:29:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/why-is-my-lineage-extraction-not-showing-up-in-the-unity-catalog/m-p/28883#M20648</guid>
      <dc:creator>L_Favre</dc:creator>
      <dc:date>2023-01-27T12:29:31Z</dc:date>
    </item>
  </channel>
</rss>

