{
"__default": {
"group_tov": {
"version": "v1",
"lookupExtractorFactory": {
"type": "map",
"map": {'test': 'test1'}
}
}
}
}["__default"]
SELECT "BasePrice",
LOOKUP(CAST(id_tov_cl AS VARCHAR), "group_tov")
FROM "druid"."vv_checklines"
LIMIT 10Unknown exception (org.apache.calcite.tools.ValidationException): org.apache.calcite.runtime.CalciteContextException: From line 2, column 43 to line 2, column 51: Column 'group_tov' not found in any table--
You received this message because you are subscribed to the Google Groups "Druid User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+...@googlegroups.com.
To post to this group, send email to druid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/druid-user/2acdb34c-4f4e-4cb5-bf5c-9e1a0ea5c1f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Unknown exception (java.lang.NullPointerException): Lookup [group_tov] not foundYou can try few of the things to get it resolve.
Delete all the lookups which you are not using
either use "__default" as tier name or mention you tier whatever you want but don't forget to mention in ALL your runtime.properties with as druid.lookup.lookupTierIsDatasource=false druid.lookup.lookupTier=_default_tier
make sure GET is working on that lookup (see the documentation for get api for lookup )