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
In scenarios with high cardinality columns like clientIp in HTTP logs, the resulting value set can become exceedingly large. This leads to the creation of huge array fields within a single OpenSearch document.
How can one reproduce the bug?
CREATE SKIPPING INDEX ON http_logs
(status VALUE_SET)
WITH (
auto_refresh=true
);
What is the expected behavior?
Either raise exception beforehand or provide other data structure like BloomFilter in #193
The text was updated successfully, but these errors were encountered:
What is the bug?
In scenarios with high cardinality columns like
clientIp
in HTTP logs, the resulting value set can become exceedingly large. This leads to the creation of huge array fields within a single OpenSearch document.How can one reproduce the bug?
What is the expected behavior?
Either raise exception beforehand or provide other data structure like BloomFilter in #193
The text was updated successfully, but these errors were encountered: