blob: eee96313765faa7f6f98aad7741e3002d7abea31 [file] [log] [blame]
khenaidoo43c82122018-11-22 18:38:28 -05001/*
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 */
16package kafka
17
18import (
Rohan Agrawal31f21802020-06-12 05:38:46 +000019 "context"
Rohan Agrawal31f21802020-06-12 05:38:46 +000020 "time"
David K. Bainbridgefc8e1812021-04-09 16:09:49 +000021
22 ca "github.com/opencord/voltha-protos/v4/go/inter_container"
khenaidoo43c82122018-11-22 18:38:28 -050023)
24
25const (
khenaidoo4c1a5bf2018-11-29 15:53:42 -050026 PartitionConsumer = iota
27 GroupCustomer = iota
28)
29
30const (
khenaidoo731697e2019-01-29 16:03:29 -050031 OffsetNewest = -1
32 OffsetOldest = -2
33)
34
35const (
khenaidooca301322019-01-09 23:06:32 -050036 GroupIdKey = "groupId"
khenaidoo2c6a0992019-04-29 13:46:56 -040037 Offset = "offset"
khenaidooca301322019-01-09 23:06:32 -050038)
39
40const (
David K. Bainbridgefc8e1812021-04-09 16:09:49 +000041 DefaultKafkaAddress = "127.0.0.1:9092"
khenaidooca301322019-01-09 23:06:32 -050042 DefaultGroupName = "voltha"
khenaidoo4c1a5bf2018-11-29 15:53:42 -050043 DefaultSleepOnError = 1
khenaidoo8f474192019-04-03 17:20:44 -040044 DefaultProducerFlushFrequency = 10
45 DefaultProducerFlushMessages = 10
46 DefaultProducerFlushMaxmessages = 100
khenaidoo90847922018-12-03 14:47:51 -050047 DefaultProducerReturnSuccess = true
khenaidoo4c1a5bf2018-11-29 15:53:42 -050048 DefaultProducerReturnErrors = true
49 DefaultProducerRetryMax = 3
50 DefaultProducerRetryBackoff = time.Millisecond * 100
khenaidoo8f474192019-04-03 17:20:44 -040051 DefaultConsumerMaxwait = 100
khenaidoo4c1a5bf2018-11-29 15:53:42 -050052 DefaultMaxProcessingTime = 100
53 DefaultConsumerType = PartitionConsumer
54 DefaultNumberPartitions = 3
55 DefaultNumberReplicas = 1
56 DefaultAutoCreateTopic = false
Abhilash S.L294ff522019-06-26 18:14:33 +053057 DefaultMetadataMaxRetry = 3
Scott Bakeree6a0872019-10-29 15:59:52 -070058 DefaultLivenessChannelInterval = time.Second * 30
khenaidoo43c82122018-11-22 18:38:28 -050059)
60
61// MsgClient represents the set of APIs a Kafka MsgClient must implement
62type Client interface {
Rohan Agrawal31f21802020-06-12 05:38:46 +000063 Start(ctx context.Context) error
64 Stop(ctx context.Context)
65 CreateTopic(ctx context.Context, topic *Topic, numPartition int, repFactor int) error
66 DeleteTopic(ctx context.Context, topic *Topic) error
67 Subscribe(ctx context.Context, topic *Topic, kvArgs ...*KVArg) (<-chan *ca.InterContainerMessage, error)
68 UnSubscribe(ctx context.Context, topic *Topic, ch <-chan *ca.InterContainerMessage) error
69 SubscribeForMetadata(context.Context, func(fromTopic string, timestamp time.Time))
70 Send(ctx context.Context, msg interface{}, topic *Topic, keys ...string) error
71 SendLiveness(ctx context.Context) error
72 EnableLivenessChannel(ctx context.Context, enable bool) chan bool
73 EnableHealthinessChannel(ctx context.Context, enable bool) chan bool
khenaidoo43c82122018-11-22 18:38:28 -050074}