Reading Time: < 1 minute
Reason for writing this blog is to answer the Most Common Question Can We use Hive With Out hadoop,so lets started it answer is yes
Starting with release 0.7, Hive also supports a mode to run map-reduce jobs in local-mode automatically
you just have to do two things first create your warehouse in local system and give the default fs name to local put these properties inside your hive-site.xml
<property>
<!– this should eventually be deprecated since the metastore should supply this –>
<name>hive.metastore.warehouse.dir</name>
<value>file:///tmp</value>
<description></description>
</property>
<property>
<name>fs.default.name</name>
<value>file:///tmp</value>
</property>
now start hive cli
i hope this blog helps
Reblogged this on Coding, Unix & Other Hackeresque Things.