Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/implydata/druid-client
Java client for http://druid.io/
https://github.com/implydata/druid-client
Last synced: 3 months ago
JSON representation
Java client for http://druid.io/
- Host: GitHub
- URL: https://github.com/implydata/druid-client
- Owner: implydata
- License: apache-2.0
- Created: 2016-10-27T03:58:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T01:51:29.000Z (almost 7 years ago)
- Last Synced: 2024-04-14T20:22:57.737Z (7 months ago)
- Language: Java
- Size: 14.6 KB
- Stars: 34
- Watchers: 12
- Forks: 25
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Druid Client
This is a client that can be used to make Druid queries from the JVM. Note that unlike the
[JSON query API](http://druid.io/docs/latest/querying/querying.html), this depends on non-stable Druid
APIs. You may need to adjust code even for minor Druid updates.### Installation
To install this library, run `mvn install`. You can then include it in projects with Maven by using
the dependency:```xml
io.imply
druid-client
0.1-SNAPSHOT```
### Example
Check out [ExampleMain.java](https://github.com/implydata/druid-client/blob/master/src/main/java/io/imply/druid/query/ExampleMain.java) for example code.