BsoBird commented on code in PR #24: URL: https://github.com/apache/hive-site/pull/24#discussion_r1899401414
########## content/docs/latest/manual-installation_283118363.md: ########## @@ -378,6 +379,75 @@ That directory should contain all the files necessary to run Hive. You can run i From now, you can follow the steps described in the section Installing Hive from a Tarball +## Installing with old version hadoop(>=3.1.0) + +Although we normally require hive4 to rely on a +hadoop 3.3.6 cluster environment. +However, in practice, in an ON YARN environment, +we can package all the hadoop related dependencies into +tez&hive so that they do not need to rely on the lib +of the original hadoop cluster environment at runtime. +In this way, we can run HIVE4 in a lower version of hadoop, +provided that the base APIs of the hadoop 3.x series are common to +each other. + +The steps are as follows: + +1.Download the high version of the Hadoop package, unzip it, and then set the hadoop_home finger of the env script in HIVE4 to the path where the high version of hadoop is unzipped. + +2.Compile TEZ to get tez.tar.gz which contains all hadoop related dependencies, +first extract it on the physical machine where HIVE is deployed and configure the TEZ_HOME in HIVE to point to it, +then place tez.tar.gz in a path in hdfs. + +```shell +[root@hmsclient01 opt]# ll +drwxr-xr-x 11 hive hadoop 4096 Nov 7 13:59 apache-hive-4.0.1-SNAPSHOT-bin Review Comment: @deniskuzZ This is just a directory in our production environment;Because we directly compile the code to obtain the tar package, its version is a SNAPSHOT version. I'm just illustrating how to install. should i change this to non-snapshot version? -- 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