Databricks Applications — Python backends
First, confirm this skill is the right one. The default for new Databricks Apps is databricks-apps (AppKit — Node.js + TypeScript + React SDK). Load that skill first unless the user explicitly asks for a Python backend, is extending an existing Python app, or the team is Python-only. Everything below is the Python-backend alternative.
Critical Rules for Python apps (always follow)
- MUST confirm framework choice or use Python Framework Selection below
- MUST use SDK
Config() for authentication (never hardcode tokens)
- MUST use
app.yaml valueFrom for resources (never hardcode resource IDs)
- MUST use
dash-bootstrap-components for Dash app layout and styling
- MUST use
@st.cache_resource for Streamlit database connections
- MUST deploy Flask with Gunicorn, FastAPI with uvicorn (not dev servers)
Required Steps for Python apps
Copy this checklist and verify each item:
- [ ] Framework selected
- [ ] Auth strategy decided: app auth, user auth, or both
- [ ] App resources identified (SQL warehouse, Lakebase, serving endpoint, etc.)
- [ ] Backend data strategy decided (SQL warehouse, Lakebase, or SDK)
- [ ] Deployment method: CLI or DABs
Python Framework Selection
| Framework |
Best For |
app.yaml Command |
| FastAPI (default) |
Any Python backend by default — async APIs, auto-generated OpenAPI docs, JSON-serving apps |
["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"] |
| Flask |
Custom REST APIs, lightweight apps, webhooks |
["gunicorn", "app:app", "-w", "4", "-b", "0.0.0.0:8000"] |
| Dash |
Production dashboards, BI tools, complex interactivity |
["python", "app.py"] |
| Streamlit |
Rapid prototyping, data science apps, internal tools where the UI is a series of Python widgets |
["streamlit", "run", "app.py"] |
| Gradio |
ML demos, model interfaces, chat UIs |
["python", "app.py"] |
| Reflex |
Full-stack Python apps without JavaScript |
["reflex", "run", "--env", "prod"] |
Default: FastAPI. Reach for FastAPI unless the user explicitly asks for Streamlit-style widget prototyping (Streamlit), a heavy dashboard grid (Dash), or a Gradio-style ML demo. FastAPI pairs naturally with a JS/HTML frontend or a JSON-consuming caller — the same posture databricks-apps uses on the Node side.
Quick Reference
| Concept |
Details |
| Runtime |
Python 3.11, Ubuntu 22.04, 2 vCPU, 6 GB RAM |
| Pre-installed |
Dash 2.18.1, Streamlit 1.38.0, Gradio 4.44.0, Flask 3.0.3, FastAPI 0.115.0 |
| Auth (app) |
Service principal via Config() — auto-injected DATABRICKS_CLIENT_ID/DATABRICKS_CLIENT_SECRET |
| Auth (user) |
x-forwarded-access-token header — see references/1-authorization.md |
| Resources |
valueFrom in app.yaml — see references/2-app-resources.md |
| SDK / Foundation Models / Vector Search / Model Serving |
Use the databricks-python-sdk skill — same WorkspaceClient and OpenAI-compatible foundation-model patterns work inside a Databricks App |
| Docs |
https://docs.databricks.com/dev-tools/databricks-apps/ |
Detailed Guides
Authorization: Use references/1-authorization.md when configuring app or user authorization — covers service principal auth, on-behalf-of user tokens, OAuth scopes, and per-framework code examples. (Keywords: OAuth, service principal, user auth, on-behalf-of, access token, scopes)
App resources: Use references/2-app-resources.md when connecting your app to Databricks resources — covers SQL warehouses, Lakebase, model serving, secrets, volumes, and the valueFrom pattern. (Keywords: resources, valueFrom, SQL warehouse, model serving, secrets, volumes, connections)
Frameworks: See references/3-frameworks.md for Databricks-specific patterns per framework — FastAPI (default), Flask, Dash, Streamlit, Gradio, Reflex — with auth integration and deployment commands. (Keywords: FastAPI, Flask, Dash, Streamlit, Gradio, Reflex, framework selection)
Deployment: Use references/4-deployment.md when deploying your app — covers Databricks CLI, Asset Bundles (DABs), app.yaml configuration, and post-deployment verification. (Keywords: deploy, CLI, DABs, asset bundles, app.yaml, logs)
Lakebase: Use references/5-lakebase.md when using Lakebase (PostgreSQL) as your app's data layer — covers auto-injected env vars, psycopg2/asyncpg patterns, and when to choose Lakebase vs SQL warehouse. (Keywords: Lakebase, PostgreSQL, psycopg2, asyncpg, transactional, PGHOST)
CLI commands: Use references/6-cli-approach.md for managing app lifecycle via CLI — covers creating, deploying, monitoring, and deleting apps. (Keywords: CLI, create app, deploy app, app logs)
Foundation Models / SDK / Vector Search / Model Serving: Use the databricks-python-sdk skill for the OpenAI-compatible foundation-model client, WorkspaceClient calls, Vector Search, and model-serving invocation — the same patterns apply inside a Databricks App. The examples in this skill's examples/ folder (fm-minimal-chat.py, fm-parallel-calls.py, fm-structured-outputs.py, llm_config.py) show the App-side wiring only.
Workflow
Determine the task type:
New app from scratch? → Load databricks-apps first (AppKit / Node). Only stay in this skill if the user explicitly asks for a Python backend.
Python-backend confirmed? → Python Framework Selection — default to FastAPI.
Setting up authorization? → Read references/1-authorization.md
Connecting to data/resources? → Read references/2-app-resources.md
Using Lakebase (PostgreSQL)? → Read references/5-lakebase.md
Deploying to Databricks? → Read references/4-deployment.md
Using CLI for app lifecycle? → Read references/6-cli-approach.md
Calling foundation model / LLM APIs, Vector Search, or model-serving endpoints? → Load the databricks-python-sdk skill. This skill's examples/ folder shows only the App-side wiring on top of those SDK patterns.
Follow the instructions in the relevant guide.
Core Architecture
All Python Databricks apps follow this pattern:
app-directory/
├── app.py # Main application (or framework-specific name)
├── models.py # Pydantic data models
├── backend.py # Data access layer
├── requirements.txt # Additional Python dependencies
├── app.yaml # Databricks Apps configuration
└── README.md
Backend Toggle Pattern
import os
from databricks.sdk.core import Config
USE_MOCK = os.getenv("USE_MOCK_BACKEND", "true").lower() == "true"
if USE_MOCK:
from backend_mock import MockBackend as Backend
else:
from backend_real import RealBackend as Backend
backend = Backend()
SQL Warehouse Connection (shared across all frameworks)
from databricks.sdk.core import Config
from databricks import sql
cfg = Config() # Auto-detects credentials from environment
conn = sql.connect(
server_hostname=cfg.host,
http_path=f"/sql/1.0/warehouses/{os.getenv('DATABRICKS_WAREHOUSE_ID')}",
credentials_provider=lambda: cfg.authenticate,
)
Pydantic Models
from pydantic import BaseModel, Field
from datetime import datetime
from enum import Enum
class Status(str, Enum):
ACTIVE = "active"
PENDING = "pending"
class EntityOut(BaseModel):
id: str
name: str
status: Status
created_at: datetime
class EntityIn(BaseModel):
name: str = Field(..., min_length=1)
status: Status = Status.PENDING
Common Issues
| Issue |
Solution |
| Connection exhausted |
Use @st.cache_resource (Streamlit) or connection pooling |
| Auth token not found |
Check x-forwarded-access-token header — only available when deployed, not locally |
| App won't start |
Check app.yaml command matches framework; check databricks apps logs <name> |
| Resource not accessible |
Add resource via UI, verify SP has permissions, use valueFrom in app.yaml |
| Import error on deploy |
Add missing packages to requirements.txt (pre-installed packages don't need listing) |
| Lakebase app crashes on start |
psycopg2/asyncpg are NOT pre-installed — MUST add to requirements.txt |
| Port conflict |
Apps must bind to DATABRICKS_APP_PORT env var (defaults to 8000). Never use 8080. Streamlit is auto-configured; for others, read the env var in code or use 8000 in app.yaml command |
| Streamlit: set_page_config error |
st.set_page_config() must be the first Streamlit command |
| Dash: unstyled layout |
Add dash-bootstrap-components; use dbc.themes.BOOTSTRAP |
| Slow queries |
Use Lakebase for transactional/low-latency; SQL warehouse for analytical queries |
Platform Constraints
| Constraint |
Details |
| Runtime |
Python 3.11, Ubuntu 22.04 LTS |
| Compute |
2 vCPUs, 6 GB memory (default) |
| Pre-installed frameworks |
Dash, Streamlit, Gradio, Flask, FastAPI, Shiny |
| Custom packages |
Add to requirements.txt in app root |
| Network |
Apps can reach Databricks APIs; external access depends on workspace config |
| User auth |
Public Preview — workspace admin must enable before adding scopes |
Official Documentation
Related Skills
- databricks-apps — the default for new Databricks Apps (AppKit / Node / TypeScript + React); load it first unless a Python backend is explicitly required
- databricks-python-sdk —
WorkspaceClient, OpenAI-compatible foundation-model client, Vector Search, model-serving invocation; the same patterns work inside a Databricks App
- databricks-lakebase — persistent PostgreSQL state (autoscaling managed PG with branching)
- databricks-model-serving — endpoint lifecycle for ML models an App calls
- databricks-dabs — deploying apps via DABs
1---2name: databricks-apps-python3description: Python backend for Databricks Apps — FastAPI (default), Flask, Dash, Streamlit, Gradio, Reflex. **Default for a new Databricks App is `databricks-apps` (AppKit — Node/TypeScript/React) — reach for it first.** Use this skill only when the user asks for a Python backend, extends an existing Python app, or the team is Python-only. Covers OAuth auth, app resources, SQL warehouse and Lakebase connectivity, foundation-model / Vector Search / model-serving APIs (via `databricks-python-sdk`), and deployment via CLI or DABs.4---5
6# Databricks Applications — Python backends
7
8> **First, confirm this skill is the right one.** The default for new Databricks Apps is **[databricks-apps](../databricks-apps/SKILL.md)** (AppKit — Node.js + TypeScript + React SDK). Load that skill first unless the user explicitly asks for a Python backend, is extending an existing Python app, or the team is Python-only. Everything below is the Python-backend alternative.
9
10## Critical Rules for Python apps (always follow)
11
12- **MUST** confirm framework choice or use [Python Framework Selection](#python-framework-selection) below
13- **MUST** use SDK `Config()` for authentication (never hardcode tokens)
14- **MUST** use `app.yaml` `valueFrom` for resources (never hardcode resource IDs)
15- **MUST** use `dash-bootstrap-components` for Dash app layout and styling
16- **MUST** use `@st.cache_resource` for Streamlit database connections
17- **MUST** deploy Flask with Gunicorn, FastAPI with uvicorn (not dev servers)
18
19## Required Steps for Python apps
20
21Copy this checklist and verify each item:
22```
23- [ ] Framework selected
24- [ ] Auth strategy decided: app auth, user auth, or both
25- [ ] App resources identified (SQL warehouse, Lakebase, serving endpoint, etc.)
26- [ ] Backend data strategy decided (SQL warehouse, Lakebase, or SDK)
27- [ ] Deployment method: CLI or DABs
28```
29
30---
31
32## Python Framework Selection
33
34| Framework | Best For | app.yaml Command |
35|-----------|----------|------------------|
36| **FastAPI** (default) | Any Python backend by default — async APIs, auto-generated OpenAPI docs, JSON-serving apps | `["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]` |
37| **Flask** | Custom REST APIs, lightweight apps, webhooks | `["gunicorn", "app:app", "-w", "4", "-b", "0.0.0.0:8000"]` |
38| **Dash** | Production dashboards, BI tools, complex interactivity | `["python", "app.py"]` |
39| **Streamlit** | Rapid prototyping, data science apps, internal tools where the UI is a series of Python widgets | `["streamlit", "run", "app.py"]` |
40| **Gradio** | ML demos, model interfaces, chat UIs | `["python", "app.py"]` |
41| **Reflex** | Full-stack Python apps without JavaScript | `["reflex", "run", "--env", "prod"]` |
42
43**Default: FastAPI.** Reach for FastAPI unless the user explicitly asks for Streamlit-style widget prototyping (Streamlit), a heavy dashboard grid (Dash), or a Gradio-style ML demo. FastAPI pairs naturally with a JS/HTML frontend or a JSON-consuming caller — the same posture `databricks-apps` uses on the Node side.
44
45---
46
47## Quick Reference
48
49| Concept | Details |
50|---------|---------|
51| **Runtime** | Python 3.11, Ubuntu 22.04, 2 vCPU, 6 GB RAM |
52| **Pre-installed** | Dash 2.18.1, Streamlit 1.38.0, Gradio 4.44.0, Flask 3.0.3, FastAPI 0.115.0 |
53| **Auth (app)** | Service principal via `Config()` — auto-injected `DATABRICKS_CLIENT_ID`/`DATABRICKS_CLIENT_SECRET` |
54| **Auth (user)** | `x-forwarded-access-token` header — see [references/1-authorization.md](references/1-authorization.md) |
55| **Resources** | `valueFrom` in app.yaml — see [references/2-app-resources.md](references/2-app-resources.md) |
56| **SDK / Foundation Models / Vector Search / Model Serving** | Use the `databricks-python-sdk` skill — same `WorkspaceClient` and OpenAI-compatible foundation-model patterns work inside a Databricks App |
57| **Docs** | https://docs.databricks.com/dev-tools/databricks-apps/ |
58
59---
60
61## Detailed Guides
62
63**Authorization**: Use [references/1-authorization.md](references/1-authorization.md) when configuring app or user authorization — covers service principal auth, on-behalf-of user tokens, OAuth scopes, and per-framework code examples. (Keywords: OAuth, service principal, user auth, on-behalf-of, access token, scopes)
64
65**App resources**: Use [references/2-app-resources.md](references/2-app-resources.md) when connecting your app to Databricks resources — covers SQL warehouses, Lakebase, model serving, secrets, volumes, and the `valueFrom` pattern. (Keywords: resources, valueFrom, SQL warehouse, model serving, secrets, volumes, connections)
66
67**Frameworks**: See [references/3-frameworks.md](references/3-frameworks.md) for Databricks-specific patterns per framework — FastAPI (default), Flask, Dash, Streamlit, Gradio, Reflex — with auth integration and deployment commands. (Keywords: FastAPI, Flask, Dash, Streamlit, Gradio, Reflex, framework selection)
68
69**Deployment**: Use [references/4-deployment.md](references/4-deployment.md) when deploying your app — covers Databricks CLI, Asset Bundles (DABs), app.yaml configuration, and post-deployment verification. (Keywords: deploy, CLI, DABs, asset bundles, app.yaml, logs)
70
71**Lakebase**: Use [references/5-lakebase.md](references/5-lakebase.md) when using Lakebase (PostgreSQL) as your app's data layer — covers auto-injected env vars, psycopg2/asyncpg patterns, and when to choose Lakebase vs SQL warehouse. (Keywords: Lakebase, PostgreSQL, psycopg2, asyncpg, transactional, PGHOST)
72
73**CLI commands**: Use [references/6-cli-approach.md](references/6-cli-approach.md) for managing app lifecycle via CLI — covers creating, deploying, monitoring, and deleting apps. (Keywords: CLI, create app, deploy app, app logs)
74
75**Foundation Models / SDK / Vector Search / Model Serving**: Use the **[databricks-python-sdk](../databricks-python-sdk/SKILL.md)** skill for the OpenAI-compatible foundation-model client, `WorkspaceClient` calls, Vector Search, and model-serving invocation — the same patterns apply inside a Databricks App. The examples in this skill's `examples/` folder (`fm-minimal-chat.py`, `fm-parallel-calls.py`, `fm-structured-outputs.py`, `llm_config.py`) show the App-side wiring only.
76
77---
78
79## Workflow
80
811. Determine the task type:
82
83 **New app from scratch?** → Load **[databricks-apps](../databricks-apps/SKILL.md)** first (AppKit / Node). Only stay in this skill if the user explicitly asks for a Python backend.
84 **Python-backend confirmed?** → [Python Framework Selection](#python-framework-selection) — default to FastAPI.
85 **Setting up authorization?** → Read [references/1-authorization.md](references/1-authorization.md)
86 **Connecting to data/resources?** → Read [references/2-app-resources.md](references/2-app-resources.md)
87 **Using Lakebase (PostgreSQL)?** → Read [references/5-lakebase.md](references/5-lakebase.md)
88 **Deploying to Databricks?** → Read [references/4-deployment.md](references/4-deployment.md)
89 **Using CLI for app lifecycle?** → Read [references/6-cli-approach.md](references/6-cli-approach.md)
90 **Calling foundation model / LLM APIs, Vector Search, or model-serving endpoints?** → Load the **[databricks-python-sdk](../databricks-python-sdk/SKILL.md)** skill. This skill's `examples/` folder shows only the App-side wiring on top of those SDK patterns.
91
922. Follow the instructions in the relevant guide.
93
94---
95
96## Core Architecture
97
98All Python Databricks apps follow this pattern:
99
100```
101app-directory/
102├── app.py # Main application (or framework-specific name)
103├── models.py # Pydantic data models
104├── backend.py # Data access layer
105├── requirements.txt # Additional Python dependencies
106├── app.yaml # Databricks Apps configuration
107└── README.md
108```
109
110### Backend Toggle Pattern
111
112```python
113import os
114from databricks.sdk.core import Config
115
116USE_MOCK = os.getenv("USE_MOCK_BACKEND", "true").lower() == "true"
117
118if USE_MOCK:
119 from backend_mock import MockBackend as Backend
120else:
121 from backend_real import RealBackend as Backend
122
123backend = Backend()
124```
125
126### SQL Warehouse Connection (shared across all frameworks)
127
128```python
129from databricks.sdk.core import Config
130from databricks import sql
131
132cfg = Config() # Auto-detects credentials from environment
133conn = sql.connect(
134 server_hostname=cfg.host,
135 http_path=f"/sql/1.0/warehouses/{os.getenv('DATABRICKS_WAREHOUSE_ID')}",
136 credentials_provider=lambda: cfg.authenticate,
137)
138```
139
140### Pydantic Models
141
142```python
143from pydantic import BaseModel, Field
144from datetime import datetime
145from enum import Enum
146
147class Status(str, Enum):
148 ACTIVE = "active"
149 PENDING = "pending"
150
151class EntityOut(BaseModel):
152 id: str
153 name: str
154 status: Status
155 created_at: datetime
156
157class EntityIn(BaseModel):
158 name: str = Field(..., min_length=1)
159 status: Status = Status.PENDING
160```
161
162---
163
164## Common Issues
165
166| Issue | Solution |
167|-------|----------|
168| **Connection exhausted** | Use `@st.cache_resource` (Streamlit) or connection pooling |
169| **Auth token not found** | Check `x-forwarded-access-token` header — only available when deployed, not locally |
170| **App won't start** | Check `app.yaml` command matches framework; check `databricks apps logs <name>` |
171| **Resource not accessible** | Add resource via UI, verify SP has permissions, use `valueFrom` in app.yaml |
172| **Import error on deploy** | Add missing packages to `requirements.txt` (pre-installed packages don't need listing) |
173| **Lakebase app crashes on start** | `psycopg2`/`asyncpg` are NOT pre-installed — MUST add to `requirements.txt` |
174| **Port conflict** | Apps must bind to `DATABRICKS_APP_PORT` env var (defaults to 8000). Never use 8080. Streamlit is auto-configured; for others, read the env var in code or use 8000 in app.yaml command |
175| **Streamlit: set_page_config error** | `st.set_page_config()` must be the first Streamlit command |
176| **Dash: unstyled layout** | Add `dash-bootstrap-components`; use `dbc.themes.BOOTSTRAP` |
177| **Slow queries** | Use Lakebase for transactional/low-latency; SQL warehouse for analytical queries |
178
179---
180
181## Platform Constraints
182
183| Constraint | Details |
184|------------|---------|
185| **Runtime** | Python 3.11, Ubuntu 22.04 LTS |
186| **Compute** | 2 vCPUs, 6 GB memory (default) |
187| **Pre-installed frameworks** | Dash, Streamlit, Gradio, Flask, FastAPI, Shiny |
188| **Custom packages** | Add to `requirements.txt` in app root |
189| **Network** | Apps can reach Databricks APIs; external access depends on workspace config |
190| **User auth** | Public Preview — workspace admin must enable before adding scopes |
191
192---
193
194## Official Documentation
195
196- **[Databricks Apps Overview](https://docs.databricks.com/dev-tools/databricks-apps/)** — main docs hub
197- **[Authorization](https://docs.databricks.com/dev-tools/databricks-apps/auth)** — app auth and user auth
198- **[Resources](https://docs.databricks.com/dev-tools/databricks-apps/resources)** — SQL warehouse, Lakebase, serving, secrets
199- **[app.yaml Reference](https://docs.databricks.com/dev-tools/databricks-apps/app-runtime)** — command and env config
200- **[System Environment](https://docs.databricks.com/dev-tools/databricks-apps/system-env)** — pre-installed packages, runtime details
201
202## Related Skills
203
204- **[databricks-apps](../databricks-apps/SKILL.md)** — the default for new Databricks Apps (AppKit / Node / TypeScript + React); load it first unless a Python backend is explicitly required
205- **[databricks-python-sdk](../databricks-python-sdk/SKILL.md)** — `WorkspaceClient`, OpenAI-compatible foundation-model client, Vector Search, model-serving invocation; the same patterns work inside a Databricks App
206- **[databricks-lakebase](../databricks-lakebase/SKILL.md)** — persistent PostgreSQL state (autoscaling managed PG with branching)
207- **[databricks-model-serving](../databricks-model-serving/SKILL.md)** — endpoint lifecycle for ML models an App calls
208- **databricks-dabs** — deploying apps via DABs