Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions de-projects/24_databricks_dqx_demo/.python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12
31 changes: 31 additions & 0 deletions de-projects/24_databricks_dqx_demo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
### DQX Demo Project

To run in databricks notebook, use the `dqx_demo_notebook.ipynb` file

To run locally in VS Code, use the `dqx_demo_notebook.ipynb` file


#### Configuring remote connection to Databricks in VS Code

1. Install UV package manager
Ex:
```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```

2. Install dependencies
```
uv sync
```

3. Create access token in Databricks workspace
Go to Profile > Settings > User > Developer > Access tokens > Manage > Generate new token

4. Create databricks config in the home directory
```
~/.databrickscfg
[DEFAULT]
host = https://abcdefasdf.databricks.com
token = your_generated_token
serverless_compute_id = auto
```
Loading
Loading