安裝教程網頁:
安裝mysql
1/建立資料庫和使用者
create database hive;
grant all on hive.* to hive@'%' identified by 'hive';
grant all on hive.* to hive@'localhost' identified by 'hive';
2/解壓hive,建立軟連線
ln -s /home/wind/.../apache-hive-1.1.0-bin hive
3/設定環境變數,並使用source /etc/profile使其生效
export hive_home=/home/hdpsrc/hive
export path=$path:$hive_home/bin
export hadoop_home=/home/wind/桌面/software/hadoop
4/複製/home/wind/桌面/software/hive/conf/hive-default.xml.template,重新命名為
hive-site.xml,開啟修改
注意原網頁中
datanucleus.fixeddatastore
false
多了一句
,需要刪掉,否則報關於configuration的錯誤
mkdir -p /home/hdpsrc/hive/iotmp
6/使用/hive/bin/schematool -initschema -dbtype mysql 初始化源資料表
7/使用hive命令啟動hive
Hive學習筆記 Hive 引數
第一部分 hive 引數 hive.exec.max.created.files 說明 所有hive執行的map與reduce任務可以產生的檔案的和 預設值 100000 hive.exec.dynamic.partition 說明 是否為自動分割槽 預設值 false hive.mapred.re...
Hive學習筆記 Hive概述
1.1 資料倉儲 可以利用資料倉儲來儲存我們的資料,但是資料倉儲有別於我們常見的一般資料庫。資料倉儲是乙個面向主題的 整合的 不可更新的 隨時間不變化的資料整合,它用於支援企業或組織的決策分析處理。物件導向的 倉庫中的資料是按照一定的主題進行組織的。主題即使用者使用資料倉儲進行決策時所關心的重點方面...
Hive安裝手冊
一 安裝準備 2 jdk版本 jdk 6u20 linux i586.bin 3 作業系統 linux s132 2.6.9 78.8axs2smp 1 smp tue dec 16 02 42 55 est 2008 x86 64 x86 64 x86 64 gnu linux 4 預設前提是安裝...