Hi team,
I enabled JAVA SCRIPT Filter in druid 0.10.0. I Would like to filter one of my Dimension which is holding JSON values in string Format
example: dime1={“name”:“sai”, “age”: 23, “height”: 5.6}
dime1={“name”:“chandu”, “age”: 23, “height”: 4.6}
—Now i would like to filter all my dime1 fields where age is equal to 23
i tried using JAVA-SCRIPT Filter in this docs http://druid.io/docs/0.10.0/querying/filters.html
{ “type”: “javascript”, “dimension”: “some_details”, “function”: "function(x) { var obj = JSON.parse(x); if(obj.age==23){return(JSON.stringify(obj))} }
but its giving this error…
Error: - {
“error”: “Unknown exception”,
“errorMessage”: “SyntaxError: Unexpected token in object literal (script#1)”,
“errorClass”: “org.mozilla.javascript.EcmaError”,
“host”: “druidserver.ecn.com:8083”
}
what is the proper syntax for JAVASCRIPT filter to search JSON string values in dimensions,?
Thanks in advance,
regards,
sai