linghengqian opened a new pull request, #40: URL: https://github.com/apache/hive-site/pull/40
- HIVE-28437: Add documentation for initializing the system schemas for HiveServer2 for `Quickstart with Docker`. - This is one of the proposals in https://github.com/apache/hive/pull/5629#issuecomment-2644742806 . Might need to wait for the original PR for more clarification. > - There is still a question in the current PR: Should I require users to install `Maven` in advance through `SDKMAN!`? The unit test I wrote in https://github.com/linghengqian/hive-server2-jdbc-driver/pull/23 prefers to use `Dockerfile` to dynamically create Docker Image, but the Hive documentation seems to like to assume that users know how to use `Maven`. ```dockerfile FROM alpine:3.21.2 AS prepare RUN apk add --no-cache wget RUN wget https://repo1.maven.org/maven2/org/postgresql/postgresql/42.7.5/postgresql-42.7.5.jar --directory-prefix=/opt/hive/lib RUN wget https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.48.3/checker-qual-3.48.3.jar --directory-prefix=/opt/hive/lib FROM apache/hive:4.0.1 COPY --from=prepare /opt/hive/lib /opt/hive/lib ``` -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org