Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Index Transform creation failure when source indices are missing mappings for grouped fields. #1270

Open
smuthukaruppannp opened this issue Oct 3, 2024 · 0 comments
Labels
bug Something isn't working untriaged

Comments

@smuthukaruppannp
Copy link

What is the bug?
Index Transform creation failure when some source indices are missing mappings for grouped fields.

When transforms are targeted for multiple source indices and if any of them is missing a definition for a group by field, then the transform creation fails with the following error.

Cannot find field [status] that can be grouped as [terms] in [transformindex2].

In situations where mappings are created dynamically, an index will not have mapping for a field if it was not indexed. For example, an error status field that gets generated only occasionally. Index transform does work in this case with a null value for the missing field. User might also be decide to filter out documents that don't have the necessary fields in the data_selection_query. It might make sense to change the mapping validation only as warning rather than an issue.

How can one reproduce the bug?
Steps to reproduce the behavior:
POST _index_template/transformindex { "index_patterns": [ "transformindex*" ], "template": { "mappings": { "dynamic_templates": [ { "strings": { "match_mapping_type": "string", "mapping": { "type": "keyword" } } } ] } } }

POST _bulk {"index":{"_index":"transformindex1"}} {"category":"shirts","price":10,"status":"1","order_date":"2024-10-01T01:00:00"} {"index":{"_index":"transformindex2"}} {"category":"trousers","price":20,"order_date":"2024-10-01T01:00:00"}

PUT _plugins/_transform/transformtest { "transform": { "schedule": { "interval": { "start_time": 1727924825, "period": 1, "unit": "Minutes" } }, "enabled": true, "description": "transformtest", "source_index": "transformindex*", "data_selection_query": { "match_all": { "boost": 1 } }, "target_index": "transformresults", "page_size": 1000, "groups": [ { "terms": { "source_field": "category", "target_field": "category_terms" } }, { "date_histogram": { "calendar_interval": "1h", "source_field": "order_date", "target_field": "order_date _date_histogram_1_h_calendar", "timezone": "UTC", "format": null } }, { "terms": { "source_field": "status", "target_field": "status_terms" } } ], "aggregations": { "avg_price": { "avg": { "field": "price" } } }, "continuous": true } }

What is the expected behavior?
Index transform should be allowed to be created.

What is your host/environment?

  • OS: container
  • Version 2.15.0
  • Plugins

Do you have any screenshots?
If applicable, add screenshots to help explain your problem.

Do you have any additional context?
Add any other context about the problem.

@smuthukaruppannp smuthukaruppannp added bug Something isn't working untriaged labels Oct 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working untriaged
Projects
None yet
Development

No branches or pull requests

1 participant