-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[pkg/ottl] Add murmur3 #34077
Comments
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
string of the murmurHash3 hash/digest Fix: open-telemetry#34077
@kaisecheng Thanks for opening this and being willing to take on the implementation. I'm not familiar with MurmurHash, could you offer more details about what use cases you have in mind? I see that a handful of applications use it for non-cryptographic hashing, but I'd like to have a clear use-case in mind for including it in OTTL. We currently support 64-bit FNV-1a hashes through the |
@evan-bradley Thanks for looking into this issue. |
@kaisecheng can you provide some examples of other industry tools or data pipelines that utilize this has function? |
@TylerHelmuth Major data processing frameworks like Spark, Flink, and Apache Beam use MurmurHash3 for fingerprinting in deduplication operations, stream processing, and consistent hashing. |
@TylerHelmuth ☝️ Any thoughts on adding MurmurHash3? Adding a faster hash function with a more uniform distribution is a good enhancement |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
@evan-bradley and I discussed during kubecon and we are ok with adding this function. |
Component(s)
pkg/ottl
Is your feature request related to a problem? Please describe.
OTTL doesn't have murmur3 hash function, which is widely use for non-cryptographic purposes with low collision rate
Describe the solution you'd like
Use spaolacci/murmur3 Sum128 to hash input string and return hex string fingerprint
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: