https://delta.io logo
#random
Title
b

Bhopender Yadav

02/17/2023, 7:01 AM
Can someone please help me to connect data lake to databricks
j

JosephK (exDatabricks)

02/17/2023, 12:10 PM
Do you mean connecting ADL2 to a workspace, reading data from an existing bucket/container?
b

Bhopender Yadav

02/21/2023, 5:30 AM
i have a pandas dataframe in databricks and i want to migrate it to delta lake how can i do this
j

JosephK (exDatabricks)

02/21/2023, 12:25 PM
You can do spark.createDataframe(pandasDF).save(path) and it will create a delta lake directory in the path. https://spark.apache.org/docs/latest/api/python/reference/pyspark.sql/api/pyspark.sql.SparkSession.createDataFrame.html#pyspark.sql.[…]eateDataFrame
5 Views