Sqoop Notes
  • Introduction
  • Practicals
  • Sqoop 1 Vs Sqoop 2
  • Prerequisites
  • Import to HIVE
  • How data is distributed between mappers
Powered by GitBook
On this page

Was this helpful?

Prerequisites

  1. Each node in the cluster should have access to the database from which the data need to be imported.

  2. Make sure mysql client is installed on all the nodes ( datanodes) in the cluster and have the access to the MySQL server.

  3. We need to grant privileges for the IP's of the data nodes at the database end as below:

    grant all on *.* to ‘root’@’localhost’ with grant option;

    flush privileges;

PreviousSqoop 1 Vs Sqoop 2NextImport to HIVE

Last updated 5 years ago

Was this helpful?