I have a column mapped to an Elasticsearch “scaled_float” but It is not visible from Dremio; I get a “
Column ‘duration’ not found in any table” error message. This is my ES mapping for the index:
{
"webserviceusage-2018-02-26" : {
"mappings" : {
"doc" : {
"properties" : {
"@timestamp" : {
"type" : "date"
},
"@version" : {
"type" : "text",
"index" : false
},
"clientName" : {
"type" : "keyword",
"index" : false
},
"createdTimestamp" : {
"type" : "text",
"index" : false
},
"duration" : {
"type" : "scaled_float",
"scaling_factor" : 1000.0
},
"entityName" : {
"type" : "keyword"
},
"entityValue" : {
"type" : "keyword"
},
"inputParameters" : {
"type" : "text"
},
"ipAddress" : {
"type" : "ip",
"index" : false,
"store" : true
},
"locationName" : {
"type" : "keyword",
"index" : false
},
"methodCall" : {
"type" : "keyword"
},
"outputParameters" : {
"type" : "text"
},
"serviceCall" : {
"type" : "keyword"
},
"status" : {
"type" : "keyword"
},
"userName" : {
"type" : "keyword",
"index" : false
},
"wsuID" : {
"type" : "keyword"
}
}
}
}
}
}
Thanks