We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DBFS mount is not UC compatible:
spark.read.parquet("/mnt/foo/bar")
spark.read.parquet("dbfs:/mnt/foo/bar")
spark.read.parquet("dbfs://mnt/foo/bar")
dbutils.fs....
with open('/dbfs/mnt/foo/bar') as x: ...
/dbfs/mnt
dbfs:/
/mnt/
Linter
No response
The text was updated successfully, but these errors were encountered:
/mnt
Successfully merging a pull request may close this issue.
Is there an existing issue for this?
Problem statement
DBFS mount is not UC compatible:
spark.read.parquet("/mnt/foo/bar")
spark.read.parquet("dbfs:/mnt/foo/bar")
spark.read.parquet("dbfs://mnt/foo/bar")
dbutils.fs....
- https://docs.databricks.com/en/dev-tools/databricks-utils.html#file-system-utility-dbutilsfswith open('/dbfs/mnt/foo/bar') as x: ...
for FUSE mounts using local accessProposed Solution
/dbfs/mnt
(local fs),dbfs:/
, and/mnt/
Linter
implementation - https://github.com/databrickslabs/ucx/blob/main/src/databricks/labs/ucx/source_code/base.py#L72-L74Additional Context
No response
The text was updated successfully, but these errors were encountered: