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