Re: Building standalone-metastore binary for Hive 4.x

2024-12-02 Thread Zoltán Rátkai
Hi Andor, I tried to build it on my machine and managed without any problems. I am not sure what is the issue when building it with docker. Try with JDK8, since 17 support is on it's way and not yet finished. Regards, Zoltán On Mon, Dec 2, 2024 at 2:26 PM Márkus Andor Rudolf wrote: > Hi Stama

Re: Building standalone-metastore binary for Hive 4.x

2024-12-02 Thread Márkus Andor Rudolf
Hi Zoltán, Thank you for the suggestion! Switching to the maven:3-eclipse-temurin-8-focal image resolved the compilation error. The build is now completing successfully. Best regards, Andor On Mon, 2 Dec 2024 at 15:47, Zoltán Rátkai wrote: > Hi Andor, > > I tried to build it on my machine and

Re: Building standalone-metastore binary for Hive 4.x

2024-12-02 Thread Márkus Andor Rudolf
Hi Stamatis, Thank you for the detailed build instructions. I understand the reasoning behind discontinuing separate standalone builds, and I appreciate the guidance on building it myself. Following your instructions, I attempted to create a Dockerfile ( attached below ) for the build process. Ho

Re: Building standalone-metastore binary for Hive 4.x

2024-12-02 Thread Stamatis Zampetakis
Hi Andor, The Hive community is not doing separate releases for standalone metastore anymore because it adds overhead to the release process. Since now we never had requests to provide these individual binaries. The functionality is still there so you may be able to construct the standalone metas

Re: Building standalone-metastore binary for Hive 4.x

2024-12-02 Thread Márkus Andor Rudolf
Hi Zoltán, Thank you for your response. Let me provide additional context about our specific use case. We're running Spark on Kubernetes where we need Hive Metastore Standalone as a sidecar container in our Spark driver pod. This setup enables secure communication between Spark and our MySQL meta

Re: Building standalone-metastore binary for Hive 4.x

2024-12-02 Thread Zoltán Rátkai
Hi Andor Rudolf, you can start metastore with hive --service metastore Since Hive 4 there is a docker image you can experience with: https://hub.docker.com/r/apache/hive https://hive.apache.org/developement/quickstart/ It show you how you can start standalon Metastore with different DBs. Rega

Building standalone-metastore binary for Hive 4.x

2024-11-29 Thread Márkus Andor Rudolf
Dear Hive community, I'm trying to build standalone metastore binary (similar to hive-standalone-metastore-3.1.3-bin.tar.gz) for Hive 4.0.0/4.0.1. I noticed that while these binaries were published to Maven Central for Hive 3.0.0-3.1.3, they are not available for the 4.x releases. Could someone p