Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-present Open Networking Foundation |
| 3 | |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | package kafka |
| 17 | |
| 18 | import ( |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 19 | "context" |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 20 | "errors" |
| 21 | "fmt" |
serkant.uluderya | b38671c | 2019-11-01 09:35:38 -0700 | [diff] [blame] | 22 | "strings" |
| 23 | "sync" |
| 24 | "time" |
| 25 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 26 | "github.com/Shopify/sarama" |
| 27 | scc "github.com/bsm/sarama-cluster" |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 28 | "github.com/eapache/go-resiliency/breaker" |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 29 | "github.com/golang/protobuf/proto" |
Scott Baker | 84a55ce | 2020-04-17 10:11:30 -0700 | [diff] [blame] | 30 | "github.com/golang/protobuf/ptypes" |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 31 | "github.com/google/uuid" |
Girish Gowdra | 89c985b | 2020-10-14 15:02:09 -0700 | [diff] [blame^] | 32 | "github.com/opencord/voltha-lib-go/v4/pkg/log" |
| 33 | ic "github.com/opencord/voltha-protos/v4/go/inter_container" |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 34 | ) |
| 35 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 36 | // consumerChannels represents one or more consumers listening on a kafka topic. Once a message is received on that |
| 37 | // topic, the consumer(s) broadcasts the message to all the listening channels. The consumer can be a partition |
| 38 | //consumer or a group consumer |
| 39 | type consumerChannels struct { |
| 40 | consumers []interface{} |
| 41 | channels []chan *ic.InterContainerMessage |
| 42 | } |
| 43 | |
Kent Hagerman | ccfa213 | 2019-12-17 13:29:34 -0500 | [diff] [blame] | 44 | // static check to ensure SaramaClient implements Client |
| 45 | var _ Client = &SaramaClient{} |
| 46 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 47 | // SaramaClient represents the messaging proxy |
| 48 | type SaramaClient struct { |
| 49 | cAdmin sarama.ClusterAdmin |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 50 | KafkaAddress string |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 51 | producer sarama.AsyncProducer |
| 52 | consumer sarama.Consumer |
| 53 | groupConsumers map[string]*scc.Consumer |
| 54 | lockOfGroupConsumers sync.RWMutex |
| 55 | consumerGroupPrefix string |
| 56 | consumerType int |
| 57 | consumerGroupName string |
| 58 | producerFlushFrequency int |
| 59 | producerFlushMessages int |
| 60 | producerFlushMaxmessages int |
| 61 | producerRetryMax int |
| 62 | producerRetryBackOff time.Duration |
| 63 | producerReturnSuccess bool |
| 64 | producerReturnErrors bool |
| 65 | consumerMaxwait int |
| 66 | maxProcessingTime int |
| 67 | numPartitions int |
| 68 | numReplicas int |
| 69 | autoCreateTopic bool |
| 70 | doneCh chan int |
Scott Baker | 84a55ce | 2020-04-17 10:11:30 -0700 | [diff] [blame] | 71 | metadataCallback func(fromTopic string, timestamp time.Time) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 72 | topicToConsumerChannelMap map[string]*consumerChannels |
| 73 | lockTopicToConsumerChannelMap sync.RWMutex |
| 74 | topicLockMap map[string]*sync.RWMutex |
| 75 | lockOfTopicLockMap sync.RWMutex |
| 76 | metadataMaxRetry int |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 77 | alive bool |
David K. Bainbridge | 5edd7fb | 2020-07-29 19:30:48 -0700 | [diff] [blame] | 78 | livenessMutex sync.Mutex |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 79 | liveness chan bool |
| 80 | livenessChannelInterval time.Duration |
| 81 | lastLivenessTime time.Time |
| 82 | started bool |
David K. Bainbridge | 5edd7fb | 2020-07-29 19:30:48 -0700 | [diff] [blame] | 83 | healthinessMutex sync.Mutex |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 84 | healthy bool |
| 85 | healthiness chan bool |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | type SaramaClientOption func(*SaramaClient) |
| 89 | |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 90 | func Address(address string) SaramaClientOption { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 91 | return func(args *SaramaClient) { |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 92 | args.KafkaAddress = address |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 93 | } |
| 94 | } |
| 95 | |
| 96 | func ConsumerGroupPrefix(prefix string) SaramaClientOption { |
| 97 | return func(args *SaramaClient) { |
| 98 | args.consumerGroupPrefix = prefix |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | func ConsumerGroupName(name string) SaramaClientOption { |
| 103 | return func(args *SaramaClient) { |
| 104 | args.consumerGroupName = name |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | func ConsumerType(consumer int) SaramaClientOption { |
| 109 | return func(args *SaramaClient) { |
| 110 | args.consumerType = consumer |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | func ProducerFlushFrequency(frequency int) SaramaClientOption { |
| 115 | return func(args *SaramaClient) { |
| 116 | args.producerFlushFrequency = frequency |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | func ProducerFlushMessages(num int) SaramaClientOption { |
| 121 | return func(args *SaramaClient) { |
| 122 | args.producerFlushMessages = num |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | func ProducerFlushMaxMessages(num int) SaramaClientOption { |
| 127 | return func(args *SaramaClient) { |
| 128 | args.producerFlushMaxmessages = num |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | func ProducerMaxRetries(num int) SaramaClientOption { |
| 133 | return func(args *SaramaClient) { |
| 134 | args.producerRetryMax = num |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | func ProducerRetryBackoff(duration time.Duration) SaramaClientOption { |
| 139 | return func(args *SaramaClient) { |
| 140 | args.producerRetryBackOff = duration |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | func ProducerReturnOnErrors(opt bool) SaramaClientOption { |
| 145 | return func(args *SaramaClient) { |
| 146 | args.producerReturnErrors = opt |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | func ProducerReturnOnSuccess(opt bool) SaramaClientOption { |
| 151 | return func(args *SaramaClient) { |
| 152 | args.producerReturnSuccess = opt |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | func ConsumerMaxWait(wait int) SaramaClientOption { |
| 157 | return func(args *SaramaClient) { |
| 158 | args.consumerMaxwait = wait |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | func MaxProcessingTime(pTime int) SaramaClientOption { |
| 163 | return func(args *SaramaClient) { |
| 164 | args.maxProcessingTime = pTime |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | func NumPartitions(number int) SaramaClientOption { |
| 169 | return func(args *SaramaClient) { |
| 170 | args.numPartitions = number |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | func NumReplicas(number int) SaramaClientOption { |
| 175 | return func(args *SaramaClient) { |
| 176 | args.numReplicas = number |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | func AutoCreateTopic(opt bool) SaramaClientOption { |
| 181 | return func(args *SaramaClient) { |
| 182 | args.autoCreateTopic = opt |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | func MetadatMaxRetries(retry int) SaramaClientOption { |
| 187 | return func(args *SaramaClient) { |
| 188 | args.metadataMaxRetry = retry |
| 189 | } |
| 190 | } |
| 191 | |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 192 | func LivenessChannelInterval(opt time.Duration) SaramaClientOption { |
| 193 | return func(args *SaramaClient) { |
| 194 | args.livenessChannelInterval = opt |
| 195 | } |
| 196 | } |
| 197 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 198 | func NewSaramaClient(opts ...SaramaClientOption) *SaramaClient { |
| 199 | client := &SaramaClient{ |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 200 | KafkaAddress: DefaultKafkaAddress, |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 201 | } |
| 202 | client.consumerType = DefaultConsumerType |
| 203 | client.producerFlushFrequency = DefaultProducerFlushFrequency |
| 204 | client.producerFlushMessages = DefaultProducerFlushMessages |
| 205 | client.producerFlushMaxmessages = DefaultProducerFlushMaxmessages |
| 206 | client.producerReturnErrors = DefaultProducerReturnErrors |
| 207 | client.producerReturnSuccess = DefaultProducerReturnSuccess |
| 208 | client.producerRetryMax = DefaultProducerRetryMax |
| 209 | client.producerRetryBackOff = DefaultProducerRetryBackoff |
| 210 | client.consumerMaxwait = DefaultConsumerMaxwait |
| 211 | client.maxProcessingTime = DefaultMaxProcessingTime |
| 212 | client.numPartitions = DefaultNumberPartitions |
| 213 | client.numReplicas = DefaultNumberReplicas |
| 214 | client.autoCreateTopic = DefaultAutoCreateTopic |
| 215 | client.metadataMaxRetry = DefaultMetadataMaxRetry |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 216 | client.livenessChannelInterval = DefaultLivenessChannelInterval |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 217 | |
| 218 | for _, option := range opts { |
| 219 | option(client) |
| 220 | } |
| 221 | |
| 222 | client.groupConsumers = make(map[string]*scc.Consumer) |
| 223 | |
| 224 | client.lockTopicToConsumerChannelMap = sync.RWMutex{} |
| 225 | client.topicLockMap = make(map[string]*sync.RWMutex) |
| 226 | client.lockOfTopicLockMap = sync.RWMutex{} |
| 227 | client.lockOfGroupConsumers = sync.RWMutex{} |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 228 | |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 229 | // healthy and alive until proven otherwise |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 230 | client.alive = true |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 231 | client.healthy = true |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 232 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 233 | return client |
| 234 | } |
| 235 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 236 | func (sc *SaramaClient) Start(ctx context.Context) error { |
| 237 | logger.Info(ctx, "Starting-kafka-sarama-client") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 238 | |
| 239 | // Create the Done channel |
| 240 | sc.doneCh = make(chan int, 1) |
| 241 | |
| 242 | var err error |
| 243 | |
| 244 | // Add a cleanup in case of failure to startup |
| 245 | defer func() { |
| 246 | if err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 247 | sc.Stop(ctx) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 248 | } |
| 249 | }() |
| 250 | |
| 251 | // Create the Cluster Admin |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 252 | if err = sc.createClusterAdmin(ctx); err != nil { |
| 253 | logger.Errorw(ctx, "Cannot-create-cluster-admin", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 254 | return err |
| 255 | } |
| 256 | |
| 257 | // Create the Publisher |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 258 | if err := sc.createPublisher(ctx); err != nil { |
| 259 | logger.Errorw(ctx, "Cannot-create-kafka-publisher", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 260 | return err |
| 261 | } |
| 262 | |
| 263 | if sc.consumerType == DefaultConsumerType { |
| 264 | // Create the master consumers |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 265 | if err := sc.createConsumer(ctx); err != nil { |
| 266 | logger.Errorw(ctx, "Cannot-create-kafka-consumers", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 267 | return err |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | // Create the topic to consumers/channel map |
| 272 | sc.topicToConsumerChannelMap = make(map[string]*consumerChannels) |
| 273 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 274 | logger.Info(ctx, "kafka-sarama-client-started") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 275 | |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 276 | sc.started = true |
| 277 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 278 | return nil |
| 279 | } |
| 280 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 281 | func (sc *SaramaClient) Stop(ctx context.Context) { |
| 282 | logger.Info(ctx, "stopping-sarama-client") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 283 | |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 284 | sc.started = false |
| 285 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 286 | //Send a message over the done channel to close all long running routines |
| 287 | sc.doneCh <- 1 |
| 288 | |
| 289 | if sc.producer != nil { |
| 290 | if err := sc.producer.Close(); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 291 | logger.Errorw(ctx, "closing-producer-failed", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 292 | } |
| 293 | } |
| 294 | |
| 295 | if sc.consumer != nil { |
| 296 | if err := sc.consumer.Close(); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 297 | logger.Errorw(ctx, "closing-partition-consumer-failed", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 298 | } |
| 299 | } |
| 300 | |
| 301 | for key, val := range sc.groupConsumers { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 302 | logger.Debugw(ctx, "closing-group-consumer", log.Fields{"topic": key}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 303 | if err := val.Close(); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 304 | logger.Errorw(ctx, "closing-group-consumer-failed", log.Fields{"error": err, "topic": key}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 305 | } |
| 306 | } |
| 307 | |
| 308 | if sc.cAdmin != nil { |
| 309 | if err := sc.cAdmin.Close(); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 310 | logger.Errorw(ctx, "closing-cluster-admin-failed", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 311 | } |
| 312 | } |
| 313 | |
| 314 | //TODO: Clear the consumers map |
| 315 | //sc.clearConsumerChannelMap() |
| 316 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 317 | logger.Info(ctx, "sarama-client-stopped") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | //createTopic is an internal function to create a topic on the Kafka Broker. No locking is required as |
| 321 | // the invoking function must hold the lock |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 322 | func (sc *SaramaClient) createTopic(ctx context.Context, topic *Topic, numPartition int, repFactor int) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 323 | // Set the topic details |
| 324 | topicDetail := &sarama.TopicDetail{} |
| 325 | topicDetail.NumPartitions = int32(numPartition) |
| 326 | topicDetail.ReplicationFactor = int16(repFactor) |
| 327 | topicDetail.ConfigEntries = make(map[string]*string) |
| 328 | topicDetails := make(map[string]*sarama.TopicDetail) |
| 329 | topicDetails[topic.Name] = topicDetail |
| 330 | |
| 331 | if err := sc.cAdmin.CreateTopic(topic.Name, topicDetail, false); err != nil { |
| 332 | if err == sarama.ErrTopicAlreadyExists { |
| 333 | // Not an error |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 334 | logger.Debugw(ctx, "topic-already-exist", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 335 | return nil |
| 336 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 337 | logger.Errorw(ctx, "create-topic-failure", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 338 | return err |
| 339 | } |
| 340 | // TODO: Wait until the topic has been created. No API is available in the Sarama clusterAdmin to |
| 341 | // do so. |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 342 | logger.Debugw(ctx, "topic-created", log.Fields{"topic": topic, "numPartition": numPartition, "replicationFactor": repFactor}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 343 | return nil |
| 344 | } |
| 345 | |
| 346 | //CreateTopic is a public API to create a topic on the Kafka Broker. It uses a lock on a specific topic to |
| 347 | // ensure no two go routines are performing operations on the same topic |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 348 | func (sc *SaramaClient) CreateTopic(ctx context.Context, topic *Topic, numPartition int, repFactor int) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 349 | sc.lockTopic(topic) |
| 350 | defer sc.unLockTopic(topic) |
| 351 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 352 | return sc.createTopic(ctx, topic, numPartition, repFactor) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | //DeleteTopic removes a topic from the kafka Broker |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 356 | func (sc *SaramaClient) DeleteTopic(ctx context.Context, topic *Topic) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 357 | sc.lockTopic(topic) |
| 358 | defer sc.unLockTopic(topic) |
| 359 | |
| 360 | // Remove the topic from the broker |
| 361 | if err := sc.cAdmin.DeleteTopic(topic.Name); err != nil { |
| 362 | if err == sarama.ErrUnknownTopicOrPartition { |
| 363 | // Not an error as does not exist |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 364 | logger.Debugw(ctx, "topic-not-exist", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 365 | return nil |
| 366 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 367 | logger.Errorw(ctx, "delete-topic-failed", log.Fields{"topic": topic, "error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 368 | return err |
| 369 | } |
| 370 | |
| 371 | // Clear the topic from the consumer channel. This will also close any consumers listening on that topic. |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 372 | if err := sc.clearTopicFromConsumerChannelMap(ctx, *topic); err != nil { |
| 373 | logger.Errorw(ctx, "failure-clearing-channels", log.Fields{"topic": topic, "error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 374 | return err |
| 375 | } |
| 376 | return nil |
| 377 | } |
| 378 | |
| 379 | // Subscribe registers a caller to a topic. It returns a channel that the caller can use to receive |
| 380 | // messages from that topic |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 381 | func (sc *SaramaClient) Subscribe(ctx context.Context, topic *Topic, kvArgs ...*KVArg) (<-chan *ic.InterContainerMessage, error) { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 382 | sc.lockTopic(topic) |
| 383 | defer sc.unLockTopic(topic) |
| 384 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 385 | logger.Debugw(ctx, "subscribe", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 386 | |
| 387 | // If a consumers already exist for that topic then resuse it |
| 388 | if consumerCh := sc.getConsumerChannel(topic); consumerCh != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 389 | logger.Debugw(ctx, "topic-already-subscribed", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 390 | // Create a channel specific for that consumers and add it to the consumers channel map |
| 391 | ch := make(chan *ic.InterContainerMessage) |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 392 | sc.addChannelToConsumerChannelMap(ctx, topic, ch) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 393 | return ch, nil |
| 394 | } |
| 395 | |
| 396 | // Register for the topic and set it up |
| 397 | var consumerListeningChannel chan *ic.InterContainerMessage |
| 398 | var err error |
| 399 | |
| 400 | // Use the consumerType option to figure out the type of consumer to launch |
| 401 | if sc.consumerType == PartitionConsumer { |
| 402 | if sc.autoCreateTopic { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 403 | if err = sc.createTopic(ctx, topic, sc.numPartitions, sc.numReplicas); err != nil { |
| 404 | logger.Errorw(ctx, "create-topic-failure", log.Fields{"error": err, "topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 405 | return nil, err |
| 406 | } |
| 407 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 408 | if consumerListeningChannel, err = sc.setupPartitionConsumerChannel(ctx, topic, getOffset(kvArgs...)); err != nil { |
| 409 | logger.Warnw(ctx, "create-consumers-channel-failure", log.Fields{"error": err, "topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 410 | return nil, err |
| 411 | } |
| 412 | } else if sc.consumerType == GroupCustomer { |
| 413 | // TODO: create topic if auto create is on. There is an issue with the sarama cluster library that |
| 414 | // does not consume from a precreated topic in some scenarios |
| 415 | //if sc.autoCreateTopic { |
| 416 | // if err = sc.createTopic(topic, sc.numPartitions, sc.numReplicas); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 417 | // logger.Errorw(ctx, "create-topic-failure", logger.Fields{"error": err, "topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 418 | // return nil, err |
| 419 | // } |
| 420 | //} |
| 421 | //groupId := sc.consumerGroupName |
| 422 | groupId := getGroupId(kvArgs...) |
| 423 | // Include the group prefix |
| 424 | if groupId != "" { |
| 425 | groupId = sc.consumerGroupPrefix + groupId |
| 426 | } else { |
| 427 | // Need to use a unique group Id per topic |
| 428 | groupId = sc.consumerGroupPrefix + topic.Name |
| 429 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 430 | if consumerListeningChannel, err = sc.setupGroupConsumerChannel(ctx, topic, groupId, getOffset(kvArgs...)); err != nil { |
| 431 | logger.Warnw(ctx, "create-consumers-channel-failure", log.Fields{"error": err, "topic": topic.Name, "groupId": groupId}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 432 | return nil, err |
| 433 | } |
| 434 | |
| 435 | } else { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 436 | logger.Warnw(ctx, "unknown-consumer-type", log.Fields{"consumer-type": sc.consumerType}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 437 | return nil, errors.New("unknown-consumer-type") |
| 438 | } |
| 439 | |
| 440 | return consumerListeningChannel, nil |
| 441 | } |
| 442 | |
| 443 | //UnSubscribe unsubscribe a consumer from a given topic |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 444 | func (sc *SaramaClient) UnSubscribe(ctx context.Context, topic *Topic, ch <-chan *ic.InterContainerMessage) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 445 | sc.lockTopic(topic) |
| 446 | defer sc.unLockTopic(topic) |
| 447 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 448 | logger.Debugw(ctx, "unsubscribing-channel-from-topic", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 449 | var err error |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 450 | if err = sc.removeChannelFromConsumerChannelMap(ctx, *topic, ch); err != nil { |
| 451 | logger.Errorw(ctx, "failed-removing-channel", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 452 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 453 | if err = sc.deleteFromGroupConsumers(ctx, topic.Name); err != nil { |
| 454 | logger.Errorw(ctx, "failed-deleting-group-consumer", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 455 | } |
| 456 | return err |
| 457 | } |
| 458 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 459 | func (sc *SaramaClient) SubscribeForMetadata(ctx context.Context, callback func(fromTopic string, timestamp time.Time)) { |
Kent Hagerman | ccfa213 | 2019-12-17 13:29:34 -0500 | [diff] [blame] | 460 | sc.metadataCallback = callback |
| 461 | } |
| 462 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 463 | func (sc *SaramaClient) updateLiveness(ctx context.Context, alive bool) { |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 464 | // Post a consistent stream of liveness data to the channel, |
| 465 | // so that in a live state, the core does not timeout and |
| 466 | // send a forced liveness message. Production of liveness |
| 467 | // events to the channel is rate-limited by livenessChannelInterval. |
David K. Bainbridge | 5edd7fb | 2020-07-29 19:30:48 -0700 | [diff] [blame] | 468 | sc.livenessMutex.Lock() |
| 469 | defer sc.livenessMutex.Unlock() |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 470 | if sc.liveness != nil { |
| 471 | if sc.alive != alive { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 472 | logger.Info(ctx, "update-liveness-channel-because-change") |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 473 | sc.liveness <- alive |
| 474 | sc.lastLivenessTime = time.Now() |
David K. Bainbridge | 7c75cac | 2020-02-19 08:53:46 -0800 | [diff] [blame] | 475 | } else if time.Since(sc.lastLivenessTime) > sc.livenessChannelInterval { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 476 | logger.Info(ctx, "update-liveness-channel-because-interval") |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 477 | sc.liveness <- alive |
| 478 | sc.lastLivenessTime = time.Now() |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | // Only emit a log message when the state changes |
| 483 | if sc.alive != alive { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 484 | logger.Info(ctx, "set-client-alive", log.Fields{"alive": alive}) |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 485 | sc.alive = alive |
| 486 | } |
| 487 | } |
| 488 | |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 489 | // Once unhealthy, we never go back |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 490 | func (sc *SaramaClient) setUnhealthy(ctx context.Context) { |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 491 | sc.healthy = false |
David K. Bainbridge | 5edd7fb | 2020-07-29 19:30:48 -0700 | [diff] [blame] | 492 | sc.healthinessMutex.Lock() |
| 493 | defer sc.healthinessMutex.Unlock() |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 494 | if sc.healthiness != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 495 | logger.Infow(ctx, "set-client-unhealthy", log.Fields{"healthy": sc.healthy}) |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 496 | sc.healthiness <- sc.healthy |
| 497 | } |
| 498 | } |
| 499 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 500 | func (sc *SaramaClient) isLivenessError(ctx context.Context, err error) bool { |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 501 | // Sarama producers and consumers encapsulate the error inside |
| 502 | // a ProducerError or ConsumerError struct. |
| 503 | if prodError, ok := err.(*sarama.ProducerError); ok { |
| 504 | err = prodError.Err |
| 505 | } else if consumerError, ok := err.(*sarama.ConsumerError); ok { |
| 506 | err = consumerError.Err |
| 507 | } |
| 508 | |
| 509 | // Sarama-Cluster will compose the error into a ClusterError struct, |
| 510 | // which we can't do a compare by reference. To handle that, we the |
| 511 | // best we can do is compare the error strings. |
| 512 | |
| 513 | switch err.Error() { |
| 514 | case context.DeadlineExceeded.Error(): |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 515 | logger.Info(ctx, "is-liveness-error-timeout") |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 516 | return true |
| 517 | case sarama.ErrOutOfBrokers.Error(): // "Kafka: client has run out of available brokers" |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 518 | logger.Info(ctx, "is-liveness-error-no-brokers") |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 519 | return true |
| 520 | case sarama.ErrShuttingDown.Error(): // "Kafka: message received by producer in process of shutting down" |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 521 | logger.Info(ctx, "is-liveness-error-shutting-down") |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 522 | return true |
| 523 | case sarama.ErrControllerNotAvailable.Error(): // "Kafka: controller is not available" |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 524 | logger.Info(ctx, "is-liveness-error-not-available") |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 525 | return true |
| 526 | case breaker.ErrBreakerOpen.Error(): // "circuit breaker is open" |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 527 | logger.Info(ctx, "is-liveness-error-circuit-breaker-open") |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 528 | return true |
| 529 | } |
| 530 | |
| 531 | if strings.HasSuffix(err.Error(), "connection refused") { // "dial tcp 10.244.1.176:9092: connect: connection refused" |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 532 | logger.Info(ctx, "is-liveness-error-connection-refused") |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 533 | return true |
| 534 | } |
| 535 | |
Scott Baker | 718bee0 | 2020-01-07 09:52:02 -0800 | [diff] [blame] | 536 | if strings.HasSuffix(err.Error(), "i/o timeout") { // "dial tcp 10.244.1.176:9092: i/o timeout" |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 537 | logger.Info(ctx, "is-liveness-error-io-timeout") |
Scott Baker | 718bee0 | 2020-01-07 09:52:02 -0800 | [diff] [blame] | 538 | return true |
| 539 | } |
| 540 | |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 541 | // Other errors shouldn't trigger a loss of liveness |
| 542 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 543 | logger.Infow(ctx, "is-liveness-error-ignored", log.Fields{"err": err}) |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 544 | |
| 545 | return false |
| 546 | } |
| 547 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 548 | // send formats and sends the request onto the kafka messaging bus. |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 549 | func (sc *SaramaClient) Send(ctx context.Context, msg interface{}, topic *Topic, keys ...string) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 550 | |
| 551 | // Assert message is a proto message |
| 552 | var protoMsg proto.Message |
| 553 | var ok bool |
| 554 | // ascertain the value interface type is a proto.Message |
| 555 | if protoMsg, ok = msg.(proto.Message); !ok { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 556 | logger.Warnw(ctx, "message-not-proto-message", log.Fields{"msg": msg}) |
David K. Bainbridge | 7c75cac | 2020-02-19 08:53:46 -0800 | [diff] [blame] | 557 | return fmt.Errorf("not-a-proto-msg-%s", msg) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 558 | } |
| 559 | |
| 560 | var marshalled []byte |
| 561 | var err error |
| 562 | // Create the Sarama producer message |
| 563 | if marshalled, err = proto.Marshal(protoMsg); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 564 | logger.Errorw(ctx, "marshalling-failed", log.Fields{"msg": protoMsg, "error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 565 | return err |
| 566 | } |
| 567 | key := "" |
| 568 | if len(keys) > 0 { |
| 569 | key = keys[0] // Only the first key is relevant |
| 570 | } |
| 571 | kafkaMsg := &sarama.ProducerMessage{ |
| 572 | Topic: topic.Name, |
| 573 | Key: sarama.StringEncoder(key), |
| 574 | Value: sarama.ByteEncoder(marshalled), |
| 575 | } |
| 576 | |
| 577 | // Send message to kafka |
| 578 | sc.producer.Input() <- kafkaMsg |
| 579 | // Wait for result |
| 580 | // TODO: Use a lock or a different mechanism to ensure the response received corresponds to the message sent. |
| 581 | select { |
| 582 | case ok := <-sc.producer.Successes(): |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 583 | logger.Debugw(ctx, "message-sent", log.Fields{"status": ok.Topic}) |
| 584 | sc.updateLiveness(ctx, true) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 585 | case notOk := <-sc.producer.Errors(): |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 586 | logger.Debugw(ctx, "error-sending", log.Fields{"status": notOk}) |
| 587 | if sc.isLivenessError(ctx, notOk) { |
| 588 | sc.updateLiveness(ctx, false) |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 589 | } |
| 590 | return notOk |
| 591 | } |
| 592 | return nil |
| 593 | } |
| 594 | |
| 595 | // Enable the liveness monitor channel. This channel will report |
| 596 | // a "true" or "false" on every publish, which indicates whether |
| 597 | // or not the channel is still live. This channel is then picked up |
| 598 | // by the service (i.e. rw_core / ro_core) to update readiness status |
| 599 | // and/or take other actions. |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 600 | func (sc *SaramaClient) EnableLivenessChannel(ctx context.Context, enable bool) chan bool { |
| 601 | logger.Infow(ctx, "kafka-enable-liveness-channel", log.Fields{"enable": enable}) |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 602 | if enable { |
David K. Bainbridge | 5edd7fb | 2020-07-29 19:30:48 -0700 | [diff] [blame] | 603 | sc.livenessMutex.Lock() |
| 604 | defer sc.livenessMutex.Unlock() |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 605 | if sc.liveness == nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 606 | logger.Info(ctx, "kafka-create-liveness-channel") |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 607 | // At least 1, so we can immediately post to it without blocking |
| 608 | // Setting a bigger number (10) allows the monitor to fall behind |
| 609 | // without blocking others. The monitor shouldn't really fall |
| 610 | // behind... |
| 611 | sc.liveness = make(chan bool, 10) |
| 612 | // post intial state to the channel |
| 613 | sc.liveness <- sc.alive |
| 614 | } |
| 615 | } else { |
| 616 | // TODO: Think about whether we need the ability to turn off |
| 617 | // liveness monitoring |
| 618 | panic("Turning off liveness reporting is not supported") |
| 619 | } |
| 620 | return sc.liveness |
| 621 | } |
| 622 | |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 623 | // Enable the Healthiness monitor channel. This channel will report "false" |
| 624 | // if the kafka consumers die, or some other problem occurs which is |
| 625 | // catastrophic that would require re-creating the client. |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 626 | func (sc *SaramaClient) EnableHealthinessChannel(ctx context.Context, enable bool) chan bool { |
| 627 | logger.Infow(ctx, "kafka-enable-healthiness-channel", log.Fields{"enable": enable}) |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 628 | if enable { |
David K. Bainbridge | 5edd7fb | 2020-07-29 19:30:48 -0700 | [diff] [blame] | 629 | sc.healthinessMutex.Lock() |
| 630 | defer sc.healthinessMutex.Unlock() |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 631 | if sc.healthiness == nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 632 | logger.Info(ctx, "kafka-create-healthiness-channel") |
Scott Baker | 0fef698 | 2019-12-12 09:49:42 -0800 | [diff] [blame] | 633 | // At least 1, so we can immediately post to it without blocking |
| 634 | // Setting a bigger number (10) allows the monitor to fall behind |
| 635 | // without blocking others. The monitor shouldn't really fall |
| 636 | // behind... |
| 637 | sc.healthiness = make(chan bool, 10) |
| 638 | // post intial state to the channel |
| 639 | sc.healthiness <- sc.healthy |
| 640 | } |
| 641 | } else { |
| 642 | // TODO: Think about whether we need the ability to turn off |
| 643 | // liveness monitoring |
| 644 | panic("Turning off healthiness reporting is not supported") |
| 645 | } |
| 646 | return sc.healthiness |
| 647 | } |
| 648 | |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 649 | // send an empty message on the liveness channel to check whether connectivity has |
| 650 | // been restored. |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 651 | func (sc *SaramaClient) SendLiveness(ctx context.Context) error { |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 652 | if !sc.started { |
| 653 | return fmt.Errorf("SendLiveness() called while not started") |
| 654 | } |
| 655 | |
| 656 | kafkaMsg := &sarama.ProducerMessage{ |
| 657 | Topic: "_liveness_test", |
| 658 | Value: sarama.StringEncoder(time.Now().Format(time.RFC3339)), // for debugging / informative use |
| 659 | } |
| 660 | |
| 661 | // Send message to kafka |
| 662 | sc.producer.Input() <- kafkaMsg |
| 663 | // Wait for result |
| 664 | // TODO: Use a lock or a different mechanism to ensure the response received corresponds to the message sent. |
| 665 | select { |
| 666 | case ok := <-sc.producer.Successes(): |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 667 | logger.Debugw(ctx, "liveness-message-sent", log.Fields{"status": ok.Topic}) |
| 668 | sc.updateLiveness(ctx, true) |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 669 | case notOk := <-sc.producer.Errors(): |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 670 | logger.Debugw(ctx, "liveness-error-sending", log.Fields{"status": notOk}) |
| 671 | if sc.isLivenessError(ctx, notOk) { |
| 672 | sc.updateLiveness(ctx, false) |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 673 | } |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 674 | return notOk |
| 675 | } |
| 676 | return nil |
| 677 | } |
| 678 | |
| 679 | // getGroupId returns the group id from the key-value args. |
| 680 | func getGroupId(kvArgs ...*KVArg) string { |
| 681 | for _, arg := range kvArgs { |
| 682 | if arg.Key == GroupIdKey { |
| 683 | return arg.Value.(string) |
| 684 | } |
| 685 | } |
| 686 | return "" |
| 687 | } |
| 688 | |
| 689 | // getOffset returns the offset from the key-value args. |
| 690 | func getOffset(kvArgs ...*KVArg) int64 { |
| 691 | for _, arg := range kvArgs { |
| 692 | if arg.Key == Offset { |
| 693 | return arg.Value.(int64) |
| 694 | } |
| 695 | } |
| 696 | return sarama.OffsetNewest |
| 697 | } |
| 698 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 699 | func (sc *SaramaClient) createClusterAdmin(ctx context.Context) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 700 | config := sarama.NewConfig() |
| 701 | config.Version = sarama.V1_0_0_0 |
| 702 | |
| 703 | // Create a cluster Admin |
| 704 | var cAdmin sarama.ClusterAdmin |
| 705 | var err error |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 706 | if cAdmin, err = sarama.NewClusterAdmin([]string{sc.KafkaAddress}, config); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 707 | logger.Errorw(ctx, "cluster-admin-failure", log.Fields{"error": err, "broker-address": sc.KafkaAddress}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 708 | return err |
| 709 | } |
| 710 | sc.cAdmin = cAdmin |
| 711 | return nil |
| 712 | } |
| 713 | |
| 714 | func (sc *SaramaClient) lockTopic(topic *Topic) { |
| 715 | sc.lockOfTopicLockMap.Lock() |
| 716 | if _, exist := sc.topicLockMap[topic.Name]; exist { |
| 717 | sc.lockOfTopicLockMap.Unlock() |
| 718 | sc.topicLockMap[topic.Name].Lock() |
| 719 | } else { |
| 720 | sc.topicLockMap[topic.Name] = &sync.RWMutex{} |
| 721 | sc.lockOfTopicLockMap.Unlock() |
| 722 | sc.topicLockMap[topic.Name].Lock() |
| 723 | } |
| 724 | } |
| 725 | |
| 726 | func (sc *SaramaClient) unLockTopic(topic *Topic) { |
| 727 | sc.lockOfTopicLockMap.Lock() |
| 728 | defer sc.lockOfTopicLockMap.Unlock() |
| 729 | if _, exist := sc.topicLockMap[topic.Name]; exist { |
| 730 | sc.topicLockMap[topic.Name].Unlock() |
| 731 | } |
| 732 | } |
| 733 | |
| 734 | func (sc *SaramaClient) addTopicToConsumerChannelMap(id string, arg *consumerChannels) { |
| 735 | sc.lockTopicToConsumerChannelMap.Lock() |
| 736 | defer sc.lockTopicToConsumerChannelMap.Unlock() |
| 737 | if _, exist := sc.topicToConsumerChannelMap[id]; !exist { |
| 738 | sc.topicToConsumerChannelMap[id] = arg |
| 739 | } |
| 740 | } |
| 741 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 742 | func (sc *SaramaClient) getConsumerChannel(topic *Topic) *consumerChannels { |
| 743 | sc.lockTopicToConsumerChannelMap.RLock() |
| 744 | defer sc.lockTopicToConsumerChannelMap.RUnlock() |
| 745 | |
| 746 | if consumerCh, exist := sc.topicToConsumerChannelMap[topic.Name]; exist { |
| 747 | return consumerCh |
| 748 | } |
| 749 | return nil |
| 750 | } |
| 751 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 752 | func (sc *SaramaClient) addChannelToConsumerChannelMap(ctx context.Context, topic *Topic, ch chan *ic.InterContainerMessage) { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 753 | sc.lockTopicToConsumerChannelMap.Lock() |
| 754 | defer sc.lockTopicToConsumerChannelMap.Unlock() |
| 755 | if consumerCh, exist := sc.topicToConsumerChannelMap[topic.Name]; exist { |
| 756 | consumerCh.channels = append(consumerCh.channels, ch) |
| 757 | return |
| 758 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 759 | logger.Warnw(ctx, "consumers-channel-not-exist", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | //closeConsumers closes a list of sarama consumers. The consumers can either be a partition consumers or a group consumers |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 763 | func closeConsumers(ctx context.Context, consumers []interface{}) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 764 | var err error |
| 765 | for _, consumer := range consumers { |
| 766 | // Is it a partition consumers? |
| 767 | if partionConsumer, ok := consumer.(sarama.PartitionConsumer); ok { |
| 768 | if errTemp := partionConsumer.Close(); errTemp != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 769 | logger.Debugw(ctx, "partition!!!", log.Fields{"err": errTemp}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 770 | if strings.Compare(errTemp.Error(), sarama.ErrUnknownTopicOrPartition.Error()) == 0 { |
| 771 | // This can occur on race condition |
| 772 | err = nil |
| 773 | } else { |
| 774 | err = errTemp |
| 775 | } |
| 776 | } |
| 777 | } else if groupConsumer, ok := consumer.(*scc.Consumer); ok { |
| 778 | if errTemp := groupConsumer.Close(); errTemp != nil { |
| 779 | if strings.Compare(errTemp.Error(), sarama.ErrUnknownTopicOrPartition.Error()) == 0 { |
| 780 | // This can occur on race condition |
| 781 | err = nil |
| 782 | } else { |
| 783 | err = errTemp |
| 784 | } |
| 785 | } |
| 786 | } |
| 787 | } |
| 788 | return err |
| 789 | } |
| 790 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 791 | func (sc *SaramaClient) removeChannelFromConsumerChannelMap(ctx context.Context, topic Topic, ch <-chan *ic.InterContainerMessage) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 792 | sc.lockTopicToConsumerChannelMap.Lock() |
| 793 | defer sc.lockTopicToConsumerChannelMap.Unlock() |
| 794 | if consumerCh, exist := sc.topicToConsumerChannelMap[topic.Name]; exist { |
| 795 | // Channel will be closed in the removeChannel method |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 796 | consumerCh.channels = removeChannel(ctx, consumerCh.channels, ch) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 797 | // If there are no more channels then we can close the consumers itself |
| 798 | if len(consumerCh.channels) == 0 { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 799 | logger.Debugw(ctx, "closing-consumers", log.Fields{"topic": topic}) |
| 800 | err := closeConsumers(ctx, consumerCh.consumers) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 801 | //err := consumerCh.consumers.Close() |
| 802 | delete(sc.topicToConsumerChannelMap, topic.Name) |
| 803 | return err |
| 804 | } |
| 805 | return nil |
| 806 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 807 | logger.Warnw(ctx, "topic-does-not-exist", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 808 | return errors.New("topic-does-not-exist") |
| 809 | } |
| 810 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 811 | func (sc *SaramaClient) clearTopicFromConsumerChannelMap(ctx context.Context, topic Topic) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 812 | sc.lockTopicToConsumerChannelMap.Lock() |
| 813 | defer sc.lockTopicToConsumerChannelMap.Unlock() |
| 814 | if consumerCh, exist := sc.topicToConsumerChannelMap[topic.Name]; exist { |
| 815 | for _, ch := range consumerCh.channels { |
| 816 | // Channel will be closed in the removeChannel method |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 817 | removeChannel(ctx, consumerCh.channels, ch) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 818 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 819 | err := closeConsumers(ctx, consumerCh.consumers) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 820 | //if err == sarama.ErrUnknownTopicOrPartition { |
| 821 | // // Not an error |
| 822 | // err = nil |
| 823 | //} |
| 824 | //err := consumerCh.consumers.Close() |
| 825 | delete(sc.topicToConsumerChannelMap, topic.Name) |
| 826 | return err |
| 827 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 828 | logger.Debugw(ctx, "topic-does-not-exist", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 829 | return nil |
| 830 | } |
| 831 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 832 | //createPublisher creates the publisher which is used to send a message onto kafka |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 833 | func (sc *SaramaClient) createPublisher(ctx context.Context) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 834 | // This Creates the publisher |
| 835 | config := sarama.NewConfig() |
| 836 | config.Producer.Partitioner = sarama.NewRandomPartitioner |
| 837 | config.Producer.Flush.Frequency = time.Duration(sc.producerFlushFrequency) |
| 838 | config.Producer.Flush.Messages = sc.producerFlushMessages |
| 839 | config.Producer.Flush.MaxMessages = sc.producerFlushMaxmessages |
| 840 | config.Producer.Return.Errors = sc.producerReturnErrors |
| 841 | config.Producer.Return.Successes = sc.producerReturnSuccess |
| 842 | //config.Producer.RequiredAcks = sarama.WaitForAll |
| 843 | config.Producer.RequiredAcks = sarama.WaitForLocal |
| 844 | |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 845 | brokers := []string{sc.KafkaAddress} |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 846 | |
| 847 | if producer, err := sarama.NewAsyncProducer(brokers, config); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 848 | logger.Errorw(ctx, "error-starting-publisher", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 849 | return err |
| 850 | } else { |
| 851 | sc.producer = producer |
| 852 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 853 | logger.Info(ctx, "Kafka-publisher-created") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 854 | return nil |
| 855 | } |
| 856 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 857 | func (sc *SaramaClient) createConsumer(ctx context.Context) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 858 | config := sarama.NewConfig() |
| 859 | config.Consumer.Return.Errors = true |
| 860 | config.Consumer.Fetch.Min = 1 |
| 861 | config.Consumer.MaxWaitTime = time.Duration(sc.consumerMaxwait) * time.Millisecond |
| 862 | config.Consumer.MaxProcessingTime = time.Duration(sc.maxProcessingTime) * time.Millisecond |
| 863 | config.Consumer.Offsets.Initial = sarama.OffsetNewest |
| 864 | config.Metadata.Retry.Max = sc.metadataMaxRetry |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 865 | brokers := []string{sc.KafkaAddress} |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 866 | |
| 867 | if consumer, err := sarama.NewConsumer(brokers, config); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 868 | logger.Errorw(ctx, "error-starting-consumers", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 869 | return err |
| 870 | } else { |
| 871 | sc.consumer = consumer |
| 872 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 873 | logger.Info(ctx, "Kafka-consumers-created") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 874 | return nil |
| 875 | } |
| 876 | |
| 877 | // createGroupConsumer creates a consumers group |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 878 | func (sc *SaramaClient) createGroupConsumer(ctx context.Context, topic *Topic, groupId string, initialOffset int64, retries int) (*scc.Consumer, error) { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 879 | config := scc.NewConfig() |
| 880 | config.ClientID = uuid.New().String() |
| 881 | config.Group.Mode = scc.ConsumerModeMultiplex |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 882 | config.Consumer.Group.Heartbeat.Interval, _ = time.ParseDuration("1s") |
| 883 | config.Consumer.Return.Errors = true |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 884 | //config.Group.Return.Notifications = false |
| 885 | //config.Consumer.MaxWaitTime = time.Duration(DefaultConsumerMaxwait) * time.Millisecond |
| 886 | //config.Consumer.MaxProcessingTime = time.Duration(DefaultMaxProcessingTime) * time.Millisecond |
| 887 | config.Consumer.Offsets.Initial = initialOffset |
| 888 | //config.Consumer.Offsets.Initial = sarama.OffsetOldest |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 889 | brokers := []string{sc.KafkaAddress} |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 890 | |
| 891 | topics := []string{topic.Name} |
| 892 | var consumer *scc.Consumer |
| 893 | var err error |
| 894 | |
| 895 | if consumer, err = scc.NewConsumer(brokers, groupId, topics, config); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 896 | logger.Errorw(ctx, "create-group-consumers-failure", log.Fields{"error": err, "topic": topic.Name, "groupId": groupId}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 897 | return nil, err |
| 898 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 899 | logger.Debugw(ctx, "create-group-consumers-success", log.Fields{"topic": topic.Name, "groupId": groupId}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 900 | |
| 901 | //sc.groupConsumers[topic.Name] = consumer |
| 902 | sc.addToGroupConsumers(topic.Name, consumer) |
| 903 | return consumer, nil |
| 904 | } |
| 905 | |
| 906 | // dispatchToConsumers sends the intercontainermessage received on a given topic to all subscribers for that |
| 907 | // topic via the unique channel each subscriber received during subscription |
| 908 | func (sc *SaramaClient) dispatchToConsumers(consumerCh *consumerChannels, protoMessage *ic.InterContainerMessage) { |
| 909 | // Need to go over all channels and publish messages to them - do we need to copy msg? |
| 910 | sc.lockTopicToConsumerChannelMap.RLock() |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 911 | for _, ch := range consumerCh.channels { |
| 912 | go func(c chan *ic.InterContainerMessage) { |
| 913 | c <- protoMessage |
| 914 | }(ch) |
| 915 | } |
Kent Hagerman | ccfa213 | 2019-12-17 13:29:34 -0500 | [diff] [blame] | 916 | sc.lockTopicToConsumerChannelMap.RUnlock() |
| 917 | |
| 918 | if callback := sc.metadataCallback; callback != nil { |
Scott Baker | 84a55ce | 2020-04-17 10:11:30 -0700 | [diff] [blame] | 919 | ts, _ := ptypes.Timestamp(protoMessage.Header.Timestamp) |
| 920 | callback(protoMessage.Header.FromTopic, ts) |
Kent Hagerman | ccfa213 | 2019-12-17 13:29:34 -0500 | [diff] [blame] | 921 | } |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 922 | } |
| 923 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 924 | func (sc *SaramaClient) consumeFromAPartition(ctx context.Context, topic *Topic, consumer sarama.PartitionConsumer, consumerChnls *consumerChannels) { |
| 925 | logger.Debugw(ctx, "starting-partition-consumption-loop", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 926 | startloop: |
| 927 | for { |
| 928 | select { |
| 929 | case err, ok := <-consumer.Errors(): |
| 930 | if ok { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 931 | if sc.isLivenessError(ctx, err) { |
| 932 | sc.updateLiveness(ctx, false) |
| 933 | logger.Warnw(ctx, "partition-consumers-error", log.Fields{"error": err}) |
cbabu | d497865 | 2019-12-04 08:04:21 +0100 | [diff] [blame] | 934 | } |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 935 | } else { |
| 936 | // Channel is closed |
| 937 | break startloop |
| 938 | } |
| 939 | case msg, ok := <-consumer.Messages(): |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 940 | //logger.Debugw(ctx, "message-received", logger.Fields{"msg": msg, "receivedTopic": msg.Topic}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 941 | if !ok { |
| 942 | // channel is closed |
| 943 | break startloop |
| 944 | } |
| 945 | msgBody := msg.Value |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 946 | sc.updateLiveness(ctx, true) |
| 947 | logger.Debugw(ctx, "message-received", log.Fields{"timestamp": msg.Timestamp, "receivedTopic": msg.Topic}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 948 | icm := &ic.InterContainerMessage{} |
| 949 | if err := proto.Unmarshal(msgBody, icm); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 950 | logger.Warnw(ctx, "partition-invalid-message", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 951 | continue |
| 952 | } |
| 953 | go sc.dispatchToConsumers(consumerChnls, icm) |
| 954 | case <-sc.doneCh: |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 955 | logger.Infow(ctx, "partition-received-exit-signal", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 956 | break startloop |
| 957 | } |
| 958 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 959 | logger.Infow(ctx, "partition-consumer-stopped", log.Fields{"topic": topic.Name}) |
| 960 | sc.setUnhealthy(ctx) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 961 | } |
| 962 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 963 | func (sc *SaramaClient) consumeGroupMessages(ctx context.Context, topic *Topic, consumer *scc.Consumer, consumerChnls *consumerChannels) { |
| 964 | logger.Debugw(ctx, "starting-group-consumption-loop", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 965 | |
| 966 | startloop: |
| 967 | for { |
| 968 | select { |
| 969 | case err, ok := <-consumer.Errors(): |
| 970 | if ok { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 971 | if sc.isLivenessError(ctx, err) { |
| 972 | sc.updateLiveness(ctx, false) |
Scott Baker | fa2f6ee | 2019-11-19 14:53:14 -0800 | [diff] [blame] | 973 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 974 | logger.Warnw(ctx, "group-consumers-error", log.Fields{"topic": topic.Name, "error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 975 | } else { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 976 | logger.Warnw(ctx, "group-consumers-closed-err", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 977 | // channel is closed |
| 978 | break startloop |
| 979 | } |
| 980 | case msg, ok := <-consumer.Messages(): |
| 981 | if !ok { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 982 | logger.Warnw(ctx, "group-consumers-closed-msg", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 983 | // Channel closed |
| 984 | break startloop |
| 985 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 986 | sc.updateLiveness(ctx, true) |
| 987 | logger.Debugw(ctx, "message-received", log.Fields{"timestamp": msg.Timestamp, "receivedTopic": msg.Topic}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 988 | msgBody := msg.Value |
| 989 | icm := &ic.InterContainerMessage{} |
| 990 | if err := proto.Unmarshal(msgBody, icm); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 991 | logger.Warnw(ctx, "invalid-message", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 992 | continue |
| 993 | } |
| 994 | go sc.dispatchToConsumers(consumerChnls, icm) |
| 995 | consumer.MarkOffset(msg, "") |
| 996 | case ntf := <-consumer.Notifications(): |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 997 | logger.Debugw(ctx, "group-received-notification", log.Fields{"notification": ntf}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 998 | case <-sc.doneCh: |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 999 | logger.Infow(ctx, "group-received-exit-signal", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1000 | break startloop |
| 1001 | } |
| 1002 | } |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1003 | logger.Infow(ctx, "group-consumer-stopped", log.Fields{"topic": topic.Name}) |
| 1004 | sc.setUnhealthy(ctx) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1005 | } |
| 1006 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1007 | func (sc *SaramaClient) startConsumers(ctx context.Context, topic *Topic) error { |
| 1008 | logger.Debugw(ctx, "starting-consumers", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1009 | var consumerCh *consumerChannels |
| 1010 | if consumerCh = sc.getConsumerChannel(topic); consumerCh == nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1011 | logger.Errorw(ctx, "consumers-not-exist", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1012 | return errors.New("consumers-not-exist") |
| 1013 | } |
| 1014 | // For each consumer listening for that topic, start a consumption loop |
| 1015 | for _, consumer := range consumerCh.consumers { |
| 1016 | if pConsumer, ok := consumer.(sarama.PartitionConsumer); ok { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1017 | go sc.consumeFromAPartition(ctx, topic, pConsumer, consumerCh) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1018 | } else if gConsumer, ok := consumer.(*scc.Consumer); ok { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1019 | go sc.consumeGroupMessages(ctx, topic, gConsumer, consumerCh) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1020 | } else { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1021 | logger.Errorw(ctx, "invalid-consumer", log.Fields{"topic": topic}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1022 | return errors.New("invalid-consumer") |
| 1023 | } |
| 1024 | } |
| 1025 | return nil |
| 1026 | } |
| 1027 | |
| 1028 | //// setupConsumerChannel creates a consumerChannels object for that topic and add it to the consumerChannels map |
| 1029 | //// for that topic. It also starts the routine that listens for messages on that topic. |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1030 | func (sc *SaramaClient) setupPartitionConsumerChannel(ctx context.Context, topic *Topic, initialOffset int64) (chan *ic.InterContainerMessage, error) { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1031 | var pConsumers []sarama.PartitionConsumer |
| 1032 | var err error |
| 1033 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1034 | if pConsumers, err = sc.createPartitionConsumers(ctx, topic, initialOffset); err != nil { |
| 1035 | logger.Errorw(ctx, "creating-partition-consumers-failure", log.Fields{"error": err, "topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1036 | return nil, err |
| 1037 | } |
| 1038 | |
| 1039 | consumersIf := make([]interface{}, 0) |
| 1040 | for _, pConsumer := range pConsumers { |
| 1041 | consumersIf = append(consumersIf, pConsumer) |
| 1042 | } |
| 1043 | |
| 1044 | // Create the consumers/channel structure and set the consumers and create a channel on that topic - for now |
| 1045 | // unbuffered to verify race conditions. |
| 1046 | consumerListeningChannel := make(chan *ic.InterContainerMessage) |
| 1047 | cc := &consumerChannels{ |
| 1048 | consumers: consumersIf, |
| 1049 | channels: []chan *ic.InterContainerMessage{consumerListeningChannel}, |
| 1050 | } |
| 1051 | |
| 1052 | // Add the consumers channel to the map |
| 1053 | sc.addTopicToConsumerChannelMap(topic.Name, cc) |
| 1054 | |
| 1055 | //Start a consumers to listen on that specific topic |
David K. Bainbridge | 7c75cac | 2020-02-19 08:53:46 -0800 | [diff] [blame] | 1056 | go func() { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1057 | if err := sc.startConsumers(ctx, topic); err != nil { |
| 1058 | logger.Errorw(ctx, "start-consumers-failed", log.Fields{ |
David K. Bainbridge | 7c75cac | 2020-02-19 08:53:46 -0800 | [diff] [blame] | 1059 | "topic": topic, |
| 1060 | "error": err}) |
| 1061 | } |
| 1062 | }() |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1063 | |
| 1064 | return consumerListeningChannel, nil |
| 1065 | } |
| 1066 | |
| 1067 | // setupConsumerChannel creates a consumerChannels object for that topic and add it to the consumerChannels map |
| 1068 | // for that topic. It also starts the routine that listens for messages on that topic. |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1069 | func (sc *SaramaClient) setupGroupConsumerChannel(ctx context.Context, topic *Topic, groupId string, initialOffset int64) (chan *ic.InterContainerMessage, error) { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1070 | // TODO: Replace this development partition consumers with a group consumers |
| 1071 | var pConsumer *scc.Consumer |
| 1072 | var err error |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1073 | if pConsumer, err = sc.createGroupConsumer(ctx, topic, groupId, initialOffset, DefaultMaxRetries); err != nil { |
| 1074 | logger.Errorw(ctx, "creating-partition-consumers-failure", log.Fields{"error": err, "topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1075 | return nil, err |
| 1076 | } |
| 1077 | // Create the consumers/channel structure and set the consumers and create a channel on that topic - for now |
| 1078 | // unbuffered to verify race conditions. |
| 1079 | consumerListeningChannel := make(chan *ic.InterContainerMessage) |
| 1080 | cc := &consumerChannels{ |
| 1081 | consumers: []interface{}{pConsumer}, |
| 1082 | channels: []chan *ic.InterContainerMessage{consumerListeningChannel}, |
| 1083 | } |
| 1084 | |
| 1085 | // Add the consumers channel to the map |
| 1086 | sc.addTopicToConsumerChannelMap(topic.Name, cc) |
| 1087 | |
| 1088 | //Start a consumers to listen on that specific topic |
David K. Bainbridge | 7c75cac | 2020-02-19 08:53:46 -0800 | [diff] [blame] | 1089 | go func() { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1090 | if err := sc.startConsumers(ctx, topic); err != nil { |
| 1091 | logger.Errorw(ctx, "start-consumers-failed", log.Fields{ |
David K. Bainbridge | 7c75cac | 2020-02-19 08:53:46 -0800 | [diff] [blame] | 1092 | "topic": topic, |
| 1093 | "error": err}) |
| 1094 | } |
| 1095 | }() |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1096 | |
| 1097 | return consumerListeningChannel, nil |
| 1098 | } |
| 1099 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1100 | func (sc *SaramaClient) createPartitionConsumers(ctx context.Context, topic *Topic, initialOffset int64) ([]sarama.PartitionConsumer, error) { |
| 1101 | logger.Debugw(ctx, "creating-partition-consumers", log.Fields{"topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1102 | partitionList, err := sc.consumer.Partitions(topic.Name) |
| 1103 | if err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1104 | logger.Warnw(ctx, "get-partition-failure", log.Fields{"error": err, "topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1105 | return nil, err |
| 1106 | } |
| 1107 | |
| 1108 | pConsumers := make([]sarama.PartitionConsumer, 0) |
| 1109 | for _, partition := range partitionList { |
| 1110 | var pConsumer sarama.PartitionConsumer |
| 1111 | if pConsumer, err = sc.consumer.ConsumePartition(topic.Name, partition, initialOffset); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1112 | logger.Warnw(ctx, "consumers-partition-failure", log.Fields{"error": err, "topic": topic.Name}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1113 | return nil, err |
| 1114 | } |
| 1115 | pConsumers = append(pConsumers, pConsumer) |
| 1116 | } |
| 1117 | return pConsumers, nil |
| 1118 | } |
| 1119 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1120 | func removeChannel(ctx context.Context, channels []chan *ic.InterContainerMessage, ch <-chan *ic.InterContainerMessage) []chan *ic.InterContainerMessage { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1121 | var i int |
| 1122 | var channel chan *ic.InterContainerMessage |
| 1123 | for i, channel = range channels { |
| 1124 | if channel == ch { |
| 1125 | channels[len(channels)-1], channels[i] = channels[i], channels[len(channels)-1] |
| 1126 | close(channel) |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1127 | logger.Debug(ctx, "channel-closed") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1128 | return channels[:len(channels)-1] |
| 1129 | } |
| 1130 | } |
| 1131 | return channels |
| 1132 | } |
| 1133 | |
| 1134 | func (sc *SaramaClient) addToGroupConsumers(topic string, consumer *scc.Consumer) { |
| 1135 | sc.lockOfGroupConsumers.Lock() |
| 1136 | defer sc.lockOfGroupConsumers.Unlock() |
| 1137 | if _, exist := sc.groupConsumers[topic]; !exist { |
| 1138 | sc.groupConsumers[topic] = consumer |
| 1139 | } |
| 1140 | } |
| 1141 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1142 | func (sc *SaramaClient) deleteFromGroupConsumers(ctx context.Context, topic string) error { |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1143 | sc.lockOfGroupConsumers.Lock() |
| 1144 | defer sc.lockOfGroupConsumers.Unlock() |
| 1145 | if _, exist := sc.groupConsumers[topic]; exist { |
| 1146 | consumer := sc.groupConsumers[topic] |
| 1147 | delete(sc.groupConsumers, topic) |
| 1148 | if err := consumer.Close(); err != nil { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 1149 | logger.Errorw(ctx, "failure-closing-consumer", log.Fields{"error": err}) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1150 | return err |
| 1151 | } |
| 1152 | } |
| 1153 | return nil |
| 1154 | } |