spring blossoms and blessing of the ancients
Druid client that simplifies interactions with the Druid API.
You can either use the druid-client
as a Scala library or from command-line.
Import to your Scala project:
libraryDependencies ++= Seq("eu.m6r" %% "druid-client" % "0.1.2")
XML Example:
<task:taskConfig xmlns:task="http://m6r.eu/druid/client/task-config">
<!--1 or more repetitions:-->
<dimensions>string</dimensions>
<!--1 or more repetitions:-->
<metrics>
<type>string</type>
<name>string</name>
<fieldName>string</fieldName>
</metrics>
</task:taskConfig>
JSON Example (json config filename has to end with json
):
{
"taskConfig": {
"dimensions": [
"string"
],
"metrics": [
{
"type": "string",
"name": "string",
"fieldName": "string"
}
]
}
}
You can use models.Utils.parseTaskConfig(file)
to parse a task config file programmatically.
We support Scala 2.11 and 2.12. To do a cross-build that create jars for all supported Scala
versions, do:
sbt +package
To build fat jars:
sbt +assembly
sbt +publishSigned
Build and upload Scaladoc documentation to Github pages.
sbt ghpagesPushSite
.deb
with sbt..deb
to ubuntu package sources.