[FLINK-23030][network] PartitionRequestClientFactory#createPartitionRequestClient should throw when network failure #16193
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.
What is the purpose of the change
In current
PartitionRequestClientFactory#createPartitionRequestClient
,ChannelFuture#await()
is invoked, thus to build a connection to remote synchronously.But with the doc of
io.netty.util.concurrent.Future
[1] and its implementationio.netty.channel.DefaultChannelPromise
[2],ChannelFuture#await()
never throws when completed with failure. I guess what Flink needs isChannelFuture#sync()
.[1] https://netty.io/4.1/api/io/netty/util/concurrent/class-use/Future.html
[2] https://github.com/netty/netty/blob/4.1/transport/src/main/java/io/netty/channel/DefaultChannelPromise.java
https://github.com/netty/netty/blob/4.1/common/src/main/java/io/netty/util/concurrent/DefaultPromise.java
Brief change log
ChannelFuture#await
withChannelFuture#sync
inPartitionRequestClientFactory#connect
PartitionRequestClientFactoryTest
Verifying this change
Added test
PartitionRequestClientFactoryTest#testThrowsWhenNetworkFailure
Does this pull request potentially affect one of the following parts:
@Public(Evolving)
: (no)Documentation