- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 07:56 AM - edited 07-16-2025 08:16 AM
Thank you very much for the new free edition.
I have a question related to dbfs.
Am I to understand that dbfs is disabled in this edition and one needs to bring their own storage. I tried this and failed. What do I need to do in order to be able to use dbfs in the free edition.
dbutils.fs.mkdirs("dbfs:/test_folder")
# ExecutionError: Public DBFS root is disabled. Access is denied on path: /test_folderThank you very much in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 08:56 AM
Hi @smpa01 ,
In Free Edition dbfs is disabled. You should use Unity Catalog for that purpose anyway. DBFS is depracated pattern of interacting with storage.
So, to use volume perform following steps:
Go to Catalgos (1) -> Click workspace catalog (2) -> Click default schema -> Clikc Create button (3)
On the Create button (3) you will have an option to create volume. Pick a name and then create volume.
If you did that, your new volume should appear in Unity Catalog under default schema. Now you will have an option to upload file to Volume:
And here's an example of how to read csv from volume into dataframe:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 09:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2025 09:49 AM
Hi @smpa01 ,
No problem, happy to help