Support Questions

Find answers, ask questions, and share your expertise

Does HDF support data transfer from Relational Databases(RDBMS) to HDFS

avatar
Contributor
 
1 ACCEPTED SOLUTION

avatar
Master Guru

Yes you can use the QueryDatabaseTable processor for incrementally retrieving data from a relational database table, see this article:

https://community.hortonworks.com/articles/51902/incremental-fetch-in-nifi-with-querydatabasetable.h...

Then you can use PutHDFS to store the data in HDFS.

View solution in original post

2 REPLIES 2

avatar
Master Guru

Yes you can use the QueryDatabaseTable processor for incrementally retrieving data from a relational database table, see this article:

https://community.hortonworks.com/articles/51902/incremental-fetch-in-nifi-with-querydatabasetable.h...

Then you can use PutHDFS to store the data in HDFS.

avatar
Contributor

Thanks Bryan Bende!