โ03-11-2022 12:20 PM
โ03-12-2022 02:51 AM
Yes you need just to create service account for databricks and than assign storage admin role to bucket. After that you can mount GCS standard way:
bucket_name = "<bucket-name>"
mount_name = "<mount-name>"
dbutils.fs.mount("gs://%s" % bucket_name, "/mnt/%s" % mount_name)
display(dbutils.fs.ls("/mnt/%s" % mount_name))
more info here https://docs.gcp.databricks.com/data/data-sources/google/gcs.html
โ03-12-2022 02:51 AM
Yes you need just to create service account for databricks and than assign storage admin role to bucket. After that you can mount GCS standard way:
bucket_name = "<bucket-name>"
mount_name = "<mount-name>"
dbutils.fs.mount("gs://%s" % bucket_name, "/mnt/%s" % mount_name)
display(dbutils.fs.ls("/mnt/%s" % mount_name))
more info here https://docs.gcp.databricks.com/data/data-sources/google/gcs.html
โ05-22-2025 02:22 PM
Is it possibile Also with the community version of Databricks
Passionate about hosting events and connecting people? Help us grow a vibrant local communityโsign up today to get started!
Sign Up Now