-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement PscSource, PscSink, and Table API's to close the gap on Flink 1.15.1 API's #45
Conversation
…PscInternalProducer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left a couple of minor comments.
Given that this has been internally tested, are there certain modules that need a more careful review?
psc-flink/src/main/java/com/pinterest/flink/connector/psc/PscFlinkConfiguration.java
Show resolved
Hide resolved
Thanks Vahid! I think the PSC core module has supporting changes that need a more careful review. The other modules (psc-flink) contain changes that are mostly ported logic from upstream Kafka connector. |
…pared to FlinkPscProducer and Consumer
@@ -1604,6 +1604,44 @@ public MessageId committed(TopicUriPartition topicUriPartition) throws ConsumerE | |||
} | |||
} | |||
|
|||
// TODO: unit test this | |||
public Collection<MessageId> committed(Collection<TopicUriPartition> topicUriPartitions) throws ConsumerException, ConfigurationException { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add javadoc.
Since the implementation is a bit more involved that piggybacking on the above implementation, we should also add some integration tests.
This PR includes big changes to psc-flink:
Unit, integration, and functional tests were performed against 1.15.1 platform binaries.