https://delta.io logo
k

Kishore Shanmuganathan

08/29/2023, 9:22 AM
Hi Team, I am looking to overwrite the databricks managed delta table using python Script,Not sure can i use delta-rs library for this ? We should’nt run the python script as datbricks job. Job can be executed in jenkins environment or AWS LAMBDA, execution of this script happens outside databricks env.
w

Will Jones

08/29/2023, 2:55 PM
I am looking to overwrite the databricks managed delta table using python Script,Not sure can i use delta-rs library for this ?
All the metadata itself is contained in the table and not data bricks itself, so should be fine to do. The only danger is if you are using S3 and have multiple writers at the same time: outside of databricks they might overwrite each other. (This isn't an issue on other clouds)
k

Kishore Shanmuganathan

08/29/2023, 3:38 PM
@Will Jones , Thanks for response
We are using AWS S3 and i see Chances of multiple rights are very minimal
looking for authorization process we have to follow in delta-rs module, if we need to overwrite the delta table
r

rtyler

08/29/2023, 4:19 PM
I've done a ton of lambda work, I'm confused with what's being asked here @Kishore Shanmuganathan
k

Kishore Shanmuganathan

08/30/2023, 2:10 AM
@rtyler, i am looking for information regarding to pass AWS credentials or databricks tokens to delta-rs module for authentication . i didn’t find the relevant documentation.
k

Kishore Shanmuganathan

09/05/2023, 3:34 AM
Thank you, It really helped !!