Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Which nodes port to open in hadoop cluster for Sqoop export?

avatar

Usecase : Export data from Hadoop cluster using Sqoop.

Question : From which node Sqoop exports data ? is it Name node or any data node?

1 ACCEPTED SOLUTION

avatar
Master Mentor

@pratik vagyani

An example of Sqoop’s export process will be to read a set of delimited text files from HDFS in parallel, parse them into records, and insert them as new rows in a target database table, for consumption by external applications or users.

So ideally it can be any node in your HDP cluster where you have the sqoop installed and can access the HDFS.

View solution in original post

3 REPLIES 3

avatar
Master Mentor

@pratik vagyani

An example of Sqoop’s export process will be to read a set of delimited text files from HDFS in parallel, parse them into records, and insert them as new rows in a target database table, for consumption by external applications or users.

So ideally it can be any node in your HDP cluster where you have the sqoop installed and can access the HDFS.

avatar

Thanks Jay.