91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Hive怎么實現WordCount

發布時間:2021-11-15 23:49:06 來源:億速云 閱讀:202 作者:柒染 欄目:云計算

這篇文章將為大家詳細講解有關Hive怎么實現WordCount,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

1. 創建一個存放源數據的表(外部表)t_words_src, 表中字段line為string類型, 存放一行單詞

源數據示列: 

hello,tom
hello,jerry
hello,kitty
hello,world
hello,tom
hive> create external table t_words_src (line string)
row format delimited
fields terminated by '\n'    # 按\n來切分字段, 一行就是一個字段
location '/wc/input';    # 源數據路徑為 'hdfs://node1:9000/wc/input' 

hive> select * from t_words;
OK
hello,tom
hello,jerry
hello,kitty
hello,world
hello,tom

2. 創建一個存放所有單詞的表t_words, 表中字段word為string類型, 存放單詞

hive> create table t_words (word string);
hive> insert into table t_words select explode(split(line,',')) as word from t_words_src;

hive> select * from t_words;
OK
hello
tom
hello
jerry
hello
kitty
hello
world
hello
tom

3. 創建一個存放WordCount結果的表t_wc_result, 表中字段word為string類型, 存放單詞, counts為int類型, 存放單詞出現次數

hive> create table t_wc_result (word string, counts int);
hive> insert into table t_wc_result select word as word, count(word) as counts from t_words;

hive> select * from t_wc_result;
OK
hello	5
jerry	1
kitty	1
tom	2
world	1

相對MapReduce來說, Hive的HQL版WordCount寫起來代碼量少很多, 但他們的思想都是一樣的

關于Hive怎么實現WordCount就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

碌曲县| 蒙自县| 封丘县| 通许县| 时尚| 临泽县| 合水县| 大英县| 峨眉山市| 垣曲县| 越西县| 新宁县| 河北省| 长顺县| 布尔津县| 修水县| 柳江县| 宁都县| 永清县| 武冈市| 绥德县| 星座| 商都县| 九江县| 安化县| 恩平市| 阿克苏市| 长海县| 馆陶县| 山东| 施甸县| 昆明市| 株洲市| 汝南县| 拜泉县| 伊金霍洛旗| 芒康县| 海阳市| 军事| 方城县| 延安市|