Databricks Volumes / Workspace VFS
Scheme
Each Databricks VFS Connection registers as its own VFS scheme. The metadata name is the scheme (same idea as MinIO).
With a Root path set to a volume (recommended for most projects):
{vfs-connection-name}:///relative/path/under/root Example: name db-volume, root /Volumes/apache-hop/default/testing:
db-volume:///input/customers-1M.txt
→ workspace /Volumes/apache-hop/default/testing/input/customers-1M.txt.
Without a root path, URIs must be absolute workspace paths:
{vfs-connection-name}:///Volumes/<catalog>/<schema>/<volume>/path/to/file
{vfs-connection-name}:///Workspace/Users/you@example.com/path/to/file Authentication comes from the Databricks Connection selected on that VFS metadata (host + PAT).
Pick a VFS Name that does not clash with built-in VFS schemes (file, ftp, http, …) or other plugins (s3, azure, gs, …).
What it supports
Hop talks to the workspace Files API (Bearer PAT from the referenced connection):
-
List, create, and delete directories under UC Volumes and Workspace
-
Read and write file content (including large jars within Databricks Files API limits, ~5 GiB per PUT)
-
Browse from Hop file dialogs and use VFS-aware transforms/actions
Classic DBFS paths (dbfs:/FileStore/…) are not exposed through this VFS provider. Prefer /Volumes/… on modern workspaces where public DBFS root is disabled. Deploy & run still supports classic DBFS as a fallback upload API when you use absolute dbfs: paths there.
Path dialect (Hop vs cluster)
| Native Spark does not use Hop VFS for Dataset I/O (Spark File Input/Output, Lake Table PATH). Those transforms need Spark/Hadoop URIs on the cluster ( Hop Databricks VFS URIs are for Hop-side I/O only:
Do not use this VFS as the primary path for large Spark data landings. The Files API is a single-stream workspace HTTP upload — fine for small/medium files, not a bulk object-store client. For multi‑hundred‑MB or multi‑GB datasets, land data with cloud storage tools or cluster-side paths, then point Spark File / Lake transforms at Spark-visible URIs. Jobs API library and MainSpark parameter paths stay absolute |
Configuration
-
Create a Databricks Connection (workspace host + PAT). Prefer variables for secrets.
-
Create a Databricks VFS Connection:
-
Name = URI scheme (for example
db-volume) -
Databricks Connection = the Jobs connection from step 1
-
Root path =
/Volumes/catalog/schema/volume(or a folder under a volume)
-
-
In Hop file dialogs or transforms, enter
{name}:///subdir/…relative to that root.
If root path is left empty, every URI must include the full /Volumes/… or /Workspace/… path.