Write CSV File | teradatamlspk | pyspark2teradataml - Write CSV File - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
ft:locale
en-US
ft:lastEdition
2024-12-11
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

When writing CSV file in teradatamlspk, the file is stored either in cloud storage or in local file system.

PySpark

df.write.csv(specified_path)

teradatamlspk

Store the file in cloud storage:

df.write.options(authorization = {"Access_ID": id, "Access_Key": key}).csv(specified_path)

Store the file in local file system:

from teradataml import fastexport
fastexport(df.toTeradataml(), export_to="csv", csv_file="Test.csv")