Spaces:
Sleeping
Sleeping
File size: 10,435 Bytes
b1c190b 96cc367 b1c190b 0cc7766 96cc367 0cc7766 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | ---
title: Unity Catalog Chatbot
emoji: π§
colorFrom: purple
colorTo: green
sdk: docker
sdk_version: "1.0"
app_file: Dockerfile
pinned: false
license: mit
---
# Unity Catalog Chatbot
An intelligent chatbot for managing Databricks Unity Catalog through natural language. Built with Flask, Claude AI, and the Databricks SDK.
## Deployment Resources
- [QUICK_DEPLOY.md](QUICK_DEPLOY.md) β five minute Hugging Face rollout
- [HF_DEPLOYMENT.md](HF_DEPLOYMENT.md) β detailed Spaces guide with screenshots
- [HF_DEPLOYMENT_SUMMARY.md](HF_DEPLOYMENT_SUMMARY.md) β reference and troubleshooting checklist
- [deploy-to-huggingface.sh](deploy-to-huggingface.sh) / [deploy-to-huggingface.bat](deploy-to-huggingface.bat) β guided automation scripts
- [DEPLOYMENT_GUIDE.md](DEPLOYMENT_GUIDE.md) β Docker, K8s, ECS, Azure ACI, and more
## Features
### π€ Natural Language Interface
- Create catalogs, schemas, and tables using plain English
- Manage permissions with simple commands
- Query and explore your Unity Catalog metadata
- AI-powered intent parsing using Claude
### π Security & Governance
- Grant/revoke permissions to users and groups
- Set object ownership
- View current permissions on any object
- Full audit trail of all operations
### π Comprehensive Management
- **Catalogs**: Create, list, delete
- **Schemas**: Create, list, delete
- **Tables**: Create with custom schemas, list, view details
- **Permissions**: Grant, revoke, show grants
- **Ownership**: Set and transfer ownership
### π» Modern UI
- Real-time chat interface
- Action log sidebar showing all executed operations
- SQL preview for every operation
- Quick action buttons for common tasks
- Responsive design with dark theme
## Architecture
```
βββββββββββββββββββ
β React Frontend β (Natural language UI)
ββββββββββ¬βββββββββ
β
ββ> Claude API (Intent parsing)
β
βΌ
βββββββββββββββββββ
β Flask API β (Request handling)
ββββββββββ¬βββββββββ
β
βΌ
βββββββββββββββββββ
β Unity Catalog β (Databricks operations)
β Service β
ββββββββββ¬βββββββββ
β
βΌ
βββββββββββββββββββ
β Databricks SDK β
βββββββββββββββββββ
```
## Installation
### Prerequisites
- Python 3.9+
- Node.js 16+ (for React development)
- Databricks workspace with Unity Catalog enabled
- Databricks personal access token
- Anthropic API key
### Backend Setup
1. **Clone and navigate to the project**
```bash
cd unity-catalog-chatbot
```
2. **Install Python dependencies**
```bash
pip install -r requirements.txt
```
3. **Configure environment variables**
```bash
cp .env.example .env
```
Edit `.env` with your credentials:
```env
DATABRICKS_HOST=https://your-workspace.cloud.databricks.com
DATABRICKS_TOKEN=dapi...
ANTHROPIC_API_KEY=sk-ant-...
```
4. **Run the Flask API server**
```bash
python app.py
```
The API will be available at `http://localhost:5000`
### Frontend Setup
The React component can be:
1. Integrated into your existing React application
2. Used as a standalone artifact in Claude
3. Deployed as a static site
**For development:**
```bash
npm install react react-dom lucide-react
npm start
```
## Usage
### Quick Start Examples
**Creating a Catalog:**
```
User: Create a catalog named sales_data
Bot: Created catalog 'sales_data' successfully.
SQL: CREATE CATALOG IF NOT EXISTS sales_data
```
**Creating a Schema:**
```
User: Create schema analytics in sales_data
Bot: Created schema 'sales_data.analytics' successfully.
SQL: CREATE SCHEMA IF NOT EXISTS sales_data.analytics
```
**Creating a Table:**
```
User: Create table sales_data.analytics.customers with columns id BIGINT, name STRING, email STRING
Bot: Created table 'sales_data.analytics.customers' with specified schema.
SQL: CREATE TABLE IF NOT EXISTS sales_data.analytics.customers (
id BIGINT,
name STRING,
email STRING
) USING DELTA
```
**Granting Permissions:**
```
User: Grant SELECT permission on sales_data.analytics.customers to data_analysts
Bot: Granted SELECT on 'sales_data.analytics.customers' to 'data_analysts'.
SQL: GRANT SELECT ON sales_data.analytics.customers TO `data_analysts`
```
**Listing Objects:**
```
User: List all catalogs
Bot: Here are the available catalogs...
SQL: SHOW CATALOGS
```
### Supported Commands
#### Catalog Operations
- `create a catalog named <name>`
- `list all catalogs`
- `delete catalog <name>`
#### Schema Operations
- `create schema <name> in <catalog>`
- `create schema <catalog>.<schema>`
- `list schemas in <catalog>`
- `delete schema <catalog>.<schema>`
#### Table Operations
- `create table <catalog>.<schema>.<table>`
- `create table <catalog>.<schema>.<table> with columns <spec>`
- `list tables in <catalog>.<schema>`
- `show details for <catalog>.<schema>.<table>`
- `delete table <catalog>.<schema>.<table>`
#### Permission Operations
- `grant <privilege> on <object> to <principal>`
- `revoke <privilege> on <object> from <principal>`
- `show permissions for <object>`
- `set owner of <object> to <user>`
**Supported Privileges:**
- SELECT
- MODIFY
- CREATE
- USAGE
- CREATE_TABLE
- CREATE_SCHEMA
- USE_CATALOG
- USE_SCHEMA
- ALL_PRIVILEGES
## API Endpoints
### POST /api/chat
Main chatbot endpoint for natural language requests.
**Request:**
```json
{
"message": "Create a catalog named demo"
}
```
**Response:**
```json
{
"success": true,
"message": "Successfully created catalog 'demo'",
"sql": "CREATE CATALOG IF NOT EXISTS demo",
"catalog": {
"name": "demo",
"owner": "user@company.com",
"created_at": "2025-01-15T10:30:00Z"
}
}
```
### GET /api/catalogs
List all catalogs.
### GET /api/schemas/<catalog>
List schemas in a catalog.
### GET /api/tables/<catalog>/<schema>
List tables in a schema.
### POST /api/execute
Execute raw SQL (for advanced users).
## Configuration
### Databricks Setup
1. **Create a Personal Access Token:**
- Go to User Settings β Developer β Access Tokens
- Generate new token
- Copy and add to `.env`
2. **Verify Unity Catalog Access:**
```sql
SHOW CATALOGS;
```
3. **Grant Necessary Permissions:**
The user/service principal needs:
- `CREATE CATALOG` on the metastore (for creating catalogs)
- `USE CATALOG` on existing catalogs
- `CREATE SCHEMA` on catalogs where schemas will be created
- Admin permissions for granting/revoking privileges
### Security Best Practices
1. **Use Service Principals** for production deployments
2. **Implement authentication** on the Flask API
3. **Audit all operations** using the action log
4. **Limit permissions** to principle of least privilege
5. **Rotate tokens regularly**
## Advanced Features
### Custom Table Schemas
```
User: Create table products.inventory.items with columns:
- item_id BIGINT
- name STRING
- quantity INT
- price DECIMAL(10,2)
- last_updated TIMESTAMP
```
### Batch Operations
```
User: Create catalog ecommerce, then create schemas staging and production in it
```
### Complex Permission Scenarios
```
User: Grant SELECT and MODIFY on ecommerce.production to data_engineers,
but only SELECT to data_analysts
```
## Troubleshooting
### Common Issues
**Authentication Error:**
```
Error: Invalid credentials
```
- Verify `DATABRICKS_TOKEN` is correct
- Check token hasn't expired
- Ensure workspace URL is correct
**Permission Denied:**
```
Error: User does not have CREATE privilege
```
- Check user has necessary Unity Catalog permissions
- Verify you're using correct catalog/schema names
**Claude API Error:**
```
Error: Anthropic API error
```
- Verify `ANTHROPIC_API_KEY` is set
- Check API key is valid
- Ensure you have API credits
### Debug Mode
Enable debug logging:
```python
# In app.py
import logging
logging.basicConfig(level=logging.DEBUG)
```
## Development
### Running Tests
```bash
pytest tests/
```
### Code Structure
```
.
βββ app.py # Flask API server
βββ unity_catalog_service.py # UC operations service
βββ unity-catalog-chatbot.jsx # React UI component
βββ requirements.txt # Python dependencies
βββ .env.example # Environment template
βββ README.md # This file
```
### Adding New Operations
1. **Add to UnityCatalogService:**
```python
def your_new_operation(self, params):
# Implementation
return {'success': True, 'message': '...', 'sql': '...'}
```
2. **Update intent parsing in app.py:**
```python
elif intent == "yourNewIntent":
return uc_service.your_new_operation(params)
```
3. **Update Claude system prompt** to recognize new intent
## Deployment
### Docker Deployment
```dockerfile
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]
```
### Production Considerations
- Use **gunicorn** or **uwsgi** instead of Flask dev server
- Implement **authentication & authorization**
- Add **rate limiting**
- Enable **HTTPS**
- Use **environment-specific configs**
- Set up **monitoring and alerting**
## Roadmap
- [ ] Multi-catalog operations in single command
- [ ] Table data preview
- [ ] Schema validation and suggestions
- [ ] Integration with Databricks notebooks
- [ ] Permission templates
- [ ] Export configurations as Terraform
- [ ] WebSocket support for real-time updates
- [ ] Multi-user support with sessions
## Contributing
Contributions are welcome! Please:
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Add tests
5. Submit a pull request
## License
MIT License - See LICENSE file for details
## Support
For issues and questions:
- GitHub Issues: [Create an issue]
- Documentation: [Databricks Unity Catalog Docs](https://docs.databricks.com/data-governance/unity-catalog/index.html)
- Anthropic Claude: [Claude Documentation](https://docs.anthropic.com/)
## Acknowledgments
Built with:
- [Databricks SDK](https://github.com/databricks/databricks-sdk-py)
- [Anthropic Claude](https://www.anthropic.com/)
- [React](https://react.dev/)
- [Flask](https://flask.palletsprojects.com/)
|