Apache Sqoop - Overview?(概述)?

Apache Sqoop 概述

使用Hadoop來分析和處理數據需要將數據加載到集群中并且將它和企業生產數據庫中的其他數據進行結合處理。從生產系統加載大塊數據到Hadoop中或者從大型集群的map reduce應用中獲得數據是個挑戰。用戶必須意識到確保數據一致性,消耗生產系統資源,供應下游管道的數據預處理這些細節。用腳本來轉化數據是低效和耗時的方式。使用map reduce應用直接去獲取外部系統的數據使得應用變得復雜和增加了生產系統來自集群節點過度負載的風險。

這就是Apache Sqoop能夠做到的。Aapche Sqoop 目前是Apache軟件會的孵化項目。更多關于這個項目的信息可以在http://incubator.apache.org/sqoop查看

Sqoop能夠使得像關系型數據庫、企業數據倉庫和NoSQL系統那樣簡單地從結構化數據倉庫中導入導出數據。你可以使用Sqoop將數據從外部系統加載到HDFS,存儲在Hive和HBase表格中。Sqoop配合Ooozie能夠幫助你調度和自動運行導入導出任務。Sqoop使用基于支持插件來提供新的外部鏈接的連接器。

當你運行Sqoop的時候看起來是非常簡單的,但是表象底層下面發生了什么呢?數據集將被切片分到不同的partitions和運行一個只有map的作業來負責數據集的某個切片。因為Sqoop使用數據庫的元數據來推斷數據類型所以每條數據都以一種類型安全的方式來處理。

在這篇文章其余部分中我們將通過一個例子來展示Sqoop的各種使用方式。這篇文章的目標是提供Sqoop操作的一個概述而不是深入高級功能的細節。

導入數據

下面的命令用于將一個MySQL數據庫中名為ORDERS的表中所有數據導入到集群中---

$ sqoop import --connect jdbc:mysql://localhost/acmedb \

?--table ORDERS --username test --password ****

在這條命令中的各種選項解釋如下:

import: 指示Sqoop開始導入

--connect , --username , --password : 這些都是連接數據庫時需要的參數。這跟你通過JDBC連接數據庫時所使用的參數沒有區別

--table: 指定要導入哪個表

導入操作通過下面Figure1所描繪的那兩步來完成。第一步,Sqoop從數據庫中獲取要導入的數據的元數據。第二步,Sqoop提交map-only作業到Hadoop集群中。第二步通過在前一步中獲取的元數據做實際的數據傳輸工作。

Figure 1: Sqoop Import Overview

導入的數據存儲在HDFS目錄下。正如Sqoop大多數操作一樣,用戶可以指定任何替換路徑來存儲導入的數據。

默認情況下這些文檔包含用逗號分隔的字段,用新行來分隔不同的記錄。你可以明確地指定字段分隔符和記錄結束符容易地實現文件復制過程中的格式覆蓋。

Sqoop也支持不同數據格式的數據導入。例如,你可以通過指定 --as-avrodatafile 選項的命令行來簡單地實現導入Avro 格式的數據。

Sqoop提供許多選項可以用來滿足指定需求的導入操作。

導入數據到 Hive

在許多情況下,導入數據到Hive就跟運行一個導入任務然后使用Hive創建和加載一個確定的表和partition。手動執行這個操作需要你要知道正確的數據類型映射和其他細節像序列化格式和分隔符。Sqoop負責將合適的表格元數據填充到Hive 元數據倉庫和調用必要的指令來加載table和partition。這些操作都可以通過簡單地在命令行中指定--hive-import 來實現。

$ sqoop import --connect jdbc:mysql://localhost/acmedb \

?--table ORDERS --username test --password **** --hive-import

當你運行一個Hive import時,Sqoop將會將數據的類型從外部數據倉庫的原生數據類型轉換成Hive中對應的類型,Sqoop自動地選擇Hive使用的本地分隔符。如果被導入的數據中有新行或者有其他Hive分隔符,Sqoop允許你移除這些字符并且獲取導入到Hive的正確數據。

一旦導入操作完成,你就像Hive其他表格一樣去查看和操作。

導入數據到 HBase

你可以使用Sqoop將數據插入到HBase表格中特定列族。跟Hive導入操作很像,可以通過指定一個額外的選項來指定要插入的HBase表格和列族。所有導入到HBase的數據將轉換成字符串并以UTF-8字節數組的格式插入到HBase中

$ sqoop import --connect jdbc:mysql://localhost/acmedb \

--table ORDERS --username test --password **** \

--hbase-create-table --hbase-table ORDERS --column-family mysql

下面是命令行中各種選項的解釋:

--hbase-create-table: 這個選項指示Sqoop創建HBase表.

--hbase-table: 這個選項指定HBase表格的名字.

--column-family: T這個選項指定列族的名字.

剩下的選項跟普通的導入操作一樣。

導出數據

在一些情況中,通過Hadoop pipelines來處理數據可能需要在生產系統中運行額外的關鍵業務函數來提供幫助。Sqoop可以在必要的時候用來導出這些的數據到外部數據倉庫。還是使用上面的例子,如果Hadoop pieplines產生的數據對應數據庫OREDERS表格中的某些地方,你可以使用下面的命令行:

