使用sqoop將mysql資料匯入hbase

2021-08-27 14:05:06 字數 1047 閱讀 1597

下表:

1、通過hbase shell 開啟hbase。

2、建立乙個hbase表

3、將so表的資料匯入到hbase中。

opt檔案:

--connect:資料庫
--username :資料庫使用者名稱
--password :資料庫密碼
--table :需要sqoop的表
--columns :表中的列
--hbase-table:hbase中的table
--column-family:列族
--hbase-row-key:指定rowkey
import 

--connect

jdbc:mysql:

--username

root

--password

123456-m1

--null-string

''--table

so--columns

"date,order_id,user_id,order_amt,order_id_new"

--hbase-table

so--column-family

o--hbase-row-key

order_id_new

**:

使用sqoop將mysql資料匯入到hive中

首先準備工具環境 hadoop2.7 mysql5.7 sqoop1.4 hive3.1 準備一張資料庫表 接下來就可以操作了。一 將mysql資料匯入到hdfs 首先我測試將zhaopin表中的前100條資料匯出來,只要id jobname salarylevel三個字段。再hdfs上建立目錄 h...

Sqoop將資料從Mysql匯入Hive中

hive匯入引數 hive home 重寫 hive home hive import 插入資料到hive當中,使用hive的預設分隔符 hive overwrite 重寫插入 create hive table 建表,如果表已經存在,該操作會報錯!hive table table 設定到hive當...

利用Sqoop將MySQL資料匯入Hive中

參考 1.list databases sqoop list databases connect jdbc mysql username sqoop password sqoop 2.用sqoop建立hive表 sqoop create hive table connect jdbc mysql x...