Channels
delta-social
h2g2-streaming
roapi
delta-oss
dais-2023
random
delta-rs
general
jobs
kafka-delta-ingest
deltalake-questions
events
lakefs
delta-cycling
deltalake-databricks-dbsql
delta-community
azuredatabricks
deltalake-on-aws
delta-sharing
flink-delta-connector
graph-delta-lake
dat
delta-sharing-rs
Powered by
#deltalake-questions
Title
a
Andrea Campolonghi
08/03/2023, 12:55 PM
Is there a way to pass tblproperties when creating a delta table in pyspark saveAsTable ?
g
Guilhem de Viry
08/03/2023, 3:01 PM
You should be able to it with the DataframeWriterV2 API (
df.writeTo
), with the
tableProperty
builder method. I don’t think you can do it with the V1 API - which is what
saveAsTable
relies on.
👍 2
Post