$ sqoop export --connect jdbc:mysql://localhost/acmedb \

--table ORDERS --username test --password **** \

--export-dir /user/arvind/ORDERS

下面是各種選項的解釋:

export: 指示Sqoop開始導出

--connect , --username , --password :這些都是連接數據庫時需要的參數。這跟你通過JDBC連接數據庫時所使用的參數沒有區別

--table: 指定要被填充的表格

--export-dir : 導出路徑.

導入操作通過下面Figure2所描繪的那兩步來完成。第一步,從數據庫中獲取要導入的數據的元數據,第二步則是數據的傳輸。Sqoop將輸入數據集分割成片然后用map任務將片插入到數據庫中。為了確保最佳的吞吐量和最小的資源使用率,每個map任務通過多個事務來執行這個數據傳輸。


Figure 2: Sqoop Export Overview

一些連接器支持臨時表格來幫助隔離那些任何原因導致的作業失敗而產生的生產表格。一旦所有的數據都傳輸完成,臨時表格中的數據首先被填充到map任務和合并到目標表格。

Sqoop 連接器

使用專門連接器,Sqoop可以連接那些擁有優化導入導出基礎設施的外部系統,或者不支持本地JDBC。連接器是插件化組件基于Sqoop的可擴展框架和可以添加到任何當前存在的Sqoop。一旦連接器安裝好,Sqoop可以使用它在Hadoop和連接器支持的外部倉庫之間進行高效的傳輸數據。

默認情況下,Sqoop包含支持各種常用數據庫例如MySQL,PostgreSQL,Oracle,SQLServer和DB2的連接器。它也包含支持MySQL和PostgreSQL數據庫的快速路徑連接器。快速路徑連接器是專門的連接器用來實現批次傳輸數據的高吞吐量。Sqoop也包含一般的JDBC連接器用于連接通過JDBC連接的數據庫

跟內置的連接不同的是,許多公司會開發他們自己的連接器插入到Sqoop中,從專門的企業倉庫連接器到NoSQL數據庫。

總結

在這篇文檔中可以看到大數據集在Hadoop和外部數據倉庫例如關系型數據庫的傳輸是多么的簡單。除此之外,Sqoop提供許多高級提醒如不同數據格式、壓縮、處理查詢等等。我們建議你多嘗試Sqoop并給我們提供反饋。

更多關于Sqoop的信息可以在下面路徑找到:

Project Website: http://incubator.apache.org/sqoop

Wiki: https://cwiki.apache.org/confluence/display/SQOOP

Project Status: ?http://incubator.apache.org/projects/sqoop.html

Mailing Lists: https://cwiki.apache.org/confluence/display/SQOOP/Mailing+Lists


下面是原文


Apache Sqoop - Overview

Using Hadoop for analytics and data processing requires loading data into clusters and processing it in conjunction with other data that often resides in production databases across the enterprise. Loading bulk data into Hadoop from production systems or accessing it from map reduce applications running on large clusters can be a challenging task. Users must consider details like ensuring consistency of data, the consumption of production system resources, data preparation for provisioning downstream pipeline. Transferring data using scripts is inefficient and time consuming. Directly accessing data residing on external systems from within the map reduce applications complicates applications and exposes the production system to the risk of excessive load originating from cluster nodes.

This is where Apache Sqoop fits in. Apache Sqoop is currently undergoing incubation at Apache Software Foundation. More information on this project can be found at http://incubator.apache.org/sqoop.

Sqoop allows easy import and export of data from structured data stores such as relational databases, enterprise data warehouses, and NoSQL systems. Using Sqoop, you can provision the data from external system on to HDFS, and populate tables in Hive and HBase. Sqoop integrates with Oozie, allowing you to schedule and automate import and export tasks. Sqoop uses a connector based architecture which supports plugins that provide connectivity to new external systems.

What happens underneath the covers when you run Sqoop is very straightforward. The dataset being transferred is sliced up into different partitions and a map-only job is launched with individual mappers responsible for transferring a slice of this dataset. Each record of the data is handled in a type safe manner since Sqoop uses the database metadata to infer the data types.

In the rest of this post we will walk through an example that shows the various ways you can use Sqoop. The goal of this post is to give an overview of Sqoop operation without going into much detail or advanced functionality.

Importing Data

The following command is used to import all data from a table called ORDERS from a MySQL database:

---

$ sqoop import --connect jdbc:mysql://localhost/acmedb \

?--table ORDERS --username test --password ****

---

In this command the various options specified are as follows:

import: This is the sub-command that instructs Sqoop to initiate an import.

--connect , --username , --password : These are connection parameters that are used to connect with the database. This is no different from the connection parameters that you use when connecting to the database via a JDBC connection.

--table: This parameter specifies the table which will be imported.

The import is done in two steps as depicted in Figure 1 below. In the first Step Sqoop introspects the database to gather the necessary metadata for the data being imported. The second step is a map-only Hadoop job that Sqoop submits to the cluster. It is this job that does the actual data transfer using the metadata captured in the previous step.


