Jasper

Results 2 comments of Jasper

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

Thanks @rangareddy. Do you happen to know if I should expect the current "workaround" (e.g. my previous comment about a filesystem based read) to stop working in future versions?