mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
35 lines
907 B
C++
35 lines
907 B
C++
#include "FunctionsConsistentHashing.h"
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <consistent_hashing.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// An O(1) time and space consistent hash algorithm by Konstantin Oblakov
|
|
struct KostikConsistentHashImpl
|
|
{
|
|
static constexpr auto name = "kostikConsistentHash";
|
|
|
|
using HashType = UInt64;
|
|
/// Actually it supports UInt64, but it is efficient only if n <= 32768
|
|
using ResultType = UInt16;
|
|
using BucketsType = ResultType;
|
|
static constexpr auto max_buckets = 32768;
|
|
|
|
static ResultType apply(UInt64 hash, BucketsType n)
|
|
{
|
|
return ConsistentHashing(hash, n);
|
|
}
|
|
};
|
|
|
|
using FunctionKostikConsistentHash = FunctionConsistentHashImpl<KostikConsistentHashImpl>;
|
|
|
|
REGISTER_FUNCTION(KostikConsistentHash)
|
|
{
|
|
factory.registerFunction<FunctionKostikConsistentHash>();
|
|
factory.registerAlias("yandexConsistentHash", "kostikConsistentHash");
|
|
}
|
|
|
|
}
|