We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Implement a create search pipeline provisioning step to create a search pipeline.
Example API request:
PUT /_search/pipeline/my_pipeline { "request_processors": [ { "filter_query" : { "tag" : "tag1", "description" : "This processor is going to restrict to publicly visible documents", "query" : { "term": { "visibility": "public" } } } } ], "response_processors": [ { "rename_field": { "field": "message", "target_field": "notification" } } ] }
We will either expect request_processors and/or response_processors and wont do internal validation for each processor submitted within the step.
request_processors
response_processors
use case template step would look like this:
{ "id": "search_pipeline_1", "type": "create_search_pipeline", "user_inputs": { "name": "my-search-pipeline", "description": "some description", "request_processors": [ { "filter_query": { "tag": "tag1", "description": "This processor is going to restrict to publicly visible documents", "query": { "term": { "visibility": "public" } } } } ], "response_processors": [ { "rename_field": { "field": "message", "target_field": "notification" } } ] } }
The text was updated successfully, but these errors were encountered:
amitgalitz
Successfully merging a pull request may close this issue.
Is your feature request related to a problem?
Implement a create search pipeline provisioning step to create a search pipeline.
Example API request:
What solution would you like?
We will either expect
request_processors
and/orresponse_processors
and wont do internal validation for each processor submitted within the step.use case template step would look like this:
The text was updated successfully, but these errors were encountered: