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
When running the latest main (410069d) and the configuration from the kibana-sample-data example, too many fields end up in the attributes, instead of a separate column. With the current version of Quesma it makes it impossible to query the data for those fields.
Some initial investigation why order_id ends up in attributes: we incorrectly create Nullable(String) column for it, but the data is of type Int64 . And the reason why we create Nullable(String) is because we receive a "PUT /:index/_mapping" that tells us that order_id should be a keyword (so a String).
The text was updated successfully, but these errors were encountered:
When running the latest main (410069d) and the configuration from the kibana-sample-data example, too many fields end up in the
attributes
, instead of a separate column. With the current version of Quesma it makes it impossible to query the data for those fields.Some initial investigation why
order_id
ends up in attributes: we incorrectly create Nullable(String) column for it, but the data is of type Int64 . And the reason why we create Nullable(String) is because we receive a "PUT /:index/_mapping" that tells us that order_id should be a keyword (so a String).The text was updated successfully, but these errors were encountered: