You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to a change in how Kibana index patterns are initialized, loading certain pages that call the page's useResolver() with '' instead of undefined may fail to load because a call to _fields_for_wildcard fails to return for large clusters.
Investigation showed that until v7.9 in such a case a call to _fields_for_wildcard would not be triggered. The issue appears to happen on v7.10.0+.
The problem is that passing an empty string will end up for _fields_for_wildcard being called with ?pattern= which will try to return all field information for all indices.
The following pages are affected, they use useResolver('', ...):
Due to a change in how Kibana index patterns are initialized, loading certain pages that call the page's useResolver() with
''
instead ofundefined
may fail to load because a call to_fields_for_wildcard
fails to return for large clusters.Investigation showed that until
v7.9
in such a case a call to_fields_for_wildcard
would not be triggered. The issue appears to happen onv7.10.0+
.The problem is that passing an empty string will end up for
_fields_for_wildcard
being called with?pattern=
which will try to return all field information for all indices.The following pages are affected, they use
useResolver('', ...)
:/timeseriesexplorer
)/data_frame_analytics/exploration
)/data_frame_analytics
)/data_frame_analytics/models
)/filedatavisualizer
)The text was updated successfully, but these errors were encountered: