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 ( |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 19 | "context" |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 20 | "time" |
David K. Bainbridge | c50d88c | 2021-04-08 15:47:03 +0000 | [diff] [blame] | 21 | |
| 22 | ca "github.com/opencord/voltha-protos/v4/go/inter_container" |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 23 | ) |
| 24 | |
| 25 | const ( |
| 26 | PartitionConsumer = iota |
| 27 | GroupCustomer = iota |
| 28 | ) |
| 29 | |
| 30 | const ( |
| 31 | OffsetNewest = -1 |
| 32 | OffsetOldest = -2 |
| 33 | ) |
| 34 | |
| 35 | const ( |
| 36 | GroupIdKey = "groupId" |
| 37 | Offset = "offset" |
| 38 | ) |
| 39 | |
| 40 | const ( |
David K. Bainbridge | c50d88c | 2021-04-08 15:47:03 +0000 | [diff] [blame] | 41 | DefaultKafkaAddress = "127.0.0.1:9092" |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 42 | DefaultGroupName = "voltha" |
| 43 | DefaultSleepOnError = 1 |
| 44 | DefaultProducerFlushFrequency = 10 |
| 45 | DefaultProducerFlushMessages = 10 |
| 46 | DefaultProducerFlushMaxmessages = 100 |
| 47 | DefaultProducerReturnSuccess = true |
| 48 | DefaultProducerReturnErrors = true |
| 49 | DefaultProducerRetryMax = 3 |
| 50 | DefaultProducerRetryBackoff = time.Millisecond * 100 |
| 51 | DefaultConsumerMaxwait = 100 |
| 52 | DefaultMaxProcessingTime = 100 |
| 53 | DefaultConsumerType = PartitionConsumer |
| 54 | DefaultNumberPartitions = 3 |
| 55 | DefaultNumberReplicas = 1 |
| 56 | DefaultAutoCreateTopic = false |
| 57 | DefaultMetadataMaxRetry = 3 |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 58 | DefaultLivenessChannelInterval = time.Second * 30 |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 59 | ) |
| 60 | |
| 61 | // MsgClient represents the set of APIs a Kafka MsgClient must implement |
| 62 | type Client interface { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 63 | 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 |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 74 | } |