MonkeyCanCode commented on issue #280: URL: https://github.com/apache/polaris/issues/280#issuecomment-2344967317
@manojmukkamala sure thing. So I raised a PR for helm in the past which I am using job to perform bootstrap: https://github.com/apache/polaris/pull/135/files#diff-922229e69535a3fb282010bf5c16aa261f558539c874ac0cf8205b5762790cf4 Now back to your question, the container will be running in `server` mode by default. Then with persisted backend, your backend won't be bootstrapped out of box. To bootstrap it, you will need to ssh into the container and run the following wrapper command (which is what I am using in the helm chart above): ``` /app/bin/polaris-service bootstrap polaris-server.yml ``` Alternative, you can use the following java -jar command as well: ``` java -jar /path/to/jar/polaris-service-all.jar bootstrap polaris-server.yml ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
