Re: How to use SKIP_SCHEMA_INIT=TRUE from command line

2023-12-22 Thread Sanjay Gupta
Thanks, it solves issue. Much appreciated. Thanks Sanjay Gupta From: Akshat m Sent: Friday, December 22, 2023 5:55:38 AM To: user@hive.apache.org Subject: Re: How to use SKIP_SCHEMA_INIT=TRUE from command line Hi Sanjay, Instead of using --env

Re: How to use SKIP_SCHEMA_INIT=TRUE from command line

2023-12-22 Thread Akshat m
Hi Sanjay, Instead of using --env SKIP_SCHEMA_INIT=TRUE, Please use --env IS_RESUME="true" while running, docker run -it -d -p 9083:9083 --env SERVICE_NAME=metastore --add-host=host.docker.internal:host-gateway \ --env IS_RESUME="true" \ --env DB_DRIVER=mysql \ --env SERVICE_OPTS

How to use SKIP_SCHEMA_INIT=TRUE from command line

2023-12-21 Thread Sanjay Gupta
Hi All, If my metastore schema already exists with correct version so what I need to do so it doesn't do init or upgrade when starting metastore container I have tried following command line On MAC environment variables export HIVE_VERSION=3.1.3 and even SKIP_SCHEMA_INIT=TRUE docker run -it -d