-
Hi,
Is there any way that I can keep the connection open and re-use it in the script? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Can you try creating a dt = DeltaTable(table_path)
# do some work
write_deltalake(dt, append_df, mode='append')
# do some more work
write_deltalake(dt, append_df, mode='append') |
Beta Was this translation helpful? Give feedback.
Can you try creating a
DeltaTable
first from yourtable_path
and then pass that intowrite_deltalake
?