solliancenet / microsoft-learning-paths-databricks-notebooks

Contains notebooks used in the Microsoft Azure Databricks Learning Paths modules.
173 stars 173 forks source link

java.lang.IllegalArgumentException: Path must be absolute: <username>/runLog #8

Open frexcuadillera opened 2 years ago

frexcuadillera commented 2 years ago

Impacted code: https://github.com/solliancenet/microsoft-learning-paths-databricks-notebooks/blob/master/data-engineering/DBC/12-Production-Workloads-with-Azure-Data-Factory.dbc (Cmd 10, line 7)

val path = username+"/runLog" #wrong val path = "dbfs:/"+username+"/runLog" #needed to add dbfs header to fix the error