- 3379 Views
- 1 replies
- 1 kudos
Resolved! What’s the difference between the Free/Community Edition vs the fully paid version of Databricks, an
Databricks has a free version (called Community Edition) and a paid version. What are the main differences between them, and what things can’t I do in the free version that I can do in the paid one?
- 3379 Views
- 1 replies
- 1 kudos
- 1 kudos
Hi @Suheb .The Free Edition is intended for students, hobbyists, and aspiring data and AI professionals. It is not intended for commercial use. In addition, the Free Edition is subject to the following limitations:Databricks Free Edition limitations ...
- 1 kudos
- 568 Views
- 1 replies
- 0 kudos
Missing warehouse id/metadata for the system compute warehouse table
I ran the following queries for a specific warehouse_id = '54a93d2138433216' SELECT * FROM system.billing.usage WHERE usage_metadata.warehouse_id = '54a93d2138433216';SELECT * FROM system.compute.warehouse_events WHERE warehouse_id = '54a93d213843321...
- 568 Views
- 1 replies
- 0 kudos
- 0 kudos
Hello @Danish1105! This post duplicates a recent post you shared. A response has already been provided there. Please continue the discussion in that thread to keep the conversation organized.
- 0 kudos
- 2776 Views
- 4 replies
- 0 kudos
Resolved! What’s the easiest way to import my local dataset into Databricks for analysis?
How can I upload a data file (like a CSV, Excel, or JSON file) from my computer into Databricks so I can start analyzing it there?
- 2776 Views
- 4 replies
- 0 kudos
- 0 kudos
For large size relational Databases like from Oracle how can we move to Azure databricks. Non-unity catalog to unity catalog?
- 0 kudos
- 1977 Views
- 2 replies
- 1 kudos
Resolved! How does Databricks handle versioning of notebooks or jobs, and what good practices should newcomers
When you create notebooks or jobs in Databricks, how does Databricks keep track of different versions or changes? And what should beginners do to manage versions safely and effectively?
- 1977 Views
- 2 replies
- 1 kudos
- 1 kudos
Hi @Suheb,That’s a great question, version control is one of the most important things to get right early on.As a best practice, you should never run notebooks directly in production. Instead, notebooks should be treated as development assets, once v...
- 1 kudos
- 1730 Views
- 1 replies
- 1 kudos
Python Async db connection to databricks
How to connect to azure databricks using sqlalchemy asynchronously
- 1730 Views
- 1 replies
- 1 kudos
- 1 kudos
Databricks SQL Connector is fundamentally synchronous - it doesn't have native async/await support. This creates an inherent mismatch when you want to use it in an async Python application. Why This Matters When you make a database query ...
- 1 kudos
- 1163 Views
- 3 replies
- 3 kudos
Streamlining App Development with Databricks Marketplace and API Integrations
Hi everyone,I’m interested in discussing how Databricks Marketplace and API integrations can be leveraged to speed up and simplify application development. With the growing need for data-driven apps, I’d like to hear from the community about practica...
- 1163 Views
- 3 replies
- 3 kudos
- 3 kudos
Leveraging Databricks Marketplace and APIs can significantly speed up data-driven app development. The Marketplace gives quick access to validated datasets, ML models, and connectors, reducing time spent on sourcing and infrastructure setup. For inte...
- 3 kudos
- 1662 Views
- 1 replies
- 1 kudos
Resolved! Creating links in embedded dashboards
I am curious what Databricks AI/BI's capabilities are in terms of linking out other dashboards in your dashboards. Can I create a text box that links out another dashboard? I noticed you can also create links in a pivot table. What will happen if I e...
- 1662 Views
- 1 replies
- 1 kudos
- 1 kudos
You can add a text widget to the canvas to insert hyperlinks to any URL, including other dashboards.In pivot tables, you can define URL paths for cell values from the Actions tab to make them clickable.For navigation within a dashboard, use “drill th...
- 1 kudos
- 1262 Views
- 1 replies
- 0 kudos
Attempting to Use VSCode Extension: Error: No sync destination found
Hello,I have the Databricks Extension + Databricks Connect Python module installed.I am connected to the target environment with a running cluster and I have all green checkmarks under the "Configuration" section.However, when testing a python file a...
- 1262 Views
- 1 replies
- 0 kudos
- 0 kudos
The error message "No sync destination found" when running your Python file in Databricks with the Extension and Databricks Connect module, even with all green configuration checkmarks, typically indicates a configuration issue with the sync destinat...
- 0 kudos
- 914 Views
- 2 replies
- 0 kudos
What’s the easiest way to clean and transform data using PySpark in Databricks?
You have some raw data (like messy Excel files, CSVs, or logs) and you want to prepare it for analysis — by removing errors, fixing missing values, changing formats, or combining columns — using PySpark (Python for Apache Spark) inside Databricks.
- 914 Views
- 2 replies
- 0 kudos
- 0 kudos
The easiest way to clean and transform data using PySpark in Databricks is by leveraging the DataFrame API. Start by loading data into a Spark DataFrame with spark.read. Use built-in functions like dropna, fillna, and withColumn to handle missing val...
- 0 kudos
- 1287 Views
- 1 replies
- 0 kudos
How to Leverage Databricks for End-to-End AI Model Development
Hi everyone,I’m exploring how to use Databricks as a platform for end-to-end AI and machine learning model development, and I’d love to get insights from professionals and practitioners who have hands-on experience.Specifically, I’m curious about:Set...
- 1287 Views
- 1 replies
- 0 kudos
- 0 kudos
You can leverage Databricks for end-to-end AI model development by using its Lakehouse Platform, which unifies data engineering, analytics, and machine learning in one workspace. Start by ingesting and transforming data using Apache Spark and Delta L...
- 0 kudos
- 3483 Views
- 4 replies
- 2 kudos
Resolved! Try Databricks sign up failed
Hi, I am trying to use Databricks with the community edition. However, when I tried to create an account, the sign-up failed after I completed the puzzle.
- 3483 Views
- 4 replies
- 2 kudos
- 505 Views
- 1 replies
- 1 kudos
- 505 Views
- 1 replies
- 1 kudos
- 1 kudos
We are going to need a little more information to better help you. What is the scenario? Louis
- 1 kudos
- 1754 Views
- 1 replies
- 1 kudos
Why keep both Azure OpenAI and Databricks?
Hi everyone,I’m curious to hear your thoughts on the benefits of having both Azure OpenAI and Azure Databricks within the same ecosystem.From what I can see, Databricks provides a strong foundation for data engineering, governance, and model lifecycl...
- 1754 Views
- 1 replies
- 1 kudos
- 1 kudos
Two use case I can think of is RAG:Use Databricks for vector indexing (e.g., via Delta Lake or FAISS) and Azure OpenAI for inference.Example: A chatbot that queries Databricks-hosted documents and uses GPT-4 for response generation.Agentic Workflows:...
- 1 kudos
- 899 Views
- 2 replies
- 1 kudos
Resolved! Ingesting data from APIs Like Shopify (for orders), Meta Ads, Google Ads etc
Hi,I am and trying to create some table by calling APIs of Shopify/Meta Ads/Google Ads and so on. Where will I make the API call ? Is making API calls in Notebooks considered standard way to ingest in these cases. I intend to make a daily call to ge...
- 899 Views
- 2 replies
- 1 kudos
- 1 kudos
hello @Anonym40 i can help you with that if you are interested
- 1 kudos
- 652 Views
- 0 replies
- 4 kudos
Databricks One
Databricks One is a user interface designed for business users, giving them a single, intuitive entry point to interact with data and AI in Azure Databricks, without needing to navigate technical concepts such as clusters, queries, models, or noteboo...
- 652 Views
- 0 replies
- 4 kudos
-
.CSV
1 -
Access Data
2 -
Access Databricks
3 -
Access Delta Tables
2 -
Account reset
1 -
adcAws databricks
1 -
ADF Pipeline
1 -
ADLS Gen2 With ABFSS
1 -
Advanced Data Engineering
2 -
AI
5 -
Analytics
1 -
Apache spark
1 -
Apache Spark 3.0
1 -
api
1 -
Api Calls
1 -
API Documentation
4 -
App
2 -
Application
2 -
Architecture
1 -
asset bundle
1 -
Asset Bundles
3 -
Auto-loader
1 -
Autoloader
4 -
Aws databricks
1 -
AWS security token
1 -
AWSDatabricksCluster
1 -
Azure
7 -
Azure data disk
1 -
Azure databricks
16 -
Azure Databricks Delta Table
1 -
Azure Databricks Job
1 -
Azure Databricks SQL
6 -
Azure databricks workspace
1 -
Azure Unity Catalog
6 -
Azure-databricks
1 -
AzureDatabricks
1 -
AzureDevopsRepo
1 -
best practices
1 -
Big Data Solutions
1 -
Billing
1 -
Billing and Cost Management
2 -
Blackduck
1 -
Bronze Layer
1 -
Business Intelligence
1 -
CDC
1 -
Certification
3 -
Certification Exam
1 -
Certification Voucher
3 -
CICDForDatabricksWorkflows
1 -
Cloud_files_state
1 -
CloudFiles
1 -
Cluster
3 -
Cluster Init Script
1 -
Comments
1 -
Community Edition
4 -
Community Edition Account
1 -
Community Event
1 -
Community Group
2 -
Community Members
1 -
CommunityArticle
1 -
Compute
3 -
Compute Instances
1 -
conditional tasks
1 -
Connection
1 -
Contest
1 -
Credentials
1 -
csv
1 -
Custom Python
1 -
CustomLibrary
1 -
DAIS2026
1 -
Data
1 -
Data + AI Summit
1 -
Data Engineer Associate
1 -
Data Engineering
4 -
Data Explorer
1 -
Data Governance
1 -
Data Ingestion & connectivity
1 -
Data Ingestion Architecture
1 -
Data Processing
1 -
Databrick add-on for Splunk
1 -
databricks
5 -
Databricks Academy
1 -
Databricks AI + Data Summit
1 -
Databricks Alerts
1 -
Databricks App
2 -
Databricks Assistant
1 -
Databricks autoloader
1 -
Databricks Certification
1 -
Databricks Cluster
2 -
Databricks Clusters
1 -
Databricks Community
10 -
Databricks community edition
3 -
Databricks Community Edition Account
1 -
Databricks Community Rewards Store
3 -
Databricks connect
1 -
Databricks Dashboard
3 -
Databricks delta
2 -
Databricks Delta Table
2 -
Databricks Demo Center
1 -
Databricks Documentation
4 -
Databricks Error Message
1 -
Databricks genAI associate
1 -
Databricks JDBC Driver
2 -
Databricks Job
1 -
Databricks Lakeflow
1 -
Databricks Lakehouse Platform
6 -
Databricks Migration
1 -
Databricks Model
1 -
Databricks notebook
2 -
Databricks Notebooks
4 -
Databricks Partner
1 -
Databricks Platform
2 -
Databricks Pyspark
1 -
Databricks Python Notebook
1 -
Databricks Repo
1 -
Databricks Runtime
1 -
Databricks Serverless
2 -
Databricks SQL
5 -
Databricks SQL Alerts
1 -
Databricks SQL Warehouse
1 -
Databricks Terraform
1 -
Databricks UI
1 -
Databricks Unity Catalog
4 -
Databricks User Group
1 -
Databricks Workflow
2 -
Databricks Workflows
2 -
Databricks workspace
3 -
Databricks-connect
1 -
databricks_cluster_policy
1 -
DatabricksJobCluster
1 -
DataCleanroom
1 -
DataDays
1 -
Datagrip
1 -
DataMasking
2 -
DataVersioning
1 -
dbdemos
2 -
DBFS
1 -
DBRuntime
1 -
DBSQL
1 -
DDL
1 -
Dear Community
1 -
deduplication
1 -
Delt Lake
1 -
Delta Live Pipeline
3 -
Delta Live Table
5 -
Delta Live Table Pipeline
5 -
Delta Live Table Pipelines
4 -
Delta Live Tables
7 -
Delta Sharing
2 -
Delta Time Travel
1 -
deltaSharing
1 -
Deny assignment
1 -
Development
1 -
DevOps
1 -
DLT
10 -
DLT Pipeline
7 -
DLT Pipelines
5 -
Dolly
1 -
Download files
1 -
DQX
1 -
Dynamic Variables
1 -
Engineering With Databricks
1 -
env
1 -
ETL Pipelines
1 -
Event Driven
1 -
External Sources
1 -
External Storage
2 -
FAQ for Databricks Learning Festival
2 -
Feature Store
2 -
File Trigger
1 -
Filenotfoundexception
1 -
Free Edition
1 -
Free trial
1 -
friendsofcommunity
1 -
GCP Databricks
1 -
GenAI
2 -
GenAI and LLMs
1 -
GenAI Course Material
1 -
Genie
1 -
Getting started
3 -
Google Bigquery
1 -
HIPAA
1 -
Hubert Dudek
2 -
import
2 -
Integration
1 -
JDBC Connections
1 -
JDBC Connector
1 -
Job Task
1 -
JSON Object
1 -
LakeflowDesigner
1 -
Learning
2 -
Lineage
1 -
LLM
1 -
Login
1 -
Login Account
1 -
Machine Learning
3 -
MachineLearning
1 -
Market Place
1 -
Materialized Tables
2 -
Medallion Architecture
1 -
meetup
2 -
Metadata
1 -
Migration
1 -
ML Model
2 -
MlFlow
2 -
Model
1 -
Model Serving
1 -
Model Training
1 -
Module
1 -
Monitoring
1 -
Networking
2 -
Notebook
1 -
Onboarding
1 -
Onboarding Trainings
1 -
OpenAI
1 -
Pandas udf
1 -
Permissions
1 -
personalcompute
1 -
Pipeline
2 -
Plotly
1 -
PostgresSQL
1 -
Pricing
1 -
provisioned throughput
1 -
Pyspark
1 -
Python
5 -
Python Code
1 -
Python Wheel
1 -
Quickstart
1 -
Read data
1 -
Repos Support
1 -
Reset
1 -
Rewards Store
2 -
Salesforce with Databricks
1 -
Sant
1 -
Schedule
1 -
Serverless
3 -
serving endpoint
1 -
Session
1 -
Sign Up Issues
2 -
Software Development
1 -
Spark
1 -
Spark Connect
1 -
Spark scala
1 -
sparkui
2 -
Speakers
1 -
Splunk
2 -
SQL
8 -
streamlit
1 -
Summit23
7 -
Support Tickets
1 -
Sydney
2 -
Table Download
1 -
Tags
3 -
terraform
1 -
Training
2 -
Troubleshooting
1 -
Unity Catalog
4 -
Unity Catalog Metastore
2 -
Update
1 -
user groups
2 -
Venicold
3 -
Vnet
1 -
Voucher Not Recieved
1 -
Watermark
1 -
Webinar
1 -
Weekly Documentation Update
1 -
Weekly Release Notes
2 -
Women
1 -
Workflow
2 -
Workspace
3
- « Previous
- Next »
| User | Count |
|---|---|
| 142 | |
| 123 | |
| 57 | |
| 46 | |
| 40 |