<?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 Databricks Apps On Aws in Administration &amp; Architecture</title>
    <link>https://community.databricks.com/t5/administration-architecture/databricks-apps-on-aws/m-p/128201#M3855</link>
    <description>&lt;P&gt;&lt;STRONG&gt;Context&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Migrating from &lt;STRONG&gt;Azure Databricks (Premium)&lt;/STRONG&gt; to &lt;STRONG&gt;AWS Databricks (Premium)&lt;/STRONG&gt; in &lt;STRONG&gt;eu‑west‑2 (London)&lt;/STRONG&gt; with Unity Catalog attached.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;On &lt;STRONG&gt;Azure&lt;/STRONG&gt;, Databricks &lt;STRONG&gt;Apps&lt;/STRONG&gt; are available (&lt;EM&gt;Compute → Apps&lt;/EM&gt; and &lt;EM&gt;New → App&lt;/EM&gt;). (ы)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Goal: run the same Streamlit apps on &lt;STRONG&gt;AWS&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;What we observe on AWS&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;In all workspaces (customer‑managed VPC via Terraform and &lt;STRONG&gt;Quickstart&lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;No&lt;/STRONG&gt; &lt;EM&gt;New → App&lt;/EM&gt; entry and no &lt;EM&gt;Compute → Apps&lt;/EM&gt; tab;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Serverless&lt;/STRONG&gt; is available (selectable for notebooks and SQL Warehouses);&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;I’m &lt;STRONG&gt;Account admin&lt;/STRONG&gt; and &lt;STRONG&gt;Workspace admin&lt;/STRONG&gt;;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;No “Apps” item/toggle in &lt;STRONG&gt;Admin Settings → Previews&lt;/STRONG&gt; at either workspace or account level.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;What we tried&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Created a brand‑new workspace via &lt;STRONG&gt;Quickstart&lt;/STRONG&gt; (Databricks‑managed VPC) — same result: Apps missing.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;REST check (notebook, PAT):&lt;/P&gt;&lt;PRE&gt;import requests
host = "https://" + spark.conf.get("spark.databricks.workspaceUrl")
token = "&amp;lt;PAT&amp;gt;"
r = requests.get(f"{host}/api/2.0/apps", headers={"Authorization": f"Bearer {token}"})
print(r.status_code, r.text)&lt;/PRE&gt;&lt;P&gt;— &lt;STRONG&gt;AWS&lt;/STRONG&gt;: &lt;STRONG&gt;503 TEMPORARILY_UNAVAILABLE&lt;/STRONG&gt;.&lt;BR /&gt;— &lt;STRONG&gt;Azure&lt;/STRONG&gt;: &lt;STRONG&gt;200 OK&lt;/STRONG&gt; with the list of Apps.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Networking: NAT egress 0.0.0.0/0 is in place; outbound is open. Terraform has nothing that disables Apps.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;Hypothesis&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Databricks Apps are not enabled for our AWS account&lt;/STRONG&gt; (feature flag not promoted yet). Classic symptoms: missing &lt;EM&gt;New → App&lt;/EM&gt;, /api/2.0/apps returns 503, while serverless is available.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Asks&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Please confirm that &lt;STRONG&gt;Apps should be available in AWS eu‑west‑2&lt;/STRONG&gt; without any local Preview toggles.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;If this is an account‑level flag, please &lt;STRONG&gt;enable Databricks Apps&lt;/STRONG&gt; for our account/workspaces.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Are there any additional prerequisites (e.g., allowing *.databricksapps.com, specific entitlements) beyond &lt;STRONG&gt;Workspace access/Admin access&lt;/STRONG&gt;?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;Expected after enablement&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;EM&gt;New → App&lt;/EM&gt; and &lt;EM&gt;Compute → Apps&lt;/EM&gt; appear; GET /api/2.0/apps returns &lt;STRONG&gt;200&lt;/STRONG&gt;. We will then create a Streamlit app (Serverless), set &lt;STRONG&gt;Permissions&lt;/STRONG&gt; (CAN USE / CAN MANAGE), and grant UC/SQL Warehouse access as needed.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;For clarity I &lt;STRONG&gt;attach screenshots&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;- screenshot1 - missing &lt;EM&gt;New → App&lt;/EM&gt; on AWS;&lt;/P&gt;&lt;P&gt;- screenshot2 -503 on /api/2.0/apps for AWS vs 200 on Azure;&lt;/P&gt;&lt;P&gt;- screenshot3 - no “Apps” item under Previews on AWS.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Aug 2025 11:15:29 GMT</pubDate>
    <dc:creator>varni</dc:creator>
    <dc:date>2025-08-12T11:15:29Z</dc:date>
    <item>
      <title>Databricks Apps On Aws</title>
      <link>https://community.databricks.com/t5/administration-architecture/databricks-apps-on-aws/m-p/128201#M3855</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Context&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Migrating from &lt;STRONG&gt;Azure Databricks (Premium)&lt;/STRONG&gt; to &lt;STRONG&gt;AWS Databricks (Premium)&lt;/STRONG&gt; in &lt;STRONG&gt;eu‑west‑2 (London)&lt;/STRONG&gt; with Unity Catalog attached.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;On &lt;STRONG&gt;Azure&lt;/STRONG&gt;, Databricks &lt;STRONG&gt;Apps&lt;/STRONG&gt; are available (&lt;EM&gt;Compute → Apps&lt;/EM&gt; and &lt;EM&gt;New → App&lt;/EM&gt;). (ы)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Goal: run the same Streamlit apps on &lt;STRONG&gt;AWS&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;What we observe on AWS&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;In all workspaces (customer‑managed VPC via Terraform and &lt;STRONG&gt;Quickstart&lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;No&lt;/STRONG&gt; &lt;EM&gt;New → App&lt;/EM&gt; entry and no &lt;EM&gt;Compute → Apps&lt;/EM&gt; tab;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Serverless&lt;/STRONG&gt; is available (selectable for notebooks and SQL Warehouses);&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;I’m &lt;STRONG&gt;Account admin&lt;/STRONG&gt; and &lt;STRONG&gt;Workspace admin&lt;/STRONG&gt;;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;No “Apps” item/toggle in &lt;STRONG&gt;Admin Settings → Previews&lt;/STRONG&gt; at either workspace or account level.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;What we tried&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Created a brand‑new workspace via &lt;STRONG&gt;Quickstart&lt;/STRONG&gt; (Databricks‑managed VPC) — same result: Apps missing.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;REST check (notebook, PAT):&lt;/P&gt;&lt;PRE&gt;import requests
host = "https://" + spark.conf.get("spark.databricks.workspaceUrl")
token = "&amp;lt;PAT&amp;gt;"
r = requests.get(f"{host}/api/2.0/apps", headers={"Authorization": f"Bearer {token}"})
print(r.status_code, r.text)&lt;/PRE&gt;&lt;P&gt;— &lt;STRONG&gt;AWS&lt;/STRONG&gt;: &lt;STRONG&gt;503 TEMPORARILY_UNAVAILABLE&lt;/STRONG&gt;.&lt;BR /&gt;— &lt;STRONG&gt;Azure&lt;/STRONG&gt;: &lt;STRONG&gt;200 OK&lt;/STRONG&gt; with the list of Apps.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Networking: NAT egress 0.0.0.0/0 is in place; outbound is open. Terraform has nothing that disables Apps.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;Hypothesis&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Databricks Apps are not enabled for our AWS account&lt;/STRONG&gt; (feature flag not promoted yet). Classic symptoms: missing &lt;EM&gt;New → App&lt;/EM&gt;, /api/2.0/apps returns 503, while serverless is available.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Asks&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Please confirm that &lt;STRONG&gt;Apps should be available in AWS eu‑west‑2&lt;/STRONG&gt; without any local Preview toggles.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;If this is an account‑level flag, please &lt;STRONG&gt;enable Databricks Apps&lt;/STRONG&gt; for our account/workspaces.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Are there any additional prerequisites (e.g., allowing *.databricksapps.com, specific entitlements) beyond &lt;STRONG&gt;Workspace access/Admin access&lt;/STRONG&gt;?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;Expected after enablement&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;EM&gt;New → App&lt;/EM&gt; and &lt;EM&gt;Compute → Apps&lt;/EM&gt; appear; GET /api/2.0/apps returns &lt;STRONG&gt;200&lt;/STRONG&gt;. We will then create a Streamlit app (Serverless), set &lt;STRONG&gt;Permissions&lt;/STRONG&gt; (CAN USE / CAN MANAGE), and grant UC/SQL Warehouse access as needed.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;For clarity I &lt;STRONG&gt;attach screenshots&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;- screenshot1 - missing &lt;EM&gt;New → App&lt;/EM&gt; on AWS;&lt;/P&gt;&lt;P&gt;- screenshot2 -503 on /api/2.0/apps for AWS vs 200 on Azure;&lt;/P&gt;&lt;P&gt;- screenshot3 - no “Apps” item under Previews on AWS.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Aug 2025 11:15:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/databricks-apps-on-aws/m-p/128201#M3855</guid>
      <dc:creator>varni</dc:creator>
      <dc:date>2025-08-12T11:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Apps On Aws</title>
      <link>https://community.databricks.com/t5/administration-architecture/databricks-apps-on-aws/m-p/128437#M3863</link>
      <description>&lt;P&gt;&lt;STRONG&gt;[Resolved]&lt;/STRONG&gt;. The root cause was that Databricks Apps (including Serverless App) are &lt;STRONG&gt;not available in all AWS regions&lt;/STRONG&gt;. My primary workspace was created in &lt;STRONG&gt;eu-west-2 (London)&lt;/STRONG&gt;, where this feature is &lt;STRONG&gt;not supported&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;After creating a new workspace in &lt;STRONG&gt;eu-west-1 (Ireland)&lt;/STRONG&gt; — a region where Serverless Apps are supported — the option appeared in the UI and the /api/2.0/apps endpoint started returning &lt;STRONG&gt;200&lt;/STRONG&gt; instead of &lt;STRONG&gt;503&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Official Databricks documentation on feature availability by region:&lt;BR /&gt;&lt;A class="" href="https://docs.databricks.com/aws/en/resources/feature-region-support#serverless-compute-feature-availability" target="_new" rel="noopener"&gt;https://docs.databricks.com/aws/en/resources/feature-region-support#serverless-compute-feature-availability&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 10:24:16 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/databricks-apps-on-aws/m-p/128437#M3863</guid>
      <dc:creator>varni</dc:creator>
      <dc:date>2025-08-14T10:24:16Z</dc:date>
    </item>
  </channel>
</rss>

