Manas Kumar
Manas Kumar

Reputation: 13

How to extract data from hive table to csv using talend

I want ot transfer data from one hadoop server to another hadoop server with help of Talend.

Through my research I come to know we can transfer data through flat files.Can any one suggest me how to transfer data from hive to flat file. If any other alternative way to transfer data using talend please suggest me.

Upvotes: 0

Views: 1249

Answers (1)

Aswin Senniappan
Aswin Senniappan

Reputation: 11

You can use the tHiveInput Component to read the data from the hive table. Use a row link to connect it to a tfileInputDelimited component.

If you want to transfer to another Hadoop system, you can use a tHiveOutput or a tHDFSOutput instead of tFileInputDelimited.

Upvotes: 1

Related Questions