rubenssoto commented on issue #1957:
URL: https://github.com/apache/hudi/issues/1957#issuecomment-674230980


   This is my write function:
   
   def write_hudi_dataset(spark_data_frame, write_folder_path, hudi_options, 
write_mode):
   
       spark_data_frame \
                         .write \
                         .options(**hudi_options) \
                         .mode(write_mode) \
                         .format('hudi')\
                         .save(write_folder_path)


----------------------------------------------------------------
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.

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


Reply via email to