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

[DOC] Add ingest processors #4193

Closed
1 of 4 tasks
vagimeli opened this issue May 26, 2023 · 5 comments · Fixed by #4299
Closed
1 of 4 tasks

[DOC] Add ingest processors #4193

vagimeli opened this issue May 26, 2023 · 5 comments · Fixed by #4299
Assignees
Labels
5 - Editorial review PR: Editorial review in progress Content gap

Comments

@vagimeli
Copy link
Collaborator

What do you want to do?

  • Request a change to existing documentation
  • Add new documentation
  • Report a technical problem with the documentation
  • Other

Tell us about your request. Provide a summary of the request and all versions that are affected.
Add ingest processors; new content, several processors

What other resources are available? Provide links to related issues, POCs, steps for testing, etc.

@vagimeli vagimeli added 1 - Backlog Issue: The issue is unassigned or assigned but not started 2 - In progress Issue/PR: The issue or PR is in progress. labels May 26, 2023
@vagimeli vagimeli self-assigned this May 26, 2023
@vagimeli
Copy link
Collaborator Author

vagimeli commented Jun 7, 2023

Move ingest pipelines docs to new section - Ingest Pipelines - under Managing Indexes; combine the four pipeline docs into one (index page); add processors section under Ingest Pipelines; create new pages for all OpenSearch processors.

curl -X GET "localhost:9200/_nodes/ingest?pretty"
{
"_nodes" : {
"total" : 1,
"successful" : 1,
"failed" : 0
},
"cluster_name" : "opensearch-cluster",
"nodes" : {
"i9hLyCxYTqOpa22BcJkKyg" : {
"name" : "opensearch-node1",
"transport_address" : "172.18.0.3:9300",
"host" : "172.18.0.3",
"ip" : "172.18.0.3",
"version" : "2.7.0",
"build_type" : "tar",
"build_hash" : "b7a6e09e492b1e965d827525f7863b366ef0e304",
"roles" : [
"cluster_manager",
"data",
"ingest",
"remote_cluster_client"
],
"attributes" : {
"shard_indexing_pressure_enabled" : "true"
},
"ingest" : {
"processors" : [
{
"type" : "append"
},
{
"type" : "bytes"
},
{
"type" : "convert"
},
{
"type" : "csv"
},
{
"type" : "date"
},
{
"type" : "date_index_name"
},
{
"type" : "dissect"
},
{
"type" : "dot_expander"
},
{
"type" : "drop"
},
{
"type" : "fail"
},
{
"type" : "foreach"
},
{
"type" : "geoip"
},
{
"type" : "geojson-feature"
},
{
"type" : "grok"
},
{
"type" : "gsub"
},
{
"type" : "html_strip"
},
{
"type" : "join"
},
{
"type" : "json"
},
{
"type" : "kv"
},
{
"type" : "lowercase"
},
{
"type" : "pipeline"
},
{
"type" : "remove"
},
{
"type" : "rename"
},
{
"type" : "script"
},
{
"type" : "set"
},
{
"type" : "sort"
},
{
"type" : "split"
},
{
"type" : "text_embedding"
},
{
"type" : "trim"
},
{
"type" : "uppercase"
},
{
"type" : "urldecode"
},
{
"type" : "user_agent"
}
]
}
}
}
}

@hdhalter
Copy link
Contributor

Hi Melissa, I just linked a related issue that was reported by a community member regarding missing processors.

@hdhalter
Copy link
Contributor

hdhalter commented Jul 5, 2023

  • append-processor
  • bytes-processor
  • ingest-circle-processor
  • convert-processor
  • date-index-name-processor
  • dissect-processor
  • dot-expand-processor
  • drop-processor
  • fail-processor
  • foreach-processor
  • geoip-processor
  • gsub-processor
  • htmlstrip-processor
  • inference-processor
  • join-processor
  • kv-processor
  • pipeline-processor
  • remove-processor
  • rename-processor
  • script-processor
  • set-processor
  • ingest-node-set-security-user-processor
  • sort-processor
  • urldecode-processor
  • user-agent-processor

@vagimeli vagimeli added 5 - Editorial review PR: Editorial review in progress and removed 1 - Backlog Issue: The issue is unassigned or assigned but not started 2 - In progress Issue/PR: The issue or PR is in progress. labels Aug 25, 2023
@hdhalter
Copy link
Contributor

@vagimeli - do we need to keep this issue open until all the ingest processors are documented?

@hdhalter
Copy link
Contributor

Ingest processors are tracked here: #4647

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
5 - Editorial review PR: Editorial review in progress Content gap
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants