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