Enum PartitionerType
- Assembly
- DataDistributionManagerNet.dll
Partitioner
public enum PartitionerType
Fields
consistent = 1
CRC32 hash of key(Empty and NULL keys are mapped to single partition)
consistent_random = 2
CRC32 hash of key(Empty and NULL keys are randomly partitioned)
fnv1a = 5
FNV-1a hash of key(NULL keys are mapped to single partition)
fnv1a_random = 6
FNV-1a hash of key(NULL keys are randomly partitioned)
murmur2 = 3
Java Producer compatible Murmur2 hash of key(NULL keys are mapped to single partition)
murmur2_random = 4
Java Producer compatible Murmur2 hash of key(NULL keys are randomly partitioned.This is functionally equivalent to the default partitioner in the Java Producer.)
random = 0
random distribution