- Set up a cluster with more than 1 query node
- Create a function on each query node
- Query system:functions_cache -
SELECT * FROM system:functions_cache;
|
4. The query will return only those function cache entries on the query node that the query was fired to. And does not return all function cache entries across all query nodes. The query also returns a warning:
"warnings": [
|
{
|
"code": 11008,
|
"msg": "System datastore : scan on /admin/indexes/functions_cache failed - cause: object not found"
|
}
|
]
|
Issue |
Resolution |
Querying system:functions_cache in a multi query node cluster returned incomplete results with warnings. The query result included entries in the local query node, but none from remote query nodes. This was due to a typographical error. |
The typographical error has been corrected. |