blob: d977e3883eaaf222fd0b478c39b0f1c0a6ad2963 [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"
serkant.uluderya2ae470f2020-01-21 11:13:09 -080020 ca "github.com/opencord/voltha-protos/v3/go/inter_container"
Rohan Agrawal31f21802020-06-12 05:38:46 +000021 "time"
khenaidoo43c82122018-11-22 18:38:28 -050022)
23
24const (
khenaidoo4c1a5bf2018-11-29 15:53:42 -050025 PartitionConsumer = iota
26 GroupCustomer = iota
27)
28
29const (
khenaidoo731697e2019-01-29 16:03:29 -050030 OffsetNewest = -1
31 OffsetOldest = -2
32)
33
34const (
khenaidooca301322019-01-09 23:06:32 -050035 GroupIdKey = "groupId"
khenaidoo2c6a0992019-04-29 13:46:56 -040036 Offset = "offset"
khenaidooca301322019-01-09 23:06:32 -050037)
38
39const (
khenaidoo4c1a5bf2018-11-29 15:53:42 -050040 DefaultKafkaHost = "127.0.0.1"
41 DefaultKafkaPort = 9092
Neha Sharmad1387da2020-05-07 20:07:28 +000042 DefaultKafkaAddress = DefaultKafkaHost + ":" + string(DefaultKafkaPort)
khenaidooca301322019-01-09 23:06:32 -050043 DefaultGroupName = "voltha"
khenaidoo4c1a5bf2018-11-29 15:53:42 -050044 DefaultSleepOnError = 1
khenaidoo8f474192019-04-03 17:20:44 -040045 DefaultProducerFlushFrequency = 10
46 DefaultProducerFlushMessages = 10
47 DefaultProducerFlushMaxmessages = 100
khenaidoo90847922018-12-03 14:47:51 -050048 DefaultProducerReturnSuccess = true
khenaidoo4c1a5bf2018-11-29 15:53:42 -050049 DefaultProducerReturnErrors = true
50 DefaultProducerRetryMax = 3
51 DefaultProducerRetryBackoff = time.Millisecond * 100
khenaidoo8f474192019-04-03 17:20:44 -040052 DefaultConsumerMaxwait = 100
khenaidoo4c1a5bf2018-11-29 15:53:42 -050053 DefaultMaxProcessingTime = 100
54 DefaultConsumerType = PartitionConsumer
55 DefaultNumberPartitions = 3
56 DefaultNumberReplicas = 1
57 DefaultAutoCreateTopic = false
Abhilash S.L294ff522019-06-26 18:14:33 +053058 DefaultMetadataMaxRetry = 3
Scott Bakeree6a0872019-10-29 15:59:52 -070059 DefaultLivenessChannelInterval = time.Second * 30
khenaidoo43c82122018-11-22 18:38:28 -050060)
61
62// MsgClient represents the set of APIs a Kafka MsgClient must implement
63type Client interface {
Rohan Agrawal31f21802020-06-12 05:38:46 +000064 Start(ctx context.Context) error
65 Stop(ctx context.Context)
66 CreateTopic(ctx context.Context, topic *Topic, numPartition int, repFactor int) error
67 DeleteTopic(ctx context.Context, topic *Topic) error
68 Subscribe(ctx context.Context, topic *Topic, kvArgs ...*KVArg) (<-chan *ca.InterContainerMessage, error)
69 UnSubscribe(ctx context.Context, topic *Topic, ch <-chan *ca.InterContainerMessage) error
70 SubscribeForMetadata(context.Context, func(fromTopic string, timestamp time.Time))
71 Send(ctx context.Context, msg interface{}, topic *Topic, keys ...string) error
72 SendLiveness(ctx context.Context) error
73 EnableLivenessChannel(ctx context.Context, enable bool) chan bool
74 EnableHealthinessChannel(ctx context.Context, enable bool) chan bool
khenaidoo43c82122018-11-22 18:38:28 -050075}