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
Is your feature request related to a problem?
I want to have some computation done inside OpenSearch in a continuous manner, using transforms.
My use-case is very similar to the one described foe ElasticSearch in this blog post: https://xeraa.net/blog/2021_elasticsearch-transforms-duration-status-updates/
The query without transform produces the expected result, but I want this result updated and stored inside OpenSearch each minute.
When trying to declare the transform with a bucket script aggregation, I get an error message corresponding to #671
What alternatives have you considered?
We can externally query OpenSearch each minute and update the target index with the retrieved result. This requires an external component, and superfluous network exchanges, data extraction from OpenSearch, and data storage in OpenSearch, all realized without any support for optimizing the data scope to handle. It is a crude brute-force workaround that will put down our OpenSearch storage.
Do you have any additional context?
If necessary guidance is provided, considering I can code in Java, I could envision doing the work, if it not too broad for a single person.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
I want to have some computation done inside OpenSearch in a continuous manner, using transforms.
My use-case is very similar to the one described foe ElasticSearch in this blog post: https://xeraa.net/blog/2021_elasticsearch-transforms-duration-status-updates/
The query without transform produces the expected result, but I want this result updated and stored inside OpenSearch each minute.
When trying to declare the transform with a bucket script aggregation, I get an error message corresponding to #671
What solution would you like?
OpenSearch Index Transforms handle bucket scripts aggregations https://opensearch.org/docs/latest/aggregations/pipeline-agg/#bucket_script-bucket_selector
I can then port the use-case in https://xeraa.net/blog/2021_elasticsearch-transforms-duration-status-updates/ to OpenSearch
What alternatives have you considered?
We can externally query OpenSearch each minute and update the target index with the retrieved result. This requires an external component, and superfluous network exchanges, data extraction from OpenSearch, and data storage in OpenSearch, all realized without any support for optimizing the data scope to handle. It is a crude brute-force workaround that will put down our OpenSearch storage.
Do you have any additional context?
If necessary guidance is provided, considering I can code in Java, I could envision doing the work, if it not too broad for a single person.
The text was updated successfully, but these errors were encountered: