How to use Hive without hadoop

后端 未结 5 659
孤街浪徒
孤街浪徒 2021-01-05 08:30

I am a new to NoSQL solutions and want to play with Hive. But installing HDFS/Hadoop takes a lot of resources and time (maybe without experience but I got no time to do this

5条回答
  •  清酒与你
    2021-01-05 09:05

    yes you can run hive without hadoop 1.create your warehouse on your local system 2. give default fs as file:/// than you can run hive in local mode with out hadoop installation

    In Hive-site.xml

      
    
          
             hive.metastore.schema.verification 
             false 
           
          
           
            hive.metastore.warehouse.dir 
            file:///tmp
             
         
          
            fs.default.name 
            file:///tmp 
          
    
    

提交回复
热议问题