Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2025 07:24 AM - edited 01-22-2025 07:50 AM
@sahil_s_jain Please try setting this spark property on the 15.4 cluster:
sparkConf.set("spark.sql.legacy.jdbc.useNullCalendar", "false")
After the property is set, Spark will not use a Null calendar instance for JDBC operations.
You can also add the below property to set the spark session timezone:
spark.conf.set("spark.sql.session.timeZone", "America/New_York")