Dakarun commented on issue #13319:
URL: https://github.com/apache/hudi/issues/13319#issuecomment-2891673531

   I did manage to get it running using a filesystem read, i.e.
   ```
   spark.read.format("hudi") \
       .option("hoodie.datasource.query.type", "incremental") \
       .option("hoodie.datasource.query.incremental.format", "cdc") \
       .option("hoodie.datasource.read.begin.instanttime", "from") \
       .option("hoodie.datasource.read.end.instanttime", "to") \
       .load("s3://bucket/prefix/")
   ```
   So it does seem the writers started producing cdc files. Read's through sql 
still fail however.


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