xushiyan opened a new issue, #261:
URL: https://github.com/apache/hudi-rs/issues/261
### Description of the improvement
Currently `Table::read_incremental_records()` expects start and end
timestamps to be in the Hudi timeline format, i.e., `yyyyMMddHHmmsssss` or the
legacy `yyyyMMddHHmmss`. We should support parsing more timestamp formats.
### Expected behavior
- To support parsing strings in the form of epoch time (including seconds,
milliseconds, microseconds, nanoseconds) and convert to Hudi timeline format
for further processing.
- To support parsing strings in the form of ISO8601 format like
- `2019-01-23T12:34:56.123456789+00:00`
- `2019-01-23T12:34:56.123456+00:00`
- `2019-01-23T12:34:56.123+00:00`
- `2019-01-23T12:34:56+00:00`
- `2019-01-23T12:34:56Z`
- `2019-01-23`
### Additional context
The conversion to Hudi timeline format should consider the hudi table's
timeline timezone config.
--
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]