khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [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 | */ |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 16 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 17 | package core |
| 18 | |
| 19 | import ( |
| 20 | "context" |
Thomas Lee S | e5a4401 | 2019-11-07 20:32:24 +0530 | [diff] [blame] | 21 | "fmt" |
Scott Baker | 2d87ee3 | 2020-03-03 13:04:01 -0800 | [diff] [blame] | 22 | "sync" |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 23 | "time" |
| 24 | |
sbarbari | 17d7e22 | 2019-11-05 10:02:29 -0500 | [diff] [blame] | 25 | "github.com/opencord/voltha-go/db/model" |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 26 | "github.com/opencord/voltha-go/rw_core/config" |
serkant.uluderya | 2ae470f | 2020-01-21 11:13:09 -0800 | [diff] [blame] | 27 | "github.com/opencord/voltha-lib-go/v3/pkg/db" |
| 28 | "github.com/opencord/voltha-lib-go/v3/pkg/db/kvstore" |
| 29 | grpcserver "github.com/opencord/voltha-lib-go/v3/pkg/grpc" |
| 30 | "github.com/opencord/voltha-lib-go/v3/pkg/kafka" |
| 31 | "github.com/opencord/voltha-lib-go/v3/pkg/log" |
| 32 | "github.com/opencord/voltha-lib-go/v3/pkg/probe" |
| 33 | "github.com/opencord/voltha-protos/v3/go/voltha" |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 34 | "google.golang.org/grpc" |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 35 | "google.golang.org/grpc/codes" |
| 36 | "google.golang.org/grpc/status" |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 37 | ) |
| 38 | |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 39 | // Core represent read,write core attributes |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 40 | type Core struct { |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 41 | instanceID string |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 42 | deviceMgr *DeviceManager |
| 43 | logicalDeviceMgr *LogicalDeviceManager |
| 44 | grpcServer *grpcserver.GrpcServer |
Richard Jankowski | dbab94a | 2018-12-06 16:20:25 -0500 | [diff] [blame] | 45 | grpcNBIAPIHandler *APIHandler |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 46 | adapterMgr *AdapterManager |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 47 | config *config.RWCoreFlags |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 48 | kmp kafka.InterContainerProxy |
khenaidoo | 92e62c5 | 2018-10-03 14:02:54 -0400 | [diff] [blame] | 49 | clusterDataRoot model.Root |
| 50 | localDataRoot model.Root |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 51 | clusterDataProxy *model.Proxy |
| 52 | localDataProxy *model.Proxy |
Scott Baker | 2d87ee3 | 2020-03-03 13:04:01 -0800 | [diff] [blame] | 53 | exitChannel chan struct{} |
| 54 | stopOnce sync.Once |
Richard Jankowski | e4d7766 | 2018-10-17 13:53:21 -0400 | [diff] [blame] | 55 | kvClient kvstore.Client |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 56 | backend db.Backend |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 57 | kafkaClient kafka.Client |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 58 | } |
| 59 | |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 60 | // NewCore creates instance of rw core |
Thomas Lee S | e5a4401 | 2019-11-07 20:32:24 +0530 | [diff] [blame] | 61 | func NewCore(ctx context.Context, id string, cf *config.RWCoreFlags, kvClient kvstore.Client, kafkaClient kafka.Client) *Core { |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 62 | var core Core |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 63 | core.instanceID = id |
Scott Baker | 2d87ee3 | 2020-03-03 13:04:01 -0800 | [diff] [blame] | 64 | core.exitChannel = make(chan struct{}) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 65 | core.config = cf |
Richard Jankowski | e4d7766 | 2018-10-17 13:53:21 -0400 | [diff] [blame] | 66 | core.kvClient = kvClient |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 67 | core.kafkaClient = kafkaClient |
Richard Jankowski | e4d7766 | 2018-10-17 13:53:21 -0400 | [diff] [blame] | 68 | |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 69 | // Configure backend to push Liveness Status at least every (cf.LiveProbeInterval / 2) seconds |
| 70 | // so as to avoid trigger of Liveness check (due to Liveness timeout) when backend is alive |
| 71 | livenessChannelInterval := cf.LiveProbeInterval / 2 |
| 72 | |
Richard Jankowski | e4d7766 | 2018-10-17 13:53:21 -0400 | [diff] [blame] | 73 | // Setup the KV store |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 74 | core.backend = db.Backend{ |
| 75 | Client: kvClient, |
| 76 | StoreType: cf.KVStoreType, |
| 77 | Host: cf.KVStoreHost, |
| 78 | Port: cf.KVStorePort, |
| 79 | Timeout: cf.KVStoreTimeout, |
| 80 | LivenessChannelInterval: livenessChannelInterval, |
| 81 | PathPrefix: cf.KVStoreDataPrefix} |
| 82 | core.clusterDataRoot = model.NewRoot(&voltha.Voltha{}, &core.backend) |
| 83 | core.localDataRoot = model.NewRoot(&voltha.CoreInstance{}, &core.backend) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 84 | return &core |
| 85 | } |
| 86 | |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 87 | // Start brings up core services |
Thomas Lee S | e5a4401 | 2019-11-07 20:32:24 +0530 | [diff] [blame] | 88 | func (core *Core) Start(ctx context.Context) error { |
David K. Bainbridge | b4a9ab0 | 2019-09-20 15:12:16 -0700 | [diff] [blame] | 89 | |
| 90 | // If the context has a probe then fetch it and register our services |
| 91 | var p *probe.Probe |
| 92 | if value := ctx.Value(probe.ProbeContextKey); value != nil { |
| 93 | if _, ok := value.(*probe.Probe); ok { |
| 94 | p = value.(*probe.Probe) |
| 95 | p.RegisterService( |
| 96 | "message-bus", |
| 97 | "kv-store", |
| 98 | "device-manager", |
| 99 | "logical-device-manager", |
| 100 | "adapter-manager", |
| 101 | "grpc-service", |
| 102 | ) |
| 103 | } |
| 104 | } |
| 105 | |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 106 | logger.Info("starting-core-services", log.Fields{"coreId": core.instanceID}) |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 107 | |
| 108 | // Wait until connection to KV Store is up |
| 109 | if err := core.waitUntilKVStoreReachableOrMaxTries(ctx, core.config.MaxConnectionRetries, core.config.ConnectionRetryInterval); err != nil { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 110 | logger.Fatal("Unable-to-connect-to-KV-store") |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 111 | } |
David K. Bainbridge | b4a9ab0 | 2019-09-20 15:12:16 -0700 | [diff] [blame] | 112 | if p != nil { |
| 113 | p.UpdateStatus("kv-store", probe.ServiceStatusRunning) |
| 114 | } |
Thomas Lee S | e5a4401 | 2019-11-07 20:32:24 +0530 | [diff] [blame] | 115 | var err error |
| 116 | |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 117 | core.clusterDataProxy, err = core.clusterDataRoot.CreateProxy(ctx, "/", false) |
Thomas Lee S | e5a4401 | 2019-11-07 20:32:24 +0530 | [diff] [blame] | 118 | if err != nil { |
| 119 | probe.UpdateStatusFromContext(ctx, "kv-store", probe.ServiceStatusNotReady) |
| 120 | return fmt.Errorf("Failed to create cluster data proxy") |
| 121 | } |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 122 | core.localDataProxy, err = core.localDataRoot.CreateProxy(ctx, "/", false) |
Thomas Lee S | e5a4401 | 2019-11-07 20:32:24 +0530 | [diff] [blame] | 123 | if err != nil { |
| 124 | probe.UpdateStatusFromContext(ctx, "kv-store", probe.ServiceStatusNotReady) |
| 125 | return fmt.Errorf("Failed to create local data proxy") |
| 126 | } |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 127 | |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 128 | // core.kmp must be created before deviceMgr and adapterMgr, as they will make |
| 129 | // private copies of the poiner to core.kmp. |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 130 | core.initKafkaManager(ctx) |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 131 | |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 132 | logger.Debugw("values", log.Fields{"kmp": core.kmp}) |
Richard Jankowski | 199fd86 | 2019-03-18 14:49:51 -0400 | [diff] [blame] | 133 | core.deviceMgr = newDeviceManager(core) |
Kent Hagerman | 16ce36a | 2019-12-17 13:40:53 -0500 | [diff] [blame] | 134 | core.adapterMgr = newAdapterManager(core.clusterDataProxy, core.instanceID, core.kafkaClient, core.deviceMgr) |
khenaidoo | ba6b6c4 | 2019-08-02 09:11:56 -0400 | [diff] [blame] | 135 | core.deviceMgr.adapterMgr = core.adapterMgr |
khenaidoo | 2c6a099 | 2019-04-29 13:46:56 -0400 | [diff] [blame] | 136 | core.logicalDeviceMgr = newLogicalDeviceManager(core, core.deviceMgr, core.kmp, core.clusterDataProxy, core.config.DefaultCoreTimeout) |
khenaidoo | 54e0ddf | 2019-02-27 16:21:33 -0500 | [diff] [blame] | 137 | |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 138 | // Start the KafkaManager. This must be done after the deviceMgr, adapterMgr, and |
| 139 | // logicalDeviceMgr have been created, as once the kmp is started, it will register |
| 140 | // the above with the kmp. |
| 141 | |
| 142 | go core.startKafkaManager(ctx, |
| 143 | core.config.ConnectionRetryInterval, |
| 144 | core.config.LiveProbeInterval, |
| 145 | core.config.NotLiveProbeInterval) |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 146 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 147 | go core.startDeviceManager(ctx) |
| 148 | go core.startLogicalDeviceManager(ctx) |
| 149 | go core.startGRPCService(ctx) |
khenaidoo | 21d5115 | 2019-02-01 13:48:37 -0500 | [diff] [blame] | 150 | go core.startAdapterManager(ctx) |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 151 | go core.monitorKvstoreLiveness(ctx) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 152 | |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 153 | logger.Info("core-services-started") |
Thomas Lee S | e5a4401 | 2019-11-07 20:32:24 +0530 | [diff] [blame] | 154 | return nil |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 155 | } |
| 156 | |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 157 | // Stop brings down core services |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 158 | func (core *Core) Stop(ctx context.Context) { |
Scott Baker | 2d87ee3 | 2020-03-03 13:04:01 -0800 | [diff] [blame] | 159 | core.stopOnce.Do(func() { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 160 | logger.Info("stopping-adaptercore") |
Scott Baker | 2d87ee3 | 2020-03-03 13:04:01 -0800 | [diff] [blame] | 161 | // Signal to the KVStoreMonitor that we are stopping. |
| 162 | close(core.exitChannel) |
| 163 | // Stop all the started services |
| 164 | if core.grpcServer != nil { |
| 165 | core.grpcServer.Stop() |
| 166 | } |
| 167 | if core.logicalDeviceMgr != nil { |
| 168 | core.logicalDeviceMgr.stop(ctx) |
| 169 | } |
| 170 | if core.deviceMgr != nil { |
| 171 | core.deviceMgr.stop(ctx) |
| 172 | } |
| 173 | if core.kmp != nil { |
| 174 | core.kmp.Stop() |
| 175 | } |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 176 | logger.Info("adaptercore-stopped") |
Scott Baker | 2d87ee3 | 2020-03-03 13:04:01 -0800 | [diff] [blame] | 177 | }) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 178 | } |
| 179 | |
khenaidoo | 631fe54 | 2019-05-31 15:44:43 -0400 | [diff] [blame] | 180 | //startGRPCService creates the grpc service handlers, registers it to the grpc server and starts the server |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 181 | func (core *Core) startGRPCService(ctx context.Context) { |
| 182 | // create an insecure gserver server |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 183 | core.grpcServer = grpcserver.NewGrpcServer(core.config.GrpcHost, core.config.GrpcPort, nil, false, probe.GetProbeFromContext(ctx)) |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 184 | logger.Info("grpc-server-created") |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 185 | |
khenaidoo | 54e0ddf | 2019-02-27 16:21:33 -0500 | [diff] [blame] | 186 | core.grpcNBIAPIHandler = NewAPIHandler(core) |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 187 | logger.Infow("grpc-handler", log.Fields{"core_binding_key": core.config.CoreBindingKey}) |
Richard Jankowski | dbab94a | 2018-12-06 16:20:25 -0500 | [diff] [blame] | 188 | core.logicalDeviceMgr.setGrpcNbiHandler(core.grpcNBIAPIHandler) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 189 | // Create a function to register the core GRPC service with the GRPC server |
| 190 | f := func(gs *grpc.Server) { |
| 191 | voltha.RegisterVolthaServiceServer( |
| 192 | gs, |
Richard Jankowski | dbab94a | 2018-12-06 16:20:25 -0500 | [diff] [blame] | 193 | core.grpcNBIAPIHandler, |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 194 | ) |
| 195 | } |
| 196 | |
| 197 | core.grpcServer.AddService(f) |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 198 | logger.Info("grpc-service-added") |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 199 | |
David K. Bainbridge | b4a9ab0 | 2019-09-20 15:12:16 -0700 | [diff] [blame] | 200 | /* |
| 201 | * Start the GRPC server |
| 202 | * |
| 203 | * This is a bit sub-optimal here as the grpcServer.Start call does not return (blocks) |
| 204 | * until something fails, but we want to send a "start" status update. As written this |
| 205 | * means that we are actually sending the "start" status update before the server is |
| 206 | * started, which means it is possible that the status is "running" before it actually is. |
| 207 | * |
| 208 | * This means that there is a small window in which the core could return its status as |
| 209 | * ready, when it really isn't. |
| 210 | */ |
| 211 | probe.UpdateStatusFromContext(ctx, "grpc-service", probe.ServiceStatusRunning) |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 212 | logger.Info("grpc-server-started") |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 213 | core.grpcServer.Start(ctx) |
David K. Bainbridge | b4a9ab0 | 2019-09-20 15:12:16 -0700 | [diff] [blame] | 214 | probe.UpdateStatusFromContext(ctx, "grpc-service", probe.ServiceStatusStopped) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 215 | } |
| 216 | |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 217 | // Initialize the kafka manager, but we will start it later |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 218 | func (core *Core) initKafkaManager(ctx context.Context) { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 219 | logger.Infow("initialize-kafka-manager", log.Fields{"host": core.config.KafkaAdapterHost, |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 220 | "port": core.config.KafkaAdapterPort, "topic": core.config.CoreTopic}) |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 221 | |
| 222 | probe.UpdateStatusFromContext(ctx, "message-bus", probe.ServiceStatusPreparing) |
| 223 | |
| 224 | // create the proxy |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 225 | core.kmp = kafka.NewInterContainerProxy( |
khenaidoo | 43c8212 | 2018-11-22 18:38:28 -0500 | [diff] [blame] | 226 | kafka.InterContainerHost(core.config.KafkaAdapterHost), |
| 227 | kafka.InterContainerPort(core.config.KafkaAdapterPort), |
| 228 | kafka.MsgClient(core.kafkaClient), |
khenaidoo | 7923270 | 2018-12-04 11:00:41 -0500 | [diff] [blame] | 229 | kafka.DefaultTopic(&kafka.Topic{Name: core.config.CoreTopic}), |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 230 | kafka.DeviceDiscoveryTopic(&kafka.Topic{Name: core.config.AffinityRouterTopic})) |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 231 | |
| 232 | probe.UpdateStatusFromContext(ctx, "message-bus", probe.ServiceStatusPrepared) |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | /* |
| 236 | * KafkaMonitorThread |
| 237 | * |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 238 | * Responsible for starting the Kafka Interadapter Proxy and monitoring its liveness |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 239 | * state. |
| 240 | * |
| 241 | * Any producer that fails to send will cause KafkaInterContainerProxy to |
| 242 | * post a false event on its liveness channel. Any producer that succeeds in sending |
| 243 | * will cause KafkaInterContainerProxy to post a true event on its liveness |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 244 | * channel. Group receivers also update liveness state, and a receiver will typically |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 245 | * indicate a loss of liveness within 3-5 seconds of Kafka going down. Receivers |
| 246 | * only indicate restoration of liveness if a message is received. During normal |
| 247 | * operation, messages will be routinely produced and received, automatically |
| 248 | * indicating liveness state. These routine liveness indications are rate-limited |
| 249 | * inside sarama_client. |
| 250 | * |
| 251 | * This thread monitors the status of KafkaInterContainerProxy's liveness and pushes |
| 252 | * that state to the core's readiness probes. If no liveness event has been seen |
| 253 | * within a timeout, then the thread will make an attempt to produce a "liveness" |
| 254 | * message, which will in turn trigger a liveness event on the liveness channel, true |
| 255 | * or false depending on whether the attempt succeeded. |
| 256 | * |
| 257 | * The gRPC server in turn monitors the state of the readiness probe and will |
| 258 | * start issuing UNAVAILABLE response while the probe is not ready. |
| 259 | * |
| 260 | * startupRetryInterval -- interval between attempts to start |
| 261 | * liveProbeInterval -- interval between liveness checks when in a live state |
| 262 | * notLiveProbeInterval -- interval between liveness checks when in a notLive state |
| 263 | * |
| 264 | * liveProbeInterval and notLiveProbeInterval can be configured separately, |
| 265 | * though the current default is that both are set to 60 seconds. |
| 266 | */ |
| 267 | |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 268 | func (core *Core) startKafkaManager(ctx context.Context, startupRetryInterval time.Duration, liveProbeInterval time.Duration, notLiveProbeInterval time.Duration) { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 269 | logger.Infow("starting-kafka-manager-thread", log.Fields{"host": core.config.KafkaAdapterHost, |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 270 | "port": core.config.KafkaAdapterPort, "topic": core.config.CoreTopic}) |
| 271 | |
| 272 | started := false |
| 273 | for !started { |
| 274 | // If we haven't started yet, then try to start |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 275 | logger.Infow("starting-kafka-proxy", log.Fields{}) |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 276 | if err := core.kmp.Start(); err != nil { |
| 277 | // We failed to start. Delay and then try again later. |
| 278 | // Don't worry about liveness, as we can't be live until we've started. |
| 279 | probe.UpdateStatusFromContext(ctx, "message-bus", probe.ServiceStatusNotReady) |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 280 | logger.Infow("error-starting-kafka-messaging-proxy", log.Fields{"error": err}) |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 281 | time.Sleep(startupRetryInterval) |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 282 | } else { |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 283 | // We started. We only need to do this once. |
| 284 | // Next we'll fall through and start checking liveness. |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 285 | logger.Infow("started-kafka-proxy", log.Fields{}) |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 286 | |
| 287 | // cannot do this until after the kmp is started |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 288 | if err := core.registerAdapterRequestHandlers(ctx, core.instanceID, core.deviceMgr, core.logicalDeviceMgr, core.adapterMgr, core.clusterDataProxy, core.localDataProxy); err != nil { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 289 | logger.Fatal("Failure-registering-adapterRequestHandler") |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | started = true |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 293 | } |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 294 | } |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 295 | |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 296 | logger.Info("started-kafka-message-proxy") |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 297 | |
| 298 | livenessChannel := core.kmp.EnableLivenessChannel(true) |
| 299 | |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 300 | logger.Info("enabled-kafka-liveness-channel") |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 301 | |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 302 | timeout := liveProbeInterval |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 303 | for { |
| 304 | timeoutTimer := time.NewTimer(timeout) |
| 305 | select { |
| 306 | case liveness := <-livenessChannel: |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 307 | logger.Infow("kafka-manager-thread-liveness-event", log.Fields{"liveness": liveness}) |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 308 | // there was a state change in Kafka liveness |
| 309 | if !liveness { |
| 310 | probe.UpdateStatusFromContext(ctx, "message-bus", probe.ServiceStatusNotReady) |
| 311 | |
| 312 | if core.grpcServer != nil { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 313 | logger.Info("kafka-manager-thread-set-server-notready") |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | // retry frequently while life is bad |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 317 | timeout = notLiveProbeInterval |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 318 | } else { |
| 319 | probe.UpdateStatusFromContext(ctx, "message-bus", probe.ServiceStatusRunning) |
| 320 | |
| 321 | if core.grpcServer != nil { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 322 | logger.Info("kafka-manager-thread-set-server-ready") |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | // retry infrequently while life is good |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 326 | timeout = liveProbeInterval |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 327 | } |
| 328 | if !timeoutTimer.Stop() { |
| 329 | <-timeoutTimer.C |
| 330 | } |
| 331 | case <-timeoutTimer.C: |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 332 | logger.Info("kafka-proxy-liveness-recheck") |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 333 | // send the liveness probe in a goroutine; we don't want to deadlock ourselves as |
| 334 | // the liveness probe may wait (and block) writing to our channel. |
| 335 | go func() { |
| 336 | err := core.kmp.SendLiveness() |
| 337 | if err != nil { |
| 338 | // Catch possible error case if sending liveness after Sarama has been stopped. |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 339 | logger.Warnw("error-kafka-send-liveness", log.Fields{"error": err}) |
Scott Baker | ee6a087 | 2019-10-29 15:59:52 -0700 | [diff] [blame] | 340 | } |
| 341 | }() |
| 342 | } |
| 343 | } |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 344 | } |
| 345 | |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 346 | // waitUntilKVStoreReachableOrMaxTries will wait until it can connect to a KV store or until maxtries has been reached |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 347 | func (core *Core) waitUntilKVStoreReachableOrMaxTries(ctx context.Context, maxRetries int, retryInterval time.Duration) error { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 348 | logger.Infow("verifying-KV-store-connectivity", log.Fields{"host": core.config.KVStoreHost, |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 349 | "port": core.config.KVStorePort, "retries": maxRetries, "retryInterval": retryInterval}) |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 350 | count := 0 |
| 351 | for { |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 352 | if !core.kvClient.IsConnectionUp(ctx) { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 353 | logger.Info("KV-store-unreachable") |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 354 | if maxRetries != -1 { |
| 355 | if count >= maxRetries { |
| 356 | return status.Error(codes.Unavailable, "kv store unreachable") |
| 357 | } |
| 358 | } |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 359 | count++ |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 360 | // Take a nap before retrying |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 361 | time.Sleep(retryInterval) |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 362 | logger.Infow("retry-KV-store-connectivity", log.Fields{"retryCount": count, "maxRetries": maxRetries, "retryInterval": retryInterval}) |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 363 | |
| 364 | } else { |
| 365 | break |
| 366 | } |
| 367 | } |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 368 | logger.Info("KV-store-reachable") |
khenaidoo | b324421 | 2019-08-27 14:32:27 -0400 | [diff] [blame] | 369 | return nil |
| 370 | } |
| 371 | |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 372 | func (core *Core) registerAdapterRequestHandlers(ctx context.Context, coreInstanceID string, dMgr *DeviceManager, |
khenaidoo | 297cd25 | 2019-02-07 22:10:23 -0500 | [diff] [blame] | 373 | ldMgr *LogicalDeviceManager, aMgr *AdapterManager, cdProxy *model.Proxy, ldProxy *model.Proxy, |
khenaidoo | 54e0ddf | 2019-02-27 16:21:33 -0500 | [diff] [blame] | 374 | ) error { |
npujar | 1d86a52 | 2019-11-14 17:11:16 +0530 | [diff] [blame] | 375 | requestProxy := NewAdapterRequestHandlerProxy(core, coreInstanceID, dMgr, ldMgr, aMgr, cdProxy, ldProxy, |
David Bainbridge | fd27f4b | 2020-03-26 18:27:41 -0700 | [diff] [blame^] | 376 | core.config.LongRunningRequestTimeout, core.config.DefaultRequestTimeout) |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 377 | |
khenaidoo | 54e0ddf | 2019-02-27 16:21:33 -0500 | [diff] [blame] | 378 | // Register the broadcast topic to handle any core-bound broadcast requests |
| 379 | if err := core.kmp.SubscribeWithRequestHandlerInterface(kafka.Topic{Name: core.config.CoreTopic}, requestProxy); err != nil { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 380 | logger.Fatalw("Failed-registering-broadcast-handler", log.Fields{"topic": core.config.CoreTopic}) |
khenaidoo | 54e0ddf | 2019-02-27 16:21:33 -0500 | [diff] [blame] | 381 | return err |
| 382 | } |
| 383 | |
Kent Hagerman | a6d0c36 | 2019-07-30 12:50:21 -0400 | [diff] [blame] | 384 | // Register the core-pair topic to handle core-bound requests destined to the core pair |
| 385 | if err := core.kmp.SubscribeWithDefaultRequestHandler(kafka.Topic{Name: core.config.CorePairTopic}, kafka.OffsetNewest); err != nil { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 386 | logger.Fatalw("Failed-registering-pair-handler", log.Fields{"topic": core.config.CorePairTopic}) |
Kent Hagerman | a6d0c36 | 2019-07-30 12:50:21 -0400 | [diff] [blame] | 387 | return err |
| 388 | } |
| 389 | |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 390 | logger.Info("request-handler-registered") |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 391 | return nil |
| 392 | } |
| 393 | |
| 394 | func (core *Core) startDeviceManager(ctx context.Context) { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 395 | logger.Info("DeviceManager-Starting...") |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 396 | core.deviceMgr.start(ctx, core.logicalDeviceMgr) |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 397 | logger.Info("DeviceManager-Started") |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | func (core *Core) startLogicalDeviceManager(ctx context.Context) { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 401 | logger.Info("Logical-DeviceManager-Starting...") |
khenaidoo | 4d4802d | 2018-10-04 21:59:49 -0400 | [diff] [blame] | 402 | core.logicalDeviceMgr.start(ctx) |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 403 | logger.Info("Logical-DeviceManager-Started") |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 404 | } |
khenaidoo | 21d5115 | 2019-02-01 13:48:37 -0500 | [diff] [blame] | 405 | |
| 406 | func (core *Core) startAdapterManager(ctx context.Context) { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 407 | logger.Info("Adapter-Manager-Starting...") |
Thomas Lee S | e5a4401 | 2019-11-07 20:32:24 +0530 | [diff] [blame] | 408 | err := core.adapterMgr.start(ctx) |
| 409 | if err != nil { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 410 | logger.Fatalf("failed-to-start-adapter-manager: error %v ", err) |
Thomas Lee S | e5a4401 | 2019-11-07 20:32:24 +0530 | [diff] [blame] | 411 | } |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 412 | logger.Info("Adapter-Manager-Started") |
William Kurkian | daa6bb2 | 2019-03-07 12:26:28 -0500 | [diff] [blame] | 413 | } |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 414 | |
| 415 | /* |
| 416 | * Thread to monitor kvstore Liveness (connection status) |
| 417 | * |
| 418 | * This function constantly monitors Liveness State of kvstore as reported |
| 419 | * periodically by backend and updates the Status of kv-store service registered |
| 420 | * with rw_core probe. |
| 421 | * |
| 422 | * If no liveness event has been seen within a timeout, then the thread will |
| 423 | * perform a "liveness" check attempt, which will in turn trigger a liveness event on |
| 424 | * the liveness channel, true or false depending on whether the attempt succeeded. |
| 425 | * |
| 426 | * The gRPC server in turn monitors the state of the readiness probe and will |
| 427 | * start issuing UNAVAILABLE response while the probe is not ready. |
| 428 | */ |
| 429 | func (core *Core) monitorKvstoreLiveness(ctx context.Context) { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 430 | logger.Info("start-monitoring-kvstore-liveness") |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 431 | |
| 432 | // Instruct backend to create Liveness channel for transporting state updates |
| 433 | livenessChannel := core.backend.EnableLivenessChannel() |
| 434 | |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 435 | logger.Debug("enabled-kvstore-liveness-channel") |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 436 | |
| 437 | // Default state for kvstore is alive for rw_core |
| 438 | timeout := core.config.LiveProbeInterval |
Scott Baker | 2d87ee3 | 2020-03-03 13:04:01 -0800 | [diff] [blame] | 439 | loop: |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 440 | for { |
| 441 | timeoutTimer := time.NewTimer(timeout) |
| 442 | select { |
| 443 | |
| 444 | case liveness := <-livenessChannel: |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 445 | logger.Debugw("received-liveness-change-notification", log.Fields{"liveness": liveness}) |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 446 | |
| 447 | if !liveness { |
| 448 | probe.UpdateStatusFromContext(ctx, "kv-store", probe.ServiceStatusNotReady) |
| 449 | |
| 450 | if core.grpcServer != nil { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 451 | logger.Info("kvstore-set-server-notready") |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | timeout = core.config.NotLiveProbeInterval |
| 455 | |
| 456 | } else { |
| 457 | probe.UpdateStatusFromContext(ctx, "kv-store", probe.ServiceStatusRunning) |
| 458 | |
| 459 | if core.grpcServer != nil { |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 460 | logger.Info("kvstore-set-server-ready") |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | timeout = core.config.LiveProbeInterval |
| 464 | } |
| 465 | |
| 466 | if !timeoutTimer.Stop() { |
| 467 | <-timeoutTimer.C |
| 468 | } |
| 469 | |
Scott Baker | 2d87ee3 | 2020-03-03 13:04:01 -0800 | [diff] [blame] | 470 | case <-core.exitChannel: |
| 471 | break loop |
| 472 | |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 473 | case <-timeoutTimer.C: |
Girish Kumar | f56a468 | 2020-03-20 20:07:46 +0000 | [diff] [blame] | 474 | logger.Info("kvstore-perform-liveness-check-on-timeout") |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 475 | |
| 476 | // Trigger Liveness check if no liveness update received within the timeout period. |
| 477 | // The Liveness check will push Live state to same channel which this routine is |
| 478 | // reading and processing. This, do it asynchronously to avoid blocking for |
| 479 | // backend response and avoid any possibility of deadlock |
npujar | 467fe75 | 2020-01-16 20:17:45 +0530 | [diff] [blame] | 480 | go core.backend.PerformLivenessCheck(ctx) |
Girish Kumar | 4d3887d | 2019-11-22 14:22:05 +0000 | [diff] [blame] | 481 | } |
| 482 | } |
| 483 | } |