blob: d977e3883eaaf222fd0b478c39b0f1c0a6ad2963 [file] [log] [blame]
William Kurkianea869482019-04-09 15:16:11 -04001/*
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 (
Neha Sharma96b7bf22020-06-15 10:37:32 +000019 "context"
Esin Karamanccb714b2019-11-29 15:02:06 +000020 ca "github.com/opencord/voltha-protos/v3/go/inter_container"
Neha Sharma96b7bf22020-06-15 10:37:32 +000021 "time"
William Kurkianea869482019-04-09 15:16:11 -040022)
23
24const (
25 PartitionConsumer = iota
26 GroupCustomer = iota
27)
28
29const (
30 OffsetNewest = -1
31 OffsetOldest = -2
32)
33
34const (
35 GroupIdKey = "groupId"
Matt Jeanneret384d8c92019-05-06 14:27:31 -040036 Offset = "offset"
William Kurkianea869482019-04-09 15:16:11 -040037)
38
39const (
40 DefaultKafkaHost = "127.0.0.1"
41 DefaultKafkaPort = 9092
Neha Sharma3f221ae2020-04-29 19:02:12 +000042 DefaultKafkaAddress = DefaultKafkaHost + ":" + string(DefaultKafkaPort)
William Kurkianea869482019-04-09 15:16:11 -040043 DefaultGroupName = "voltha"
44 DefaultSleepOnError = 1
45 DefaultProducerFlushFrequency = 10
46 DefaultProducerFlushMessages = 10
47 DefaultProducerFlushMaxmessages = 100
48 DefaultProducerReturnSuccess = true
49 DefaultProducerReturnErrors = true
50 DefaultProducerRetryMax = 3
51 DefaultProducerRetryBackoff = time.Millisecond * 100
52 DefaultConsumerMaxwait = 100
53 DefaultMaxProcessingTime = 100
54 DefaultConsumerType = PartitionConsumer
55 DefaultNumberPartitions = 3
56 DefaultNumberReplicas = 1
57 DefaultAutoCreateTopic = false
Mahir Gunyele77977b2019-06-27 05:36:22 -070058 DefaultMetadataMaxRetry = 3
cbabu95f21522019-11-13 14:25:18 +010059 DefaultLivenessChannelInterval = time.Second * 30
William Kurkianea869482019-04-09 15:16:11 -040060)
61
62// MsgClient represents the set of APIs a Kafka MsgClient must implement
63type Client interface {
Neha Sharma96b7bf22020-06-15 10:37:32 +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
William Kurkianea869482019-04-09 15:16:11 -040075}