I have injected data to Druid using tranquility. The data source is visible through overlord's console, all good I can query.
- Tranquility 0.1.0
- Druid 12.3
- Superset 0.1.0
When I attach Druid's datasource to Superset I see that all defined columns are of type String. That is pretty weird because I defined types in the tranquility schema as follow:
"dimensionsSpec": {
"dimensions": [
"some_id",
{
"type": "double",
"name": "total_positions"
}]
}
I tried to use Calculated Columns and Metrics but when I save those new element are not appearing in Druid. Druid chart -> datasource editor
Did anyone has a similar issue? Is there any way I can change column type in Superset or maybe the schema should be defined some different way.