'How to Load and Query data in Druid Timeseries Databases Using Java
I'm new to druid and currently I'm working on a project where data is collected in monthly or weekly basis and further this data is used for some analysis purpose. Currently I'm storing all the data collected in postgres with timestamp for each row. Now i've decided to go with timeseries databases(Druid), i've gone through the Druid docs and got to know how to load data into Druid through druid console (Basically I exported data into csv from my postgres and loaded that through druid console) and through commands. Now if i want to load and query data using Java how can i do that?.
As I'm not finding much resources regarding this, especially how to load data (in the form of CSV) into druid using Java, it would be very much helpful if someone guide me through this.
Solution 1:[1]
You can use druid client-apis
or use druidry
examples are here
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | ali |
