You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by GitBox <gi...@apache.org> on 2020/11/11 18:55:24 UTC

[GitHub] [incubator-pinot] fx19880617 commented on issue #6257: pinot cluster on docker unable to restore imported data after docker restarts

fx19880617 commented on issue #6257:
URL: https://github.com/apache/incubator-pinot/issues/6257#issuecomment-725599855


   if you are running in docker, then you can set this config in pinot server conf file:
   ```
   pinot.server.netty.host=pinot-server-0
   ```
   This `pinot-server-0` is the docker container name, so when we start the docker container, we need to specify the `--name `
   e.g.
   ```
   docker run --rm -ti \
       --name pinot-server-0 \
       --network=pinot-demo \
       --mount type=bind,source=/tmp/pinot-docker-conf,target=/tmp \
       apachepinot/pinot:latest StartServer \
       -zkAddress zookeeper:2181 -clusterName pinot-docker \
       -configFileName /tmp/server.conf
   ```


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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org