linliu-code commented on code in PR #12501:
URL: https://github.com/apache/hudi/pull/12501#discussion_r1889283972


##########
hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/table/SparkBroadcastManager.java:
##########
@@ -95,7 +97,9 @@ public void prepareAndBroadcast() {
       // PARQUET_INFER_TIMESTAMP_NTZ_ENABLED is required from Spark 3.4.0 or 
above
       hadoopConf.setBoolean("spark.sql.parquet.inferTimestampNTZ.enabled", 
false);
     }
-    configurationBroadcast = jsc.broadcast(new 
SerializableConfiguration(hadoopConf));
+
+    StorageConfiguration<Configuration> config = new 
HadoopStorageConfiguration(hadoopConf).getInline();
+    configurationBroadcast = jsc.broadcast(new 
SerializableConfiguration(config.unwrap()));

Review Comment:
   Added one.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to