Figure 1: Sqoop Import Overview

The imported data is saved in a directory on HDFS based on the table being imported. As is the case with most aspects of Sqoop operation, the user can specify any alternative directory where the files should be populated.

By default these files contain comma delimited fields, with new lines separating different records. You can easily override the format in which data is copied over by explicitly specifying the field separator and record terminator characters.

Sqoop also supports different data formats for importing data. For example, you can easily import data in Avro data format by simply specifying the option --as-avrodatafile with the import command.

There are many other options that Sqoop provides which can be used to further tune the import operation to suit your specific requirements.

Importing Data into Hive

In most cases, importing data into Hive is the same as running the import task and then using Hive to create and load a certain table or partition. Doing this manually requires that you know the correct type mapping between the data and other details like the serialization format and delimiters. Sqoop takes care of populating the Hive metastore with the appropriate metadata for the table and also invokes the necessary commands to load the table or partition as the case may be. All of this is done by simply specifying the option --hive-import with the import command.

----

$ sqoop import --connect jdbc:mysql://localhost/acmedb \

?--table ORDERS --username test --password **** --hive-import

----

When you run a Hive import, Sqoop converts the data from the native datatypes within the external datastore into the corresponding types within Hive. Sqoop automatically chooses the native delimiter set used by Hive. If the data being imported has new line or other Hive delimiter characters in it, Sqoop allows you to remove such characters and get the data correctly populated for consumption in Hive.

Once the import is complete, you can see and operate on the table just like any other table in Hive.

Importing Data into HBase

You can use Sqoop to populate data in a particular column family within the HBase table. Much like the Hive import, this can be done by specifying the additional options that relate to the HBase table and column family being populated. All data imported into HBase is converted to their string representation and inserted as UTF-8 bytes.

----

$ sqoop import --connect jdbc:mysql://localhost/acmedb \

--table ORDERS --username test --password **** \

--hbase-create-table --hbase-table ORDERS --column-family mysql

----

In this command the various options specified are as follows:

--hbase-create-table: This option instructs Sqoop to create the HBase table.

--hbase-table: This option specifies the table name to use.

--column-family: This option specifies the column family name to use.

The rest of the options are the same as that for regular import operation.

Exporting Data

In some cases data processed by Hadoop pipelines may be needed in production systems to help run additional critical business functions. Sqoop can be used to export such data into external datastores as necessary. Continuing our example from above - if data generated by the pipeline on Hadoop corresponded to the ORDERS table in a database somewhere, you could populate it using the following command:

----

$ sqoop export --connect jdbc:mysql://localhost/acmedb \

--table ORDERS --username test --password **** \

--export-dir /user/arvind/ORDERS

----

In this command the various options specified are as follows:

export: This is the sub-command that instructs Sqoop to initiate an export.

--connect , --username , --password : These are connection parameters that are used to connect with the database. This is no different from the connection parameters that you use when connecting to the database via a JDBC connection.

--table: This parameter specifies the table which will be populated.

--export-dir : This is the directory from which data will be exported.

Export is done in two steps as depicted in Figure 2. The first step is to introspect the database for metadata, followed by the second step of transferring the data. Sqoop divides the input dataset into splits and then uses individual map tasks to push the splits to the database. Each map task performs this transfer over many transactions in order to ensure optimal throughput and minimal resource utilization.


Figure 2: Sqoop Export Overview

Some connectors support staging tables that help isolate production tables from possible corruption in case of job failures due to any reason. Staging tables are first populated by the map tasks and then merged into the target table once all of the data has been delivered it.

Sqoop Connectors

Using specialized connectors, Sqoop can connect with external systems that have optimized import and export facilities, or do not support native JDBC. Connectors are plugin components based on Sqoop’s extension framework and can be added to any existing Sqoop installation. Once a connector is installed, Sqoop can use it to efficiently transfer data between Hadoop and the external store supported by the connector.

By default Sqoop includes connectors for various popular databases such as MySQL, PostgreSQL, Oracle, SQL Server and DB2. It also includes fast-path connectors for MySQL and PostgreSQL databases. Fast-path connectors are specialized connectors that use database specific batch tools to transfer data with high throughput. Sqoop also includes a generic JDBC connector that can be used to connect to any database that is accessible via JDBC.

Apart from the built-in connectors, many companies have developed their own connectors that can be plugged into Sqoop. These range from specialized connectors for enterprise data warehouse systems to NoSQL datastores.

Wrapping Up

In this post you saw how easy it is to transfer large datasets between Hadoop and external datastores such as relational databases. Beyond this, Sqoop offers many advance features such as different data formats, compression, working with queries instead of tables etc. We encourage you to try out Sqoop and give us your feedback.

More information regarding Sqoop can be found at:

Project Website: http://incubator.apache.org/sqoop

Wiki: https://cwiki.apache.org/confluence/display/SQOOP

Project Status: ?http://incubator.apache.org/projects/sqoop.html

Mailing Lists: https://cwiki.apache.org/confluence/display/SQOOP/Mailing+Lists

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容