Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2024 01:55 AM
Can you try the below code snippet? And share the stacktrace if the issue persists.
snowflake_table = spark.read \
.format("snowflake") \
.option("host", "******.east-us-2.azure.snowflakecomputing.com") \
.option("user", "******") \
.option("password", "*********") \
.option("sfWarehouse", "Compute_WH") \
.option("database", "SalesDevDB") \
.option("schema", "gold") \
.option("dbtable", "test") \
.load()