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'))

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now