Github user vrozov commented on a diff in the pull request:
https://github.com/apache/drill/pull/911#discussion_r133838389
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/store/schedule/BlockMapBuilder.java
---
@@ -246,12 +249,16 @@ public EndpointByteMap getEndpointByteMap(FileWork
work) throws IOException {
DrillbitEndpoint endpoint = getDrillBitEndpoint(host);
if (endpoint != null) {
endpointByteMap.add(endpoint, bytes);
- } else {
- logger.info("Failure finding Drillbit running on host {}.
Skipping affinity to that host.", host);
+ } else if (logger.isDebugEnabled()) {
--- End diff --
and `} else if (noDrillbitHosts != null && noDrillbitHosts.add(host)) {
logger.debug(...); }`
---
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.
---