yihua opened a new pull request, #18955: URL: https://github.com/apache/hudi/pull/18955
### Describe the issue this Pull Request addresses The published configuration pages on the Hudi docs site say `New data written with completion_time >= START_COMMIT are fetched out` for `hoodie.datasource.read.begin.instanttime`. This contradicts the actual runtime behavior, which treats `START_COMMIT` as **exclusive**: - V1 relation: timeline filter is `findInstantsInRange(start, end)` which is `(start, end]`. - V2 relation: defaults to `RangeType.OPEN_CLOSED` after the apache/hudi PR that made the start commit exclusive. A companion PR in `apache/hudi` (`master` branch) updates the underlying `DataSourceOptions.scala` config description. ### Summary and Changelog Updates the latest, 1.1.x, and 1.2.x configuration pages to reflect that `START_COMMIT` is exclusive: `>` instead of `>=`, and `strictly after` instead of `on or after`. Six files touched (`configurations.md` and `basic_configurations.md` for each of `website/docs`, `website/versioned_docs/version-1.1.1`, and `website/versioned_docs/version-1.2.0`). ### Impact Documentation only. No code change. ### Risk Level none ### Documentation Update This PR is the documentation update. ### Contributor's checklist - [x] Read through [contributor's guide](https://hudi.apache.org/contribute/how-to-contribute) - [x] Enough context is provided in the sections above - [x] Adequate tests were added if applicable -- 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]
