spyzzz edited a comment on issue #2175:
URL: https://github.com/apache/hudi/issues/2175#issuecomment-709238060


   @naka13  I'm already using spark.streaming.concurrentJobs with 5. 
   For delete i handle this by adding _hoodie_is_deleted when the field op = d 
(for delete) in debezium : 
   
   ```
     .withColumn("_hoodie_is_deleted",when(col("op") === 'd' , 
true).otherwise(false))
   ```
   
   And for avro i'm using a schema registry yo deserialise data in flight


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