Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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.
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.
Hi, thank you for the advice, and I think that can be done, I will try it first, thank you