<?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: Share dashboard with external customers in Get Started Discussions</title>
    <link>https://community.databricks.com/t5/get-started-discussions/share-dashboard-with-external-customers/m-p/150076#M11500</link>
    <description>&lt;P class="p8i6j01 paragraph"&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/218463"&gt;@RJ1&lt;/a&gt; -&amp;nbsp; Welcome to Databricks Platform!&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;Great question. This is a very common requirement.&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;At a high level, you’ll want to separate the concerns:&lt;/P&gt;
&lt;OL class="p8i6j02"&gt;
&lt;LI class="p8i6j0a"&gt;How users authenticate and are identified (who is the user / which customer are they from?)&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;How data is filtered so they only see their own rows (row-level security/ABAC)&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;How the dashboard is actually exposed (inside Databricks vs embedded in your own app)&lt;/LI&gt;
&lt;/OL&gt;
&lt;P class="_9k2iva0 p8i6j0c _1ibi0s314 heading3 _9k2iva1"&gt;&lt;STRONG&gt;Identifying which customer a user belongs to:&amp;nbsp;&lt;/STRONG&gt;You said you don’t always know in advance which specific user from a customer will log in. In practice, you still need some way to map a user to a customer. That could either be based on email domain mapping or SCIM/identiity providers such as Entra, Okta where groups are managed and you sync those into Databricks/Unity Catalog.&amp;nbsp;&lt;SPAN&gt;Without such mapping, Databricks (or any platform) can’t reliably enforce Customer 1 vs Customer 2 isolation.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="_9k2iva0 p8i6j0c _1ibi0s314 heading3 _9k2iva1"&gt;&lt;STRONG&gt;Enforcing row-level security:&lt;/STRONG&gt;&amp;nbsp;Once you can identify a user’s customer, you can enforce row-level security at the data layer so dashboards work as expected. You can use&amp;nbsp;Unity Catalog with attribute-based access control (ABAC) and row filters on the base tables, or centralise row-level security&amp;nbsp;at the table or view level, which means any downstream dashboards, SQL queries, or notebooks automatically respect that isolation without custom logic per dashboard.&amp;nbsp;This is generally the most scalable and "Databricks-native" approach.&lt;/P&gt;
&lt;P class="_9k2iva0 p8i6j0c _1ibi0s314 heading3 _9k2iva1"&gt;&lt;STRONG&gt;Options for sharing dashboards:&lt;/STRONG&gt; A few patterns you can consider&amp;nbsp;depending on whether your external users have Databricks accounts:&lt;/P&gt;
&lt;P class="p8i6j01 paragraph lia-indent-padding-left-30px"&gt;a) If your external users have Databricks accounts, you can create then as users in your Databricks account and assign them to the right groups with appropriate entitlements. You can then use ABAC or row filters so that the dashboards are filtered to their customer based on that. You can share Databricks SQL dashboards with those users/groups directly...&lt;/P&gt;
&lt;P class="p8i6j01 paragraph lia-indent-padding-left-30px"&gt;b) If your external users &lt;FONT color="#993300"&gt;&lt;STRONG&gt;don't&lt;/STRONG&gt;&lt;/FONT&gt; have Databricks accounts,&amp;nbsp;you can typically introduce an application layer where you can b&lt;SPAN&gt;uild a &lt;/SPAN&gt;lightweight web app/portal&lt;SPAN&gt; (e.g. using your preferred framework) and&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Use &lt;/SPAN&gt;embedded Databricks dashboards. You can authenticate users into apps and determine which customer they belong to and show the bdashboards they are entitled to see.&amp;nbsp;&lt;SPAN&gt;This gives you more control over branding, multi-tenancy, throttling, and you’re not giving direct Databricks UI access to every external user.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p8i6j01 paragraph lia-indent-padding-left-30px"&gt;c) Delta Sharing&amp;nbsp;&lt;SPAN&gt;is best when you want to &lt;/SPAN&gt;share data&lt;SPAN&gt;, not dashboards, with external parties so they can consume it in their own tools (Power BI, Tableau, their own Databricks workspace, etc.).&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;This offloads visualisation to them, but you still centrally manage which rows they get.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 07 Mar 2026 18:46:15 GMT</pubDate>
    <dc:creator>Ashwin_DSA</dc:creator>
    <dc:date>2026-03-07T18:46:15Z</dc:date>
    <item>
      <title>Share dashboard with external customers</title>
      <link>https://community.databricks.com/t5/get-started-discussions/share-dashboard-with-external-customers/m-p/149719#M11488</link>
      <description>&lt;DIV&gt;&lt;P&gt;I’m new to Databricks and still exploring the platform. One of our requirements is to share a Databricks dashboard with multiple external customers (for example, Customer 1 and Customer 2).&lt;/P&gt;&lt;P&gt;The key requirement is &lt;STRONG&gt;data isolation&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;When a user from Customer 1 logs in, they should only see Customer 1’s data in the dashboard.&lt;/LI&gt;&lt;LI&gt;When a user from Customer 2 logs in, they should only see Customer 2’s data.&lt;/LI&gt;&lt;LI&gt;We do not have control or prior knowledge of which specific user from each customer will log in.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I’ve received a few suggestions so far, including:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Row-Level Security (similar to how it’s implemented in Power BI or Tableau)&lt;/LI&gt;&lt;LI&gt;Service Principals&lt;/LI&gt;&lt;LI&gt;Delta Sharing&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;How to share the dashboard with user who have Databricks account vs who don't?&lt;/P&gt;&lt;P&gt;I’m trying to understand:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;What is the best and recommended approach&amp;nbsp;for this use case in Databricks?&lt;/LI&gt;&lt;LI&gt;What are the pros and cons of each option?&lt;/LI&gt;&lt;LI&gt;Has anyone implemented a similar setup and can share guidance, architecture patterns, or documentation links?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 Mar 2026 16:58:46 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/share-dashboard-with-external-customers/m-p/149719#M11488</guid>
      <dc:creator>RJ1</dc:creator>
      <dc:date>2026-03-03T16:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Share dashboard with external customers</title>
      <link>https://community.databricks.com/t5/get-started-discussions/share-dashboard-with-external-customers/m-p/150028#M11498</link>
      <description>&lt;P&gt;So just to clarify here, you want to control what the users can see but you don’t know who the users are?&amp;nbsp;&lt;BR /&gt;how do you know if a user is coming from customer1 or customer2 in this case? Would you rely on the domains?&lt;/P&gt;&lt;P&gt;users need to be added in UC to see data. So somehow you need to know who they are.&lt;/P&gt;&lt;P&gt;in general, for sharing dashboards I would most likely embed them in a simple app. In the app, make sure that users are not relying on principal permissions but on the users own permissions.&lt;/P&gt;&lt;P&gt;For data control I would rely on ABAC policies with row-filters on the data to let users only see data from their own domain (assuming this is the setup)&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2026 19:08:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/share-dashboard-with-external-customers/m-p/150028#M11498</guid>
      <dc:creator>KrisJohannesen</dc:creator>
      <dc:date>2026-03-06T19:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Share dashboard with external customers</title>
      <link>https://community.databricks.com/t5/get-started-discussions/share-dashboard-with-external-customers/m-p/150076#M11500</link>
      <description>&lt;P class="p8i6j01 paragraph"&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/218463"&gt;@RJ1&lt;/a&gt; -&amp;nbsp; Welcome to Databricks Platform!&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;Great question. This is a very common requirement.&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;At a high level, you’ll want to separate the concerns:&lt;/P&gt;
