Documentation ¶
Index ¶
Constants ¶
View Source
const ( HEX = "hex" BASE64 = "base64" )
Variables ¶
This section is empty.
Functions ¶
func MurmurHasher ¶
MurmurHasher creates murmur2 hasher implementing hash.Hash32 interface. The implementation is not full and does not support streaming. It only implements the interface to comply with sarama.NewCustomHashPartitioner signature. But Sarama only uses Write method once, when writing keys and values of the message, so streaming support is not necessary.
func NewJVMCompatiblePartitioner ¶
func NewJVMCompatiblePartitioner(topic string) sarama.Partitioner
NewJVMCompatiblePartitioner creates a Sarama partitioner that uses the same hashing algorithm as JVM Kafka clients.
Types ¶
type AvroMessageSerializer ¶
type AvroMessageSerializer struct {
// contains filtered or unexported fields
}
func CreateAvroMessageSerializer ¶
func CreateAvroMessageSerializer(topic string, avroSchemaRegistry string) (AvroMessageSerializer, error)
func (AvroMessageSerializer) CanSerialize ¶
func (serializer AvroMessageSerializer) CanSerialize(topic string) (bool, error)
func (AvroMessageSerializer) Serialize ¶
func (serializer AvroMessageSerializer) Serialize(key, value []byte, flags ProducerFlags) (*sarama.ProducerMessage, error)
type DefaultMessageSerializer ¶
type DefaultMessageSerializer struct {
// contains filtered or unexported fields
}
func (DefaultMessageSerializer) CanSerialize ¶
func (serializer DefaultMessageSerializer) CanSerialize(_ string) (bool, error)
func (DefaultMessageSerializer) Serialize ¶
func (serializer DefaultMessageSerializer) Serialize(key, value []byte, flags ProducerFlags) (*sarama.ProducerMessage, error)
type MessageSerializer ¶
type MessageSerializer interface { CanSerialize(topic string) (bool, error) Serialize(key, value []byte, flags ProducerFlags) (*sarama.ProducerMessage, error) }
type ProducerFlags ¶
type ProducerOperation ¶
type ProducerOperation struct { }
func (*ProducerOperation) Produce ¶
func (operation *ProducerOperation) Produce(topic string, flags ProducerFlags) error
Click to show internal directories.
Click to hide internal directories.