@@ -64,12 +64,10 @@ See [contributing instructions](CONTRIBUTING.md) to help improve this project.
6464 * [ ` cannot-autofix-table-reference ` ] ( #cannot-autofix-table-reference )
6565 * [ ` catalog-api-in-shared-clusters ` ] ( #catalog-api-in-shared-clusters )
6666 * [ ` changed-result-format-in-uc ` ] ( #changed-result-format-in-uc )
67- * [ ` dbfs-read-from-sql-query ` ] ( #dbfs-read-from-sql-query )
68- * [ ` dbfs-usage ` ] ( #dbfs-usage )
67+ * [ ` direct-filesystem-access ` ] ( #direct-filesystem-access )
68+ * [ ` direct-filesystem-access-in-sql-query ` ] ( #direct-filesystem-access-in-sql-query )
6969 * [ ` default-format-changed-in-dbr8 ` ] ( #default-format-changed-in-dbr8 )
7070 * [ ` dependency-not-found ` ] ( #dependency-not-found )
71- * [ ` direct-filesystem-access ` ] ( #direct-filesystem-access )
72- * [ ` implicit-dbfs-usage ` ] ( #implicit-dbfs-usage )
7371 * [ ` jvm-access-in-shared-clusters ` ] ( #jvm-access-in-shared-clusters )
7472 * [ ` legacy-context-in-shared-clusters ` ] ( #legacy-context-in-shared-clusters )
7573 * [ ` not-supported ` ] ( #not-supported )
@@ -766,24 +764,32 @@ you need to make sure that `do_stuff_with_table` can handle the new format.
766764
767765[[ back to top] ( #databricks-labs-ucx )]
768766
769- #### ` dbfs-read-from -sql-query`
767+ #### ` direct-filesystem-access-in -sql-query`
770768
771- DBFS access is not allowed in Unity Catalog, so if you have code like this:
769+ Direct filesystem access is deprecated in Unity Catalog.
770+ DBFS is no longer supported, so if you have code like this:
772771
773772``` python
774- df = spark.sql(" SELECT * FROM parquet.`/mnt/foo/path/to/file`" )
773+ df = spark.sql(" SELECT * FROM parquet.`/mnt/foo/path/to/parquet. file`" )
775774```
776775
777776you need to change it to use UC tables.
778777
779778[[ back to top] ( #databricks-labs-ucx )]
780779
781- #### ` dbfs-usage `
780+ #### ` direct-filesystem-access `
782781
783- DBFS does not work in Unity Catalog, so if you have code like this:
782+ Direct filesystem access is deprecated in Unity Catalog.
783+ DBFS is no longer supported, so if you have code like this:
784784
785785``` python
786- display(spark.read.csv(' /mnt/things/e/f/g' ))
786+ display(spark.read.csv(' /mnt/things/data.csv' ))
787+ ```
788+
789+ or this:
790+
791+ ``` python
792+ display(spark.read.csv(' s3://bucket/folder/data.csv' ))
787793```
788794
789795You need to change it to use UC tables or UC volumes.
@@ -798,31 +804,7 @@ means an error in the user code.
798804
799805[[ back to top] ( #databricks-labs-ucx )]
800806
801- #### ` direct-filesystem-access `
802-
803- It's not allowed to access the filesystem directly in Unity Catalog, so if you have code like this:
804-
805- ``` python
806- spark.read.csv(" s3://bucket/path" )
807- ```
808-
809- you need to change it to use UC tables or UC volumes.
810-
811- [[ back to top] ( #databricks-labs-ucx )]
812-
813- #### ` implicit-dbfs-usage `
814-
815- The use of DBFS is not allowed in Unity Catalog, so if you have code like this:
816-
817- ``` python
818- display(spark.read.csv(' /mnt/things/e/f/g' ))
819- ```
820-
821- you need to change it to use UC tables or UC volumes.
822-
823- [[ back to top] ( #databricks-labs-ucx )]
824-
825- #### ` jvm-access-in-shared-clusters `
807+ ### ` jvm-access-in-shared-clusters `
826808
827809You cannot access Spark Driver JVM on Unity Catalog clusters in Shared Access mode. If you have code like this:
828810
0 commit comments