mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-01 03:07:51 +08:00
165 lines
4.4 KiB
Go
165 lines
4.4 KiB
Go
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
|
|
// RAINBOND, Application Management Platform
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version. For any non-GPL usage of Rainbond,
|
|
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
|
|
// must be obtained first.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package discover
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/goodrain/rainbond/worker/appm/store"
|
|
|
|
"github.com/goodrain/rainbond/worker/appm/controller"
|
|
|
|
"github.com/goodrain/rainbond/cmd/worker/option"
|
|
"github.com/goodrain/rainbond/mq/api/grpc/client"
|
|
"github.com/goodrain/rainbond/mq/api/grpc/pb"
|
|
"github.com/goodrain/rainbond/worker/discover/model"
|
|
"github.com/goodrain/rainbond/worker/handle"
|
|
|
|
grpc1 "google.golang.org/grpc"
|
|
|
|
"fmt"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
//WTOPIC is worker
|
|
const WTOPIC string = "worker"
|
|
|
|
var healthStatus = make(map[string]string, 1)
|
|
|
|
//TaskNum exec task number
|
|
var TaskNum float64
|
|
|
|
//TaskError exec error task number
|
|
var TaskError float64
|
|
|
|
//TaskManager task
|
|
type TaskManager struct {
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
config option.Config
|
|
handleManager *handle.Manager
|
|
client *client.MQClient
|
|
}
|
|
|
|
//NewTaskManager return *TaskManager
|
|
func NewTaskManager(c option.Config, store store.Storer, controllermanager *controller.Manager) *TaskManager {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
handleManager := handle.NewManager(ctx, c, store, controllermanager)
|
|
healthStatus["status"] = "health"
|
|
healthStatus["info"] = "worker service health"
|
|
return &TaskManager{
|
|
ctx: ctx,
|
|
cancel: cancel,
|
|
config: c,
|
|
handleManager: handleManager,
|
|
}
|
|
}
|
|
|
|
//Start 启动
|
|
func (t *TaskManager) Start() error {
|
|
client, err := client.NewMqClient(t.config.EtcdEndPoints, t.config.MQAPI)
|
|
if err != nil {
|
|
logrus.Errorf("new Mq client error, %v", err)
|
|
healthStatus["status"] = "unusual"
|
|
healthStatus["info"] = fmt.Sprintf("new Mq client error, %v", err)
|
|
return err
|
|
}
|
|
t.client = client
|
|
go t.Do()
|
|
logrus.Info("start discover success.")
|
|
return nil
|
|
}
|
|
|
|
//Do do
|
|
func (t *TaskManager) Do() {
|
|
logrus.Info("start receive task from mq")
|
|
hostname, _ := os.Hostname()
|
|
for {
|
|
select {
|
|
case <-t.ctx.Done():
|
|
return
|
|
default:
|
|
ctx, cancel := context.WithCancel(t.ctx)
|
|
data, err := t.client.Dequeue(ctx, &pb.DequeueRequest{Topic: WTOPIC, ClientHost: hostname + "-worker"})
|
|
cancel()
|
|
if err != nil {
|
|
if grpc1.ErrorDesc(err) == context.DeadlineExceeded.Error() {
|
|
continue
|
|
}
|
|
if grpc1.ErrorDesc(err) == "context canceled" {
|
|
logrus.Info("receive task core context canceled")
|
|
healthStatus["status"] = "unusual"
|
|
healthStatus["info"] = "receive task core context canceled"
|
|
return
|
|
}
|
|
if grpc1.ErrorDesc(err) == "context timeout" {
|
|
continue
|
|
}
|
|
logrus.Error("receive task error.", err.Error())
|
|
time.Sleep(time.Second * 2)
|
|
continue
|
|
}
|
|
logrus.Debugf("receive a task: %v", data)
|
|
transData, err := model.TransTask(data)
|
|
if err != nil {
|
|
logrus.Error("trans mq msg data error ", err.Error())
|
|
continue
|
|
}
|
|
rc := t.handleManager.AnalystToExec(transData)
|
|
if rc != nil && rc != handle.ErrCallback {
|
|
TaskError++
|
|
} else if rc != nil && rc == handle.ErrCallback {
|
|
ctx, cancel := context.WithCancel(t.ctx)
|
|
reply, err := t.client.Enqueue(ctx, &pb.EnqueueRequest{
|
|
Topic: WTOPIC,
|
|
Message: data,
|
|
})
|
|
cancel()
|
|
logrus.Debugf("retry send task to mq ,reply is %v", reply)
|
|
if err != nil {
|
|
logrus.Errorf("enqueue task %v to mq topic %v Error", data, WTOPIC)
|
|
continue
|
|
}
|
|
//if handle is waiting, sleep 3 second
|
|
time.Sleep(time.Second * 3)
|
|
} else {
|
|
TaskNum++
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//Stop 停止
|
|
func (t *TaskManager) Stop() error {
|
|
logrus.Info("discover manager is stoping.")
|
|
t.cancel()
|
|
if t.client != nil {
|
|
t.client.Close()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//HealthCheck health check
|
|
func HealthCheck() map[string]string {
|
|
return healthStatus
|
|
}
|