You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2020/10/01 17:59:29 UTC

[GitHub] [hudi] wangxianghu edited a comment on pull request #1827: [HUDI-1089] Refactor hudi-client to support multi-engine

wangxianghu edited a comment on pull request #1827:
URL: https://github.com/apache/hudi/pull/1827#issuecomment-702302083


   > @wangxianghu can you please test the latest commit. To be clear, you are saying you don't get the warning on master, but get it on this branch. right?
   > 
   > if this round of tests pass, and you confirm, we can land from my perspective
   
   Hi @vinothchandar The warn log is still there in HUDI-1089 branch.(master is ok, no warn log)
   I think we should check `embeddedTimelineServiceHostAddr` instead of `hostAddr`.
   
   ```
     private void setHostAddr(String embeddedTimelineServiceHostAddr) {
      // here we should check embeddedTimelineServiceHostAddr instead of hostAddr, hostAddr is always null
       if (hostAddr != null) {
         LOG.info("Overriding hostIp to (" + embeddedTimelineServiceHostAddr + ") found in spark-conf. It was " + this.hostAddr);
         this.hostAddr = embeddedTimelineServiceHostAddr;
       } else {
         LOG.warn("Unable to find driver bind address from spark config");
         this.hostAddr = NetworkUtils.getHostname();
       }
     }
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org