&lt;OL class="p8i6j02"&gt;
&lt;LI class="p8i6j0a"&gt;How users authenticate and are identified (who is the user / which customer are they from?)&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;How data is filtered so they only see their own rows (row-level security/ABAC)&lt;/LI&gt;
&lt;LI class="p8i6j0a"&gt;How the dashboard is actually exposed (inside Databricks vs embedded in your own app)&lt;/LI&gt;
&lt;/OL&gt;
&lt;P class="_9k2iva0 p8i6j0c _1ibi0s314 heading3 _9k2iva1"&gt;&lt;STRONG&gt;Identifying which customer a user belongs to:&amp;nbsp;&lt;/STRONG&gt;You said you don’t always know in advance which specific user from a customer will log in. In practice, you still need some way to map a user to a customer. That could either be based on email domain mapping or SCIM/identiity providers such as Entra, Okta where groups are managed and you sync those into Databricks/Unity Catalog.&amp;nbsp;&lt;SPAN&gt;Without such mapping, Databricks (or any platform) can’t reliably enforce Customer 1 vs Customer 2 isolation.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="_9k2iva0 p8i6j0c _1ibi0s314 heading3 _9k2iva1"&gt;&lt;STRONG&gt;Enforcing row-level security:&lt;/STRONG&gt;&amp;nbsp;Once you can identify a user’s customer, you can enforce row-level security at the data layer so dashboards work as expected. You can use&amp;nbsp;Unity Catalog with attribute-based access control (ABAC) and row filters on the base tables, or centralise row-level security&amp;nbsp;at the table or view level, which means any downstream dashboards, SQL queries, or notebooks automatically respect that isolation without custom logic per dashboard.&amp;nbsp;This is generally the most scalable and "Databricks-native" approach.&lt;/P&gt;
&lt;P class="_9k2iva0 p8i6j0c _1ibi0s314 heading3 _9k2iva1"&gt;&lt;STRONG&gt;Options for sharing dashboards:&lt;/STRONG&gt; A few patterns you can consider&amp;nbsp;depending on whether your external users have Databricks accounts:&lt;/P&gt;
&lt;P class="p8i6j01 paragraph lia-indent-padding-left-30px"&gt;a) If your external users have Databricks accounts, you can create then as users in your Databricks account and assign them to the right groups with appropriate entitlements. You can then use ABAC or row filters so that the dashboards are filtered to their customer based on that. You can share Databricks SQL dashboards with those users/groups directly...&lt;/P&gt;
&lt;P class="p8i6j01 paragraph lia-indent-padding-left-30px"&gt;b) If your external users &lt;FONT color="#993300"&gt;&lt;STRONG&gt;don't&lt;/STRONG&gt;&lt;/FONT&gt; have Databricks accounts,&amp;nbsp;you can typically introduce an application layer where you can b&lt;SPAN&gt;uild a &lt;/SPAN&gt;lightweight web app/portal&lt;SPAN&gt; (e.g. using your preferred framework) and&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Use &lt;/SPAN&gt;embedded Databricks dashboards. You can authenticate users into apps and determine which customer they belong to and show the bdashboards they are entitled to see.&amp;nbsp;&lt;SPAN&gt;This gives you more control over branding, multi-tenancy, throttling, and you’re not giving direct Databricks UI access to every external user.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p8i6j01 paragraph lia-indent-padding-left-30px"&gt;c) Delta Sharing&amp;nbsp;&lt;SPAN&gt;is best when you want to &lt;/SPAN&gt;share data&lt;SPAN&gt;, not dashboards, with external parties so they can consume it in their own tools (Power BI, Tableau, their own Databricks workspace, etc.).&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;This offloads visualisation to them, but you still centrally manage which rows they get.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Mar 2026 18:46:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/share-dashboard-with-external-customers/m-p/150076#M11500</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-07T18:46:15Z</dc:date>
    </item>
  </channel>
</rss>

