khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [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 ( |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 19 | ca "github.com/opencord/voltha-go/protos/inter_container" |
khenaidoo | 4c1a5bf | 2018-11-29 15:53:42 -0500 | [diff] [blame] | 20 | "time" |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 21 | ) |
| 22 | |
| 23 | const ( |
khenaidoo | 4c1a5bf | 2018-11-29 15:53:42 -0500 | [diff] [blame] | 24 | PartitionConsumer = iota |
| 25 | GroupCustomer = iota |
| 26 | ) |
| 27 | |
| 28 | const ( |
| 29 | DefaultKafkaHost = "127.0.0.1" |
| 30 | DefaultKafkaPort = 9092 |
| 31 | DefaultGroupName = "rw_core" |
| 32 | DefaultSleepOnError = 1 |
| 33 | DefaultProducerFlushFrequency = 5 |
| 34 | DefaultProducerFlushMessages = 1 |
| 35 | DefaultProducerFlushMaxmessages = 5 |
khenaidoo | 9084792 | 2018-12-03 14:47:51 -0500 | [diff] [blame] | 36 | DefaultProducerReturnSuccess = true |
khenaidoo | 4c1a5bf | 2018-11-29 15:53:42 -0500 | [diff] [blame] | 37 | DefaultProducerReturnErrors = true |
| 38 | DefaultProducerRetryMax = 3 |
| 39 | DefaultProducerRetryBackoff = time.Millisecond * 100 |
| 40 | DefaultConsumerMaxwait = 10 |
| 41 | DefaultMaxProcessingTime = 100 |
| 42 | DefaultConsumerType = PartitionConsumer |
| 43 | DefaultNumberPartitions = 3 |
| 44 | DefaultNumberReplicas = 1 |
| 45 | DefaultAutoCreateTopic = false |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 46 | ) |
| 47 | |
| 48 | // MsgClient represents the set of APIs a Kafka MsgClient must implement |
| 49 | type Client interface { |
khenaidoo | 4c1a5bf | 2018-11-29 15:53:42 -0500 | [diff] [blame] | 50 | Start() error |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 51 | Stop() |
khenaidoo | 4c1a5bf | 2018-11-29 15:53:42 -0500 | [diff] [blame] | 52 | CreateTopic(topic *Topic, numPartition int, repFactor int) error |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 53 | DeleteTopic(topic *Topic) error |
khenaidoo | 4c1a5bf | 2018-11-29 15:53:42 -0500 | [diff] [blame] | 54 | Subscribe(topic *Topic) (<-chan *ca.InterContainerMessage, error) |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 55 | UnSubscribe(topic *Topic, ch <-chan *ca.InterContainerMessage) error |
khenaidoo | 4c1a5bf | 2018-11-29 15:53:42 -0500 | [diff] [blame] | 56 | Send(msg interface{}, topic *Topic, keys ...string) error |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 57 | } |