Troskyvs
Troskyvs

Reputation: 8087

Does Hive depend on/require Hadoop?

Hive installation guide says that Hive can be applied to RDBMS, my question is, sounds like Hive can exist without Hadoop, right? It's an independent HQL engineer that could work with any data source?

Upvotes: 5

Views: 2925

Answers (1)

Amit Yadav
Amit Yadav

Reputation: 54

You can run Hive in local mode to use it without Hadoop for debugging purposes. See below url

https://cwiki.apache.org/confluence/display/Hive/GettingStarted#GettingStarted-Hive,Map-ReduceandLocal-Mode

Hive provided JDBC driver to query hive like JDBC, however if you are planning to run Hive queries on production system, you need Hadoop infrastructure to be available. Hive queries eventually converts into map-reduce jobs and HDFS is used as data storage for Hive tables.

Upvotes: 3

Related Questions