You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/12/02 03:18:15 UTC

[GitHub] [arrow-datafusion] gaojun2048 opened a new issue #1389: Start ballista ui with docker, but it can not found ballista scheduler

gaojun2048 opened a new issue #1389:
URL: https://github.com/apache/arrow-datafusion/issues/1389


   **Describe the bug**
   Start ballista ui with docker, but it can not found ballista scheduler
   
   **To Reproduce**
   Steps to reproduce the behavior:
   I clone the core from master branch. And then use `./dev/build-ballista-docker.sh` and `./dev/build-ui.sh` finished the docker image build.
   I start the image with a docker-compose.yaml , it`s the content:
   
   ```
   version: "2.2"
   services:
     ballista-scheduler:
       image: ballista:0.6.0
       command: "/scheduler  --bind-host 0.0.0.0 --bind-port 50050"
       ports:
         - "50050:50050"
       environment:
         - RUST_LOG=info
       volumes:
         - ./data1:/data1
     ballista-executor:
       image: ballista:0.6.0
       command: "/executor --bind-host 0.0.0.0 --bind-port 50051 --scheduler-host ballista-scheduler"
       ports:
         - "50051:50051"
       environment:
         - RUST_LOG=info
       volumes:
         - ./data1:/data1
       depends_on:
         - ballista-scheduler
   
     ballista-scheduler-ui:
       image: ballista-scheduler-ui:0.6.0
       ports:
         - "4000:80"
       environment:
         - RUST_LOG=debug
       volumes:
         - ./data1:/data1
       depends_on:
         - ballista-scheduler
   ```
   
   The docker container is start success. But can not find scheduler in the ui.
   
   ![image](https://user-images.githubusercontent.com/32193458/144351652-f4a27487-bf51-4310-83e4-d1cc68f5f595.png)
   
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   
   **Additional context**
   Add any other context about the problem here.
   


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

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

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



[GitHub] [arrow-datafusion] alamb commented on issue #1389: Start ballista ui with docker, but it can not found ballista scheduler

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1389:
URL: https://github.com/apache/arrow-datafusion/issues/1389#issuecomment-986045757


   Thanks for the report @gaojun2048  -- @andygrove @edrevo @houqp  any thoughts? I don't really have much experience with Ballista so I am not sure what is supposed to happen here


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

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

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