- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
The Hash Function over different values gives same reesults.What is the logic behind hashing function and how to get unique results to unique values.
Created 05-03-2017 06:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
select hash ('9SH305EJ5'); OK -339500666
select hash ('9SH305EIT'); OK -339500666
Created 05-03-2017 07:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It is not supposed to generate unique values. The hash() function is working with ranges. It is supposed to index different ranges with integer values. Think about grouping similar ranges of values in a large data set into smaller subsets and have an index to find the respective subset.
A good explanation can be found there:
http://preshing.com/20110504/hash-collision-probabilities/
If you want to generate unique values, have a look at using UDF (reflect("java.util.UUID", "randomUUID"))
Created 05-03-2017 07:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It is not supposed to generate unique values. The hash() function is working with ranges. It is supposed to index different ranges with integer values. Think about grouping similar ranges of values in a large data set into smaller subsets and have an index to find the respective subset.
A good explanation can be found there:
http://preshing.com/20110504/hash-collision-probabilities/
If you want to generate unique values, have a look at using UDF (reflect("java.util.UUID", "randomUUID"))
Created 05-09-2017 07:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Amol Kulkarni - does that answer your question? Solved?
Created 05-09-2017 01:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes that's a known one. Hash function in hive functions similar to hash algorithm or hash sort logic in data structures.
Like modulo of odd number by 2 is always 1. The same way the two values provided by you results in having same hash value. In order to generate unique values make use of md5() function in hive to generate unique values. However I suggest not to this logic for generation of primary key for a table as the values out of md5() will be a total mess.
