dengzhhu653 commented on PR #3448:
URL: https://github.com/apache/hive/pull/3448#issuecomment-1192186831
The new changes add support for running with local version of Hive:
```
sh deploy.sh --hadoop <hadoop version> --tez <tez version>
```
this command will build the image with given Hadoop and Tez version, and the
local packaging/target/apache-hive-${project.version}-bin.tar.gz that built
from source, a cluster with HiveServer2, Metastore and MySQL would be started.
We can also build the image with a specified Hive version, just append
`--hive <hive version>` to the above command.
By default, the command will read the version info from project `pom.xml`:
`project.version`, `hadoop.version`, `tez.version`, these properties are read
as hive version, hadoop.version, tez.version and used for `deploy.sh` to build
the image.
Besides, we can start a standalone HiveServer2 only with embedded Metastore,
```
sh deploy.sh --hiveserver2
```
or just start a standalone Metastore with derby,
```
sh deploy.sh --metastore
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]