-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[BUILD] Fix the java.net.BindException when testing with Github Action #2451
Conversation
Cc @snazy |
This makes sense to me. @RussellSpitzer @rdblue, could you take a look? |
Spark switched 127.0.0.1 to localhost, see apache/spark#32102 |
GA passed, both on JDK8 and JDK11, hope we can get it in ASAP to recover the development progress. |
apache/spark#32096 (comment) - Underlying issue is hypothesized to be the dns resolving properties of Inet.getLocalAddress. |
Our Test Hive code already uses localhost, so that should be fine. |
Thanks @pan3793 ! |
Root cause: reverse name lookups for the current host name is broken in GitHub Actions Runner VMs: actions/runner-images#3185 |
Interesting, maybe that's also causing the new-ish CI failures (#2475) |
apache#2451) [BUILD] Fix the java.net.BindException when testing with Github Action Switches to using localhost from 127.0.0.1 for the Spark driver bind address in CI tests
apache/spark#32096