You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ozone.apache.org by GitBox <gi...@apache.org> on 2020/04/03 07:40:08 UTC

[GitHub] [hadoop-ozone] maobaolong opened a new pull request #762: HDDS-3337. Export the IPC port of OM in docker-compose

maobaolong opened a new pull request #762: HDDS-3337. Export the IPC port of OM in docker-compose
URL: https://github.com/apache/hadoop-ozone/pull/762
 
 
   ## What changes were proposed in this pull request?
   
   Export the IPC port of OM in docker-compose, so that we can use the ozone service inside the docker container while execute command at docker host.
   
   ## What is the link to the Apache JIRA
   
   HDDS-3337
   
   ## How was this patch tested?
   
   See the `docker ps` result, you can see the port 9862 of OM container is exported after execute ```bash
   hadoop-ozone/hadoop-ozone/dist/target/ozone-0.6.0-SNAPSHOT/compose/ozone/run.sh
   ```
   

----------------------------------------------------------------
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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: ozone-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: ozone-issues-help@hadoop.apache.org


[GitHub] [hadoop-ozone] bharatviswa504 edited a comment on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose

Posted by GitBox <gi...@apache.org>.
bharatviswa504 edited a comment on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose
URL: https://github.com/apache/hadoop-ozone/pull/762#issuecomment-608603275
 
 
   I have one comment, it would have been nice to do the same thing for ha docker clusters also.
   And also got a question with out exposing the DN ports, putKey like commands will not work right?
   
   I have not got the reason in only doing for OM IPC ports?

----------------------------------------------------------------
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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: ozone-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: ozone-issues-help@hadoop.apache.org


[GitHub] [hadoop-ozone] elek closed pull request #762: HDDS-3337. Export the IPC port of OM in docker-compose

Posted by GitBox <gi...@apache.org>.
elek closed pull request #762: HDDS-3337. Export the IPC port of OM in docker-compose
URL: https://github.com/apache/hadoop-ozone/pull/762
 
 
   

----------------------------------------------------------------
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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: ozone-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: ozone-issues-help@hadoop.apache.org


[GitHub] [hadoop-ozone] bharatviswa504 commented on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose

Posted by GitBox <gi...@apache.org>.
bharatviswa504 commented on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose
URL: https://github.com/apache/hadoop-ozone/pull/762#issuecomment-608603275
 
 
   I have one comment, it would have been nice to do the same thing for ha docker clusters also.
   

----------------------------------------------------------------
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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: ozone-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: ozone-issues-help@hadoop.apache.org


[GitHub] [hadoop-ozone] elek commented on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose

Posted by GitBox <gi...@apache.org>.
elek commented on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose
URL: https://github.com/apache/hadoop-ozone/pull/762#issuecomment-609715967
 
 
   OM protocol is easy, but datanode protocol is more tricky. 
   
    1. You can't use the same port for all the containers. If you define a fixed port, you can't scale-up datanode containers
    2. We need to have a notion of "external" host names. For example OM should return with a pipeline information which contains the external ip/host (localhost in this case) and the external port of the datanodes. We can add it but that would be more tricky.  (IMHO)
   
   
   

----------------------------------------------------------------
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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: ozone-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: ozone-issues-help@hadoop.apache.org


[GitHub] [hadoop-ozone] maobaolong commented on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose

Posted by GitBox <gi...@apache.org>.
maobaolong commented on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose
URL: https://github.com/apache/hadoop-ozone/pull/762#issuecomment-608443072
 
 
   @elek Thank you for your approve, I found the error of it-client  pr-check is 
   
   ```
   [ERROR] (node:162) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
   [INFO] info fsevents@1.2.11: The platform "linux" is incompatible with this module.
   [INFO] info "fsevents@1.2.11" is an optional dependency and failed compatibility check. Excluding it from installation.
   [INFO] info fsevents@2.0.6: The platform "linux" is incompatible with this module.
   [INFO] info "fsevents@2.0.6" is an optional dependency and failed compatibility check. Excluding it from installation.
   [INFO] [3/4] Linking dependencies...
   [ERROR] warning " > less-loader@5.0.0" has unmet peer dependency "webpack@^2.0.0 || ^3.0.0 || ^4.0.0".
   ```
   
   And i met this error during my local build too, i think it is a warning?

----------------------------------------------------------------
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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: ozone-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: ozone-issues-help@hadoop.apache.org


[GitHub] [hadoop-ozone] adoroszlai commented on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose

Posted by GitBox <gi...@apache.org>.
adoroszlai commented on issue #762: HDDS-3337. Export the IPC port of OM in docker-compose
URL: https://github.com/apache/hadoop-ozone/pull/762#issuecomment-608446082
 
 
   @maobaolong the error in it-client is in `Test2WayCommitInRatis`.  Can you trigger a new build with an empty commit?
   
   ```
   2020-04-03T08:10:19.2261022Z [ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 84.892 s <<< FAILURE! - in org.apache.hadoop.ozone.client.rpc.Test2WayCommitInRatis
   2020-04-03T08:10:19.2342304Z [ERROR] test2WayCommitForRetryfailure(org.apache.hadoop.ozone.client.rpc.Test2WayCommitInRatis)  Time elapsed: 84.752 s  <<< ERROR!
   ```

----------------------------------------------------------------
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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: ozone-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: ozone-issues-help@hadoop.apache.org