Songqing Zhang created ARROW-2798:
-------------------------------------
Summary: [Plasma] Use hashing function that takes into account all
UniqueID bytes
Key: ARROW-2798
URL: https://issues.apache.org/jira/browse/ARROW-2798
Project: Apache Arrow
Issue Type: Improvement
Components: Plasma (C++)
Affects Versions: 0.9.0
Reporter: Songqing Zhang
Now, the hashing of UniqueID in plasma is too simple which has caused a
problem. In some cases(for example, in github/ray, UniqueID is composed of a
taskID and a index), the UniqueID may be like "ffffffffffffffffffff00",
"ffffffffffffffffff01", "fffffffffffffffffff02" ... . The current hashing
method is only to copy the first few bytes of a UniqueID and the result is that
most of the hashed ids are same, so when the hashed ids put to plasma store, it
will become very slow when searching(plasma store uses unordered_map to store
the ids, and when the keys are same, it will become slow just like list).
In fact, the same PR has been merged into ray, seeĀ
[ray-project/ray#2174|https://github.com/ray-project/ray/pull/2174].
and I have tested the perf between the new hashing method and the original one
with putting lots of objects continuously, it seems the new hashing method
doesn't cost more time.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)