溫馨提示×

溫馨提示×

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

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

Sqoop的原理分析是什么

發(fā)布時間:2022-01-14 15:41:03 來源:億速云 閱讀:169 作者:柒染 欄目:云計算

這篇文章主要為大家分析了Sqoop的原理分析是什么的相關(guān)知識點,內(nèi)容詳細易懂,操作細節(jié)合理,具有一定參考價值。如果感興趣的話,不妨跟著跟隨小編一起來看看,下面跟著小編一起深入學(xué)習(xí)“Sqoop的原理分析是什么”的知識吧。

一簡介

Sqoop是一個用來將Hadoop和關(guān)系型數(shù)據(jù)庫中的數(shù)據(jù)相互轉(zhuǎn)移的工具,可以將一個關(guān)系型數(shù)據(jù)庫(例如 : MySQL ,Oracle ,Postgres等)中的數(shù)據(jù)導(dǎo)進到Hadoop的HDFS中,也可以將HDFS的數(shù)據(jù)導(dǎo)進到關(guān)系型數(shù)據(jù)庫中。

二特點

Sqoop中一大亮點就是可以通過hadoop的mapreduce把數(shù)據(jù)從關(guān)系型數(shù)據(jù)庫中導(dǎo)入數(shù)據(jù)到HDFS。

三 Sqoop 命令

Sqoop大約有13種命令,和幾種通用的參數(shù)(都支持這13種命令),這里先列出這13種命令。

接 著列出Sqoop的各種通用參數(shù),然后針對以上13個命令列出他們自己的參數(shù)。Sqoop通用參數(shù)又分Common arguments,Incremental import arguments,Output line formatting arguments,Input parsing arguments,Hive arguments,HBase arguments,Generic Hadoop command-line arguments,下面一一說明:

1.Common arguments

通用參數(shù),主要是針對關(guān)系型數(shù)據(jù)庫鏈接的一些參數(shù)

四  sqoop命令舉例

1)列出mysql數(shù)據(jù)庫中的所有數(shù)據(jù)庫

sqoop list-databases –connect jdbc:mysql://localhost:3306/ –username root –password 123456

2)連接mysql并列出test數(shù)據(jù)庫中的表

sqoop list-tables –connect jdbc:mysql://localhost:3306/test –username root –password 123456

命令中的test為mysql數(shù)據(jù)庫中的test數(shù)據(jù)庫名稱 username password分別為mysql數(shù)據(jù)庫的用戶密碼

3)將關(guān)系型數(shù)據(jù)的表結(jié)構(gòu)復(fù)制到hive中,只是復(fù)制表的結(jié)構(gòu),表中的內(nèi)容沒有復(fù)制過去。

sqoop create-hive-table –connect jdbc:mysql://localhost:3306/test

–table sqoop_test –username root –password 123456 –hive-table

test

其中 –table sqoop_test為mysql中的數(shù)據(jù)庫test中的表 –hive-table

test 為hive中新建的表名稱

4)從關(guān)系數(shù)據(jù)庫導(dǎo)入文件到hive中

sqoop import –connect jdbc:mysql://localhost:3306/zxtest –username

root –password 123456 –table sqoop_test –hive-import –hive-table

s_test -m 1

5)將hive中的表數(shù)據(jù)導(dǎo)入到mysql中,在進行導(dǎo)入之前,mysql中的表

hive_test必須已經(jīng)提前創(chuàng)建好了。

sqoop export –connect jdbc:mysql://localhost:3306/zxtest –username

root –password root –table hive_test –export-dir

/user/hive/warehouse/new_test_partition/dt=2012-03-05

6)從數(shù)據(jù)庫導(dǎo)出表的數(shù)據(jù)到HDFS上文件

./sqoop import –connect

jdbc:mysql://10.28.168.109:3306/compression –username=hadoop

–password=123456 –table HADOOP_USER_INFO -m 1 –target-dir

/user/test

7)從數(shù)據(jù)庫增量導(dǎo)入表數(shù)據(jù)到hdfs中

./sqoop import –connect jdbc:mysql://10.28.168.109:3306/compression

–username=hadoop –password=123456 –table HADOOP_USER_INFO -m 1

–target-dir /user/test  –check-column id –incremental append

–last-value 3

五 Sqoop原理(以import為例)

Sqoop在import時,需要制定split-by參數(shù)。Sqoop根據(jù)不同的split-by參數(shù)值來進行切 分,然后將切分出來的區(qū)域分配到不同map中。每個map中再處理數(shù)據(jù)庫中獲取的一行一行的值,寫入到HDFS中。同時split-by根據(jù)不同的參數(shù)類 型有不同的切分方法,如比較簡單的int型,Sqoop會取最大和最小split-by字段值,然后根據(jù)傳入的num-mappers來確定劃分幾個區(qū) 域。 比如select max(split_by),min(split-by) from得到的max(split-by)和min(split-by)分別為1000和1,而num-mappers為2的話,則會分成兩個區(qū)域 (1,500)和(501-100),同時也會分成2個sql給2個map去進行導(dǎo)入操作,分別為select XXX from table where split-by>=1 and split-by<500和select XXX from table where split-by>=501 and split-by<=1000。最后每個map各自獲取各自SQL中的數(shù)據(jù)進行導(dǎo)入工作。

六mapreduce job所需要的各種參數(shù)在Sqoop中的實現(xiàn)

