Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
diassatria
Contributor
Contributor

Data Integration with Influx DB

Hi,
I currently have a project to retrieve data from influxDB through talend and include data to Hadoop for processing, is there an implementation that has ever been implemented to integrate data with influxDB? how is the best practice?

Thank you for your advice

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

I've just had a quick read about InfluxDB (I've never used it). It looks like they supply a Java client (this could be used with Talend quite easily following this example....https://www.baeldung.com/java-influxdb) and a REST API. The REST API would require less coding, but might not give you access you require. The example using Java would be the one that I would attempt first. You could write this code into a tJavaFlex and use that as your data source.

View solution in original post

2 Replies
Anonymous
Not applicable

I've just had a quick read about InfluxDB (I've never used it). It looks like they supply a Java client (this could be used with Talend quite easily following this example....https://www.baeldung.com/java-influxdb) and a REST API. The REST API would require less coding, but might not give you access you require. The example using Java would be the one that I would attempt first. You could write this code into a tJavaFlex and use that as your data source.

diassatria
Contributor
Contributor
Author

Hi, thank you for the advice, and I think that can be done, I will try it first, thank you