cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Get Started Discussions
Start your journey with Databricks by joining discussions on getting started guides, tutorials, and introductory topics. Connect with beginners and experts alike to kickstart your Databricks experience.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

ask to how to use databricks community version

Amit110409
New Contributor

Hi, guys, as I am new to Databricks, I use Databricks free tier. But I want to explore it more and practice more, so. How do we get access to the community version? Because when I go to the community version, it redirects me to the free edition, but there are some issues for DBFS when we upload any file. But if we use any S3 or other service, it is fine. But for practice, how can we use it for free? 

1 REPLY 1

ilir_nuredini
Honored Contributor

Hello @Amit110409 ,

Databricks has announced the free edition version of Databricks. It contains much more capabilities than the community edition.

Regarding DBFS, there is no official update on enabling full access in the Free Edition. Also, DBFS is now considered a legacy approach, so you should use Unity Catalog Volumes for storing and accessing data going forward and also it is recommended approach.

Example upload to UC Volume:

1. Go to the catalog you wanna have the data in, and click create Volume:

ilir_nuredini_0-1751025211730.png

2. Give it a name and click create:

ilir_nuredini_1-1751025230281.png

3. Then use the "Upload to this volume" button to upload the data:

 

ilir_nuredini_2-1751025248747.png

4. Here it is an example how to read a csv file from Volume:

df = spark.read.csv("/Volumes/main/finance/reports/monthly/may2025.csv", header=True, inferSchema=True)
df.show()


Hope that helps. Best, Ilir

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now