[INLONG-10560][Sort] Support bounded pulsar source #10569
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #10560
Motivation
The pulsar source only supports un-bounded data sources, this pull request aims to add the support for bounded pulsar source.
Modifications
This is worked for offline sync jobs with Flink batch runtime mode.
Every time the Flink batch task begins, set the start and stop timestamp(the publish time of pulsar msg) of the Pulsar source.
The time to finish the batch Flink job is determined by the stop boundary(StopCursor for the Pulsar source).
Note: since the boundaries, especially the stop boundary, are defined by the pulsar message's publish time, the batch Flink job may not be finished if no messages are published into the Pulsar topic.
Verifying this change
(Please pick either of the following options)
Documentation