cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Trying to write my dataframe out as a tab separated .txt file but getting an error

User16826992666
Valued Contributor

When I try to save my file I get

org.apache.spark.sql.AnalysisException: Text data source supports only a single column, and you have 2 columns.;

Is there any way to save a dataframe with more than one column to a .txt file?

1 REPLY 1

sajith_appukutt
Honored Contributor II

Would pyspark.sql.DataFrameWriter.csv work? You could specify the separator (sep) as tab

df.write.csv(os.path.join(tempfile.mkdtemp(), 'data'))

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you won’t want to miss the chance to attend and share knowledge.

If there isn’t a group near you, start one and help create a community that brings people together.

Request a New Group