Github user arina-ielchiieva commented on a diff in the pull request:
https://github.com/apache/drill/pull/445#discussion_r58505187
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/service/ServiceEngine.java
---
@@ -177,6 +182,13 @@ public void run() {
});
}
+ /** If in distributed mode, disallow using loopback address to register
new drillbit. */
+ private void checkLoopbackAddress(String address) throws
DrillbitStartupException, UnknownHostException {
+ if (isDistributedMode &&
InetAddress.getByName(address).isLoopbackAddress()) {
+ throw new DrillbitStartupException("Loopback address is not allowed
to be registered in distributed mode");
--- End diff --
Sounds reasonable. Updated PR.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---