Sqoop Import control parallelism using mappers - DataShark.Academy

Sqoop Import Controlling Parallelism

This post may contain affiliate links. Please read our disclosure for more info.

This solution is part of our Apache Sqoop tutorial.

In this lesson lets talk about parallelism. Sqoop internally uses –num-mappers parameters to set default value of mappers to 4. Which means sqoop import command will split the source MySQL table into 4 tasks by default.

Sqoop Import control parallelism using mappers - DataShark.Academy

Each task will be handled by one mapper process. After process completes, mapper task will dump its result into a flat file on HDFS. Although it’s not recommended to reduce the # of mappers but say you want to create one single output file on HDFS, then this can be achieved by setting num-mappers parameter to 1.

Likewise, if the source table is big, you should increase the number of mappers to increase degree of parallelism which eventually will finish the import process sooner.

You can read more about Hadoop in our post – 6 Reasons Why Hadoop is THE Best Choice for Big Data Applications.

Why you must learn about Sqoop?

Apache Sqoop architecture is designed to import data from relational databases such as Oracle, MySQL, etc to Hadoop systems. Hadoop is ideal for batch processing of huge amounts of data. It is industry standard nowadays.

In real world scenarios, using sqoop you can transfer the data from relational tables into Hadoop and then leverage the parallel processing capabilities of Hadoop to process huge amounts of data and generate meaningful data insights. The results of Hadoop processing can again be stored back to relational tables using sqoop export functionality.

As sqoop is one of the integral part of Big data hadoop systems, it is often asked in big data job interviews. This post walks you through a sqoop import example which will help you with those sqoop interview questions.

You might also like:   How to Debug Sqoop Commands

 

How to install Hadoop

Before proceeding with this exercise, you must have Hadoop installed on your machine.

If you are using a Macbook/Linux computer then refer this step by step guide on installing Hadoop on a Macbook.

In case you are a windows PC user, then refer this guide to install Apache Hadoop on your windows PC.

Assuming that you have already installed Apache Hadoop on your computer.

Learn Hadoop- The Definitive Guide - DataShark Academy

Next you need to do 2 more installations before you are ready to run the sqoop import commands:

  1. Install MySQL – For this you can perform mysql download first and then follow instructions to install MySQL on windows or Macbook.
  2. Sqoop Installation – Here as well, first do sqoop download and then follow instructions to install sqoop on windows or Macbook.

The great news is that if you have followed the steps from our guide to install Apache Hadoop on Windows PC, then you don’t need to do either of this aka install MySQL or Sqoop installation. They come pre-built into Hortonworks Data Platform Sandbox package which makes life much easier.

But if you are a Macbook or Linux machine user, then you can use brew utility to install MySQL and Sqoop very easily too. Here are the steps for Mac/Linux users:

Install MySQL

In order to install mysql on a Macbook or Linux machine, just run below command on terminal:

brew install mysql

It will automatically download latest release of MySQL including all dependencies with it and install on your computer.

 

Sqoop Installation

In order to install sqoop on Macbook or Linux machines, just run below command on terminal prompt:

brew install sqoop

This will automatically download sqoop from internet and install it on your machine.

You might also like:   Simple Sqoop Import using Warehouse Directive

 

Sqoop Import Controlling Parallelism

After following all installation steps above, you are ready to proceed with sqoop import process. In this exercise, we will use num-mappers directive from apache sqoop. Using this sqoop directive, we can control how many mapper tasks will be invoked by our sqoop command.

Let’s look at the command first and we will go through it in detail next

 

sqoop import \
--connect jdbc:mysql://sandbox-hdp.hortonworks.com/sqoop \
--username root \
--password hadoop \
--table employees \
--target-dir /sqoop/employees_2_mappers \
--driver com.mysql.jdbc.Driver \
--num-mappers 2

How sqoop import command works

In above sqoop import command, we are importing all records from ’employees’ table in MySQL database called ‘sqoop’

–connect

To connect to database, we used –connect directive followed by JDBC connection string to mysql database.

--connect jdbc:mysql://sandbox-hdp.hortonworks.com/sqoop

For Mac/Linux users, the mysql connection string will look something like:

--connect jdbc:mysql://127.0.0.1:3306/sqoop

–username

This is username for MySQL database

–password

This is password for MySQL database

–table

This is the table that you want to import from MySQL database. In our case, we are importing ’employees’ table.

–target-dir

This is target directory on hadoop distributed file system (HDFS) where you would like the data be copied to. You can pass in full HDFS URI or just the absolute path from root directory on HDFS.

In our case it is set to /sqoop/employees_2_mappers

–driver

This directive specifies the driver to be used for making JDBC connection with MySQL database.

BECOME APACHE KAFKA GURU – ZERO TO HERO IN MINUTES

ENROLL TODAY & GET 90% OFF

Apache Kafka Tutorial by DataShark.Academy

You can set it to – com.mysql.jdbc.Driver

You might also like:   Sqoop Import Tables Without Primary Keys

num-mappers

This sqoop command directive controls how many mappers will be launched behind the scene for your sqoop import command. We are setting it to 2 in this example.

 

Run Sqoop Command

In order to run this command, open the terminal on your computer and paste above sqoop import command into it and press enter. When you do that, Sqoop will launch 2 map tasks in this case. Each map task will create one output file on HDFS. Overall data in MySQL table – employees will be distributed equally among 2 map tasks which will create 2 files on HDFS.

 

We hope you enjoyed this sqoop lesson on how to control number of mapper tasks in a sqoop command and eventually control number of output files on HDFS.

 

 


[jetpack-related-posts]

Leave a Reply

Scroll to top