-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Gao Binlong <[email protected]>
- Loading branch information
1 parent
62672e7
commit 62703cb
Showing
1 changed file
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,9 @@ | |
*/ | ||
public final class FingerprintProcessor extends AbstractProcessor { | ||
public static final String TYPE = "fingerprint"; | ||
// this processor is introduced in 2.16.0, we append the OpenSearch version to the hash method name to ensure | ||
// that this processor always generates same hash value based on a specific hash method, if the processing logic | ||
// of this processor changes in future version, the version number in the hash method should be increased correspondingly. | ||
private static final Set<String> HASH_METHODS = Set.of("[email protected]", "[email protected]", "[email protected]", "[email protected]"); | ||
|
||
// fields used to generate hash value | ||
|