nsivabalan commented on issue #4839:
URL: https://github.com/apache/hudi/issues/4839#issuecomment-1047214015


   this is directly using spark data source write 
   ```
   write_hudi_table(df, epoch_id):
   #we do some cleansing here
   df.write.format('org.apache.hudi')
   .options(**tableHudiOptions)
   .mode('append')
   .save(f'{HUDI_TABLE_BASE_PATH}/{TABLE_NAME}/')
   ```
   
   and is not using HoodieStreamingSink. so, this is expected. There is no 
async table service if you are directly using spark datasource write. 
   
   you might have to directly write to stream. 
   
   


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