-
Notifications
You must be signed in to change notification settings - Fork 153
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
[MINOR] fix(spark-client) Close coordinator client in time #2328
Merged
maobaolong
merged 8 commits into
apache:master
from
maobaolong:closeCoordinatorClientInTime
Jan 7, 2025
Merged
[MINOR] fix(spark-client) Close coordinator client in time #2328
maobaolong
merged 8 commits into
apache:master
from
maobaolong:closeCoordinatorClientInTime
Jan 7, 2025
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` [16:44:57:437] [grpc-default-executor-0] WARN org.apache.uniffle.shaded.io.grpc.internal.ManagedChannelImpl.handleErrorInSyncContext:1866 - [Channel<1>: (a:10000)] Failed to resolve name. status=Status{code=UNAVAILABLE, description=Unable to resolve host a, cause=java.lang.RuntimeException: java.net.UnknownHostException: a: 未知的名称或服务 at org.apache.uniffle.shaded.io.grpc.internal.DnsNameResolver.resolveAddresses(DnsNameResolver.java:223) at org.apache.uniffle.shaded.io.grpc.internal.DnsNameResolver.doResolve(DnsNameResolver.java:282) at org.apache.uniffle.shaded.io.grpc.internal.DnsNameResolver$Resolve.run(DnsNameResolver.java:318) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:750) Caused by: java.net.UnknownHostException: a: 未知的名称或服务 at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method) at java.net.InetAddress$2.lookupAllHostAddr(InetAddress.java:867) at java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1302) at java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:815) at java.net.InetAddress.getAllByName0(InetAddress.java:1291) at java.net.InetAddress.getAllByName(InetAddress.java:1144) at java.net.InetAddress.getAllByName(InetAddress.java:1065) at org.apache.uniffle.shaded.io.grpc.internal.DnsNameResolver$JdkAddressResolver.resolveAddress(DnsNameResolver.java:632) at org.apache.uniffle.shaded.io.grpc.internal.DnsNameResolver.resolveAddresses(DnsNameResolver.java:219) ... 5 more ```
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2328 +/- ##
============================================
+ Coverage 51.19% 51.56% +0.36%
- Complexity 2936 2973 +37
============================================
Files 486 475 -11
Lines 24720 22706 -2014
Branches 2041 2093 +52
============================================
- Hits 12656 11708 -948
+ Misses 11274 10253 -1021
+ Partials 790 745 -45 ☔ View full report in Codecov by Sentry. |
jerqi
approved these changes
Jan 6, 2025
@jerqi Thanks for your review. Merged. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 changes were proposed in this pull request?
Close coordinator client in time.
Why are the changes needed?
Grpc retry will throw exception for all the time.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
Existing UTs.