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

[7.x] [DOCS] Add MurmurHash3 as a supported hash method for fingerprint processor #75235

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/reference/ingest/processors/fingerprint.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ value. For other fields, the processor hashes only the field value.
| `target_field` | no | `fingerprint` | Output field for the fingerprint.
| `salt` | no | <none> |
{wikipedia}/Salt_(cryptography)[Salt value] for the hash function.
| `method` | no | `SHA-1` | The cryptographic hash function used to
compute the fingerprint. Must be one of `MD5`, `SHA-1`, `SHA-256`, or `SHA-512`.
| `method` | no | `SHA-1` | The hash method used to
compute the fingerprint. Must be one of `MD5`, `SHA-1`, `SHA-256`, `SHA-512`, or
`MurmurHash3`.
| `ignore_missing` | no | `false` | If `true`, the processor
ignores any missing `fields`. If all fields are missing, the processor silently
exits without modifying the document.
Expand Down