大資料從入門到實戰 Hive表DDL操作(二)

2021-10-14 16:27:39 字數 2765 閱讀 2720

二、實踐詳解

叮嘟!這裡是小啊嗚的學習課程資料整理。好記性不如爛筆頭,今天也是努力進步的一天。一起加油高階吧!

hive資料定義語言(date definition language)包括 create/drop/alter資料庫、create/drop/truncate表、alter 表/分割槽/列、create/drop/alter檢視、create/drop/alter索引、create/drop函式、create/drop/grant/revoke角色和許可權等內容。

**#評測

#***

****

** begin ***

****

**#echo "

create database if not exists test2

location '/hive/test2'

with dbproperties

('creator'

='floret'

,'date'

='2020-11-16');

create table if not exists test2.

student

(sno int comment 'student sno'

,name string comment 'student name'

,age int comment 'student age'

,*** string comment 'student ***'

,score struct comment 'student score'

)comment 'students information table'

row format delimited fields terminated by ','

collection items terminated by '-'

tblproperties (

'creator'

='floret'

,'date'

='2020-11-16');

load data local inpath '/home/student.txt'

overwrite into table student;

create index student_index on table student

(sno)

as 'org.apache.hadoop.hive.ql.index.compact.compactindexhandler'

with deferred rebuild

in table student_index_table;

drop index if exists student_index on student;"#*

****

**** end ***

****

**#

評測

ending!

更多課程知識學習記錄隨後再來吧!

就醬,嘎啦!

注:人生在勤,不索何獲。

Hadoop大資料探勘從入門到高階實戰

大資料時代,資料的儲存與挖掘至關重要。企業在追求高可用性 高擴充套件性及高容錯性的大資料處理平台的同時還希望能夠降低成本,而hadoop為實現這些需求提供了解決方案。面對hadoop的普及和學習熱潮,筆者願意分享自己多年的開發經驗,帶領讀者比較輕鬆地掌握hadoop資料探勘的相關知識。這邊是筆者編寫...

大資料從入門到實戰 RDD的建立 Scala

二 實踐詳解 叮嘟!這裡是小啊嗚的學習課程資料整理。好記性不如爛筆頭,今天也是努力進步的一天。一起加油高階吧!spark提供了兩種建立rdd的方式 1 由乙個已經存在的scala集合進行建立。2 由外部儲存系統的資料集建立,包括本地的檔案系統,還有所有hadoop支援的資料集,比如hdfs cass...

Nginx從入門到實戰

什麼是nginx?nginx engine x 是一款輕量級的web 伺服器 反向 伺服器及電子郵件 imap pop3 伺服器。什麼是反向 反向 reverse proxy 方式是指以 伺服器來接受internet上的連線請求,然後將請求 給內部網路上的伺服器,並將從伺服器上得到的結果返回給int...