1) InputFormatClass

com.cloudera.sqoop.mapreduce.db.DataDrivenDBInputFormat

2) OutputFormatClass

1)TextFile

com.cloudera.sqoop.mapreduce.RawKeyTextOutputFormat

2)SequenceFile

org.apache.hadoop.mapreduce.lib.output.SequenceFileOutputFormat

3)AvroDataFile

com.cloudera.sqoop.mapreduce.AvroOutputFormat

3)Mapper

1)TextFile

com.cloudera.sqoop.mapreduce.TextImportMapper                 

2)SequenceFile

com.cloudera.sqoop.mapreduce.SequenceFileImportMapper        

3)AvroDataFile

com.cloudera.sqoop.mapreduce.AvroImportMapper

4)taskNumbers

1)mapred.map.tasks(對應(yīng)num-mappers參數(shù))   

2)job.setNumReduceTasks(0);

這里以命令行:import –connect jdbc:mysql://localhost/test  –username root –password 123456 –query “select sqoop_1.id as foo_id, sqoop_2.id as bar_id from sqoop_1 ,sqoop_2  WHERE $CONDITIONS” –target-dir /user/sqoop/test -split-by sqoop_1.id   –hadoop-home=/home/hdfs/hadoop-0.20.2-CDH3B3  –num-mappers 2

1)設(shè)置Input

DataDrivenImportJob.configureInputFormat(Job job, String tableName,String tableClassName, String splitByCol)

a)DBConfiguration.configureDB(Configuration conf, String driverClass,     String dbUrl, String userName, String passwd, Integer fetchSize)

1).mapreduce.jdbc.driver.class com.mysql.jdbc.Driver

2).mapreduce.jdbc.url  jdbc:mysql://localhost/test              

3).mapreduce.jdbc.username  root

4).mapreduce.jdbc.password  123456

5).mapreduce.jdbc.fetchsize -2147483648

b)DataDrivenDBInputFormat.setInput(Job job,Class<? extends DBWritable> inputClass, String inputQuery, String inputBoundingQuery)

1)job.setInputFormatClass(DBInputFormat.class);                 

2)mapred.jdbc.input.bounding.query SELECT MIN(sqoop_1.id), MAX(sqoop_2.id) FROM (select sqoop_1.id as foo_id, sqoop_2.id as bar_id from sqoop_1 ,sqoop_2  WHERE  (1 = 1) ) AS t1

3)job.setInputFormatClass(com.cloudera.sqoop.mapreduce.db.DataDrivenDBInputFormat.class);

4)mapreduce.jdbc.input.orderby sqoop_1.id

c)mapreduce.jdbc.input.class QueryResult

d)sqoop.inline.lob.length.max 16777216

2)設(shè)置Output

ImportJobBase.configureOutputFormat(Job job, String tableName,String tableClassName)

a)job.setOutputFormatClass(getOutputFormatClass());               

b)FileOutputFormat.setOutputCompressorClass(job, codecClass);

c)SequenceFileOutputFormat.setOutputCompressionType(job,CompressionType.BLOCK);

d)FileOutputFormat.setOutputPath(job, outputPath);

3)設(shè)置Map

DataDrivenImportJob.configureMapper(Job job, String tableName,String tableClassName)

     a)job.setOutputKeyClass(Text.class);
     b)job.setOutputValueClass(NullWritable.class);
c)job.setMapperClass(com.cloudera.sqoop.mapreduce.TextImportMapper);

4)設(shè)置task number

JobBase.configureNumTasks(Job job)

mapred.map.tasks 4

job.setNumReduceTasks(0);

七 大概流程

1.讀取要導(dǎo)入數(shù)據(jù)的表結(jié)構(gòu),生成運行類,默認是QueryResult,打成jar包,然后提交給Hadoop

2.設(shè)置好job,主要也就是設(shè)置好以上第六章中的各個參數(shù)

3.這里就由Hadoop來執(zhí)行MapReduce來執(zhí)行Import命令了,

1)首先要對數(shù)據(jù)進行切分,也就是DataSplit

DataDrivenDBInputFormat.getSplits(JobContext job)

2)切分好范圍后,寫入范圍,以便讀取

DataDrivenDBInputFormat.write(DataOutput output) 這里是lowerBoundQuery and  upperBoundQuery

3)讀取以上2)寫入的范圍

DataDrivenDBInputFormat.readFields(DataInput input)

4)然后創(chuàng)建RecordReader從數(shù)據(jù)庫中讀取數(shù)據(jù)

DataDrivenDBInputFormat.createRecordReader(InputSplit split,TaskAttemptContext context)

5)創(chuàng)建Map

TextImportMapper.setup(Context context)

6)RecordReader一行一行從關(guān)系型數(shù)據(jù)庫中讀取數(shù)據(jù),設(shè)置好Map的Key和Value,交給Map

DBRecordReader.nextKeyValue()

7)運行map

TextImportMapper.map(LongWritable key, SqoopRecord val, Context context)

最后生成的Key是行數(shù)據(jù),由QueryResult生成,Value是NullWritable.get()

關(guān)于“Sqoop的原理分析是什么”就介紹到這了,更多相關(guān)內(nèi)容可以搜索億速云以前的文章,希望能夠幫助大家答疑解惑,請多多支持億速云網(wǎng)站!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI