forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
partitioner.go
32 lines (25 loc) · 908 Bytes
/
partitioner.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package kafka
import "github.com/Shopify/sarama"
type staticPartitioner struct {
partitionID int32
}
// newStaticPartitioner returns a PartitionerConstructor that
// returns a Partitioner that always chooses the specified partition.
func newStaticPartitioner(partition int32) sarama.PartitionerConstructor {
return func(topic string) sarama.Partitioner {
return &staticPartitioner{partition}
}
}
// Partition takes a message and partition count and chooses a partition.
func (prt *staticPartitioner) Partition(message *sarama.ProducerMessage, numPartitions int32) (int32, error) {
return prt.partitionID, nil
}
// RequiresConsistency indicates to the user of the partitioner whether the
// mapping of key->partition is consistent or not.
func (prt *staticPartitioner) RequiresConsistency() bool {
return true
}