Merge branch 'master' of ssh://git.infini.ltd:64221/infini/console
This commit is contained in:
commit
492bd7dd66
|
@ -152,8 +152,21 @@ func (h *LayoutAPI) searchLayout(w http.ResponseWriter, req *http.Request, ps ht
|
||||||
strFrom = h.GetParameterOrDefault(req, "from", "0")
|
strFrom = h.GetParameterOrDefault(req, "from", "0")
|
||||||
viewID = strings.TrimSpace(h.GetParameterOrDefault(req, "view_id", ""))
|
viewID = strings.TrimSpace(h.GetParameterOrDefault(req, "view_id", ""))
|
||||||
typ = strings.TrimSpace(h.GetParameterOrDefault(req, "type", ""))
|
typ = strings.TrimSpace(h.GetParameterOrDefault(req, "type", ""))
|
||||||
|
isFixed = strings.TrimSpace(h.GetParameterOrDefault(req, "is_fixed", ""))
|
||||||
mustQ []util.MapStr
|
mustQ []util.MapStr
|
||||||
)
|
)
|
||||||
|
if isFixed != "" {
|
||||||
|
fixed, err := strconv.ParseBool(isFixed)
|
||||||
|
if err == nil {
|
||||||
|
mustQ = append(mustQ, util.MapStr{
|
||||||
|
"term": util.MapStr{
|
||||||
|
"is_fixed": util.MapStr{
|
||||||
|
"value": fixed,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
if viewID != "" {
|
if viewID != "" {
|
||||||
mustQ = append(mustQ, util.MapStr{
|
mustQ = append(mustQ, util.MapStr{
|
||||||
"term": util.MapStr{
|
"term": util.MapStr{
|
||||||
|
|
|
@ -8,24 +8,27 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
elastic2 "infini.sh/framework/modules/elastic"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"infini.sh/framework/core/api/rbac/enum"
|
|
||||||
|
|
||||||
log "github.com/cihub/seelog"
|
log "github.com/cihub/seelog"
|
||||||
|
|
||||||
"infini.sh/console/model"
|
"infini.sh/console/model"
|
||||||
|
migration_model "infini.sh/console/plugin/migration/model"
|
||||||
|
migration_util "infini.sh/console/plugin/migration/util"
|
||||||
|
|
||||||
"infini.sh/framework/core/api"
|
"infini.sh/framework/core/api"
|
||||||
"infini.sh/framework/core/api/rbac"
|
"infini.sh/framework/core/api/rbac"
|
||||||
|
"infini.sh/framework/core/api/rbac/enum"
|
||||||
httprouter "infini.sh/framework/core/api/router"
|
httprouter "infini.sh/framework/core/api/router"
|
||||||
"infini.sh/framework/core/elastic"
|
"infini.sh/framework/core/elastic"
|
||||||
"infini.sh/framework/core/global"
|
"infini.sh/framework/core/global"
|
||||||
"infini.sh/framework/core/orm"
|
"infini.sh/framework/core/orm"
|
||||||
task2 "infini.sh/framework/core/task"
|
task2 "infini.sh/framework/core/task"
|
||||||
"infini.sh/framework/core/util"
|
"infini.sh/framework/core/util"
|
||||||
|
elastic2 "infini.sh/framework/modules/elastic"
|
||||||
)
|
)
|
||||||
|
|
||||||
func InitAPI() {
|
func InitAPI() {
|
||||||
|
@ -53,7 +56,7 @@ type APIHandler struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *APIHandler) createDataMigrationTask(w http.ResponseWriter, req *http.Request, ps httprouter.Params) {
|
func (h *APIHandler) createDataMigrationTask(w http.ResponseWriter, req *http.Request, ps httprouter.Params) {
|
||||||
clusterTaskConfig := &ClusterMigrationTaskConfig{}
|
clusterTaskConfig := &migration_model.ClusterMigrationTaskConfig{}
|
||||||
err := h.DecodeJSON(req, clusterTaskConfig)
|
err := h.DecodeJSON(req, clusterTaskConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
|
@ -118,7 +121,7 @@ func (h *APIHandler) searchDataMigrationTask(w http.ResponseWriter, req *http.Re
|
||||||
)
|
)
|
||||||
mustQ = append(mustQ, util.MapStr{
|
mustQ = append(mustQ, util.MapStr{
|
||||||
"term": util.MapStr{
|
"term": util.MapStr{
|
||||||
"metadata.labels.business_id": util.MapStr{
|
"metadata.type": util.MapStr{
|
||||||
"value": "cluster_migration",
|
"value": "cluster_migration",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -178,7 +181,7 @@ func (h *APIHandler) searchDataMigrationTask(w http.ResponseWriter, req *http.Re
|
||||||
for _, hit := range searchRes.Hits.Hits {
|
for _, hit := range searchRes.Hits.Hits {
|
||||||
sourceM := util.MapStr(hit.Source)
|
sourceM := util.MapStr(hit.Source)
|
||||||
buf := util.MustToJSONBytes(sourceM["config"])
|
buf := util.MustToJSONBytes(sourceM["config"])
|
||||||
dataConfig := ClusterMigrationTaskConfig{}
|
dataConfig := migration_model.ClusterMigrationTaskConfig{}
|
||||||
err = util.FromJSONBytes(buf, &dataConfig)
|
err = util.FromJSONBytes(buf, &dataConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
|
@ -246,11 +249,11 @@ func (h *APIHandler) startDataMigration(w http.ResponseWriter, req *http.Request
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
writeLog(&obj, &task2.TaskResult{
|
migration_util.WriteLog(&obj, &task2.TaskResult{
|
||||||
Success: true,
|
Success: true,
|
||||||
}, "task status manually set to ready")
|
}, "task status manually set to ready")
|
||||||
|
|
||||||
if obj.Metadata.Labels != nil && obj.Metadata.Labels["business_id"] == "index_migration" && len(obj.ParentId) > 0 {
|
if obj.Metadata.Labels != nil && obj.Metadata.Type == "index_migration" && len(obj.ParentId) > 0 {
|
||||||
//update status of major task to running
|
//update status of major task to running
|
||||||
query := util.MapStr{
|
query := util.MapStr{
|
||||||
"bool": util.MapStr{
|
"bool": util.MapStr{
|
||||||
|
@ -311,7 +314,7 @@ func (h *APIHandler) stopDataMigrationTask(w http.ResponseWriter, req *http.Requ
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
writeLog(&obj, &task2.TaskResult{
|
migration_util.WriteLog(&obj, &task2.TaskResult{
|
||||||
Success: true,
|
Success: true,
|
||||||
}, "task status manually set to pending stop")
|
}, "task status manually set to pending stop")
|
||||||
|
|
||||||
|
@ -320,17 +323,6 @@ func (h *APIHandler) stopDataMigrationTask(w http.ResponseWriter, req *http.Requ
|
||||||
}, 200)
|
}, 200)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getTaskConfig(task *task2.Task, config interface{}) error {
|
|
||||||
if task.Config_ == nil {
|
|
||||||
return util.FromJSONBytes([]byte(task.ConfigString), config)
|
|
||||||
}
|
|
||||||
buf, err := util.ToJSONBytes(task.Config_)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return util.FromJSONBytes(buf, config)
|
|
||||||
}
|
|
||||||
|
|
||||||
func getIndexRefreshInterval(indexNames []string, targetESClient elastic.API) (map[string]string, error) {
|
func getIndexRefreshInterval(indexNames []string, targetESClient elastic.API) (map[string]string, error) {
|
||||||
const step = 50
|
const step = 50
|
||||||
var (
|
var (
|
||||||
|
@ -383,8 +375,8 @@ func (h *APIHandler) getIndexRefreshIntervals(w http.ResponseWriter, req *http.R
|
||||||
}, http.StatusNotFound)
|
}, http.StatusNotFound)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
taskConfig := &ClusterMigrationTaskConfig{}
|
taskConfig := &migration_model.ClusterMigrationTaskConfig{}
|
||||||
err = getTaskConfig(&obj, taskConfig)
|
err = migration_util.GetTaskConfig(&obj, taskConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
@ -421,8 +413,8 @@ func (h *APIHandler) getDataMigrationTaskInfo(w http.ResponseWriter, req *http.R
|
||||||
}, http.StatusNotFound)
|
}, http.StatusNotFound)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
taskConfig := &ClusterMigrationTaskConfig{}
|
taskConfig := &migration_model.ClusterMigrationTaskConfig{}
|
||||||
err = getTaskConfig(&obj, taskConfig)
|
err = migration_util.GetTaskConfig(&obj, taskConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
@ -471,7 +463,7 @@ func (h *APIHandler) getDataMigrationTaskInfo(w http.ResponseWriter, req *http.R
|
||||||
obj.Metadata.Labels["completed_indices"] = completedIndices
|
obj.Metadata.Labels["completed_indices"] = completedIndices
|
||||||
h.WriteJSON(w, obj, http.StatusOK)
|
h.WriteJSON(w, obj, http.StatusOK)
|
||||||
}
|
}
|
||||||
func getMajorTaskInfoByIndex(taskID string) (map[string]IndexStateInfo, error) {
|
func getMajorTaskInfoByIndex(taskID string) (map[string]migration_model.IndexStateInfo, error) {
|
||||||
query := util.MapStr{
|
query := util.MapStr{
|
||||||
"size": 0,
|
"size": 0,
|
||||||
"aggs": util.MapStr{
|
"aggs": util.MapStr{
|
||||||
|
@ -500,7 +492,7 @@ func getMajorTaskInfoByIndex(taskID string) (map[string]IndexStateInfo, error) {
|
||||||
"must": []util.MapStr{
|
"must": []util.MapStr{
|
||||||
{
|
{
|
||||||
"term": util.MapStr{
|
"term": util.MapStr{
|
||||||
"metadata.labels.business_id": util.MapStr{
|
"metadata.type": util.MapStr{
|
||||||
"value": "index_migration",
|
"value": "index_migration",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -529,13 +521,13 @@ func getMajorTaskInfoByIndex(taskID string) (map[string]IndexStateInfo, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
resBody := map[string]IndexStateInfo{}
|
resBody := map[string]migration_model.IndexStateInfo{}
|
||||||
|
|
||||||
if taskAgg, ok := searchRes.Aggregations["group_by_task"]; ok {
|
if taskAgg, ok := searchRes.Aggregations["group_by_task"]; ok {
|
||||||
for _, bk := range taskAgg.Buckets {
|
for _, bk := range taskAgg.Buckets {
|
||||||
if key, ok := bk["key"].(string); ok {
|
if key, ok := bk["key"].(string); ok {
|
||||||
//resBody[key] = int(bk["doc_count"].(float64))
|
//resBody[key] = int(bk["doc_count"].(float64))
|
||||||
resBody[key] = IndexStateInfo{}
|
resBody[key] = migration_model.IndexStateInfo{}
|
||||||
if statusAgg, ok := bk["group_by_status"].(map[string]interface{}); ok {
|
if statusAgg, ok := bk["group_by_status"].(map[string]interface{}); ok {
|
||||||
if sbks, ok := statusAgg["buckets"].([]interface{}); ok {
|
if sbks, ok := statusAgg["buckets"].([]interface{}); ok {
|
||||||
for _, sbk := range sbks {
|
for _, sbk := range sbks {
|
||||||
|
@ -565,7 +557,7 @@ func getMajorTaskInfoByIndex(taskID string) (map[string]IndexStateInfo, error) {
|
||||||
return resBody, nil
|
return resBody, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func getIndexTaskDocCount(ctx context.Context, index *IndexConfig, targetESClient elastic.API) (int64, error) {
|
func getIndexTaskDocCount(ctx context.Context, index *migration_model.IndexConfig, targetESClient elastic.API) (int64, error) {
|
||||||
targetIndexName := index.Target.Name
|
targetIndexName := index.Target.Name
|
||||||
if targetIndexName == "" {
|
if targetIndexName == "" {
|
||||||
if v, ok := index.IndexRename[index.Source.Name].(string); ok {
|
if v, ok := index.IndexRename[index.Source.Name].(string); ok {
|
||||||
|
@ -676,7 +668,7 @@ func (h *APIHandler) getDataMigrationTaskOfIndex(w http.ResponseWriter, req *htt
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if subTask.Metadata.Labels != nil {
|
if subTask.Metadata.Labels != nil {
|
||||||
if subTask.Metadata.Labels["business_id"] == "index_migration" {
|
if subTask.Metadata.Type == "index_migration" {
|
||||||
subTasks = append(subTasks, subTask)
|
subTasks = append(subTasks, subTask)
|
||||||
subTaskStatus[subTask.ID] = subTask.Status
|
subTaskStatus[subTask.ID] = subTask.Status
|
||||||
continue
|
continue
|
||||||
|
@ -694,10 +686,8 @@ func (h *APIHandler) getDataMigrationTaskOfIndex(w http.ResponseWriter, req *htt
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
taskInfo["data_partition"] = len(subTasks)
|
taskInfo["data_partition"] = len(subTasks)
|
||||||
var taskStats = map[string]struct {
|
var scrollStats = map[string]int64{}
|
||||||
ScrolledDocs float64
|
var bulkStats = map[string]int64{}
|
||||||
IndexDocs float64
|
|
||||||
}{}
|
|
||||||
for instID, taskIDs := range pipelineTaskIDs {
|
for instID, taskIDs := range pipelineTaskIDs {
|
||||||
inst := &model.Instance{}
|
inst := &model.Instance{}
|
||||||
inst.ID = instID
|
inst.ID = instID
|
||||||
|
@ -714,19 +704,11 @@ func (h *APIHandler) getDataMigrationTaskOfIndex(w http.ResponseWriter, req *htt
|
||||||
|
|
||||||
for pipelineID, status := range pipelines {
|
for pipelineID, status := range pipelines {
|
||||||
if pid, ok := pipelineSubParentIDs[pipelineID]; ok {
|
if pid, ok := pipelineSubParentIDs[pipelineID]; ok {
|
||||||
if v, err := status.Context.GetValue("es_scroll.scrolled_docs"); err == nil {
|
if vv := migration_util.GetMapIntValue(status.Context, "es_scroll.scrolled_docs"); vv > 0 {
|
||||||
if vv, ok := v.(float64); ok {
|
scrollStats[pid] = vv
|
||||||
stat := taskStats[pid]
|
|
||||||
stat.ScrolledDocs = vv
|
|
||||||
taskStats[pid] = stat
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if v, err := status.Context.GetValue("bulk_indexing.success.count"); err == nil {
|
if vv := migration_util.GetMapIntValue(status.Context, "bulk_indexing.success.count"); vv > 0 {
|
||||||
if vv, ok := v.(float64); ok {
|
bulkStats[pid] = vv
|
||||||
stat := taskStats[pid]
|
|
||||||
stat.IndexDocs = vv
|
|
||||||
taskStats[pid] = stat
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -741,8 +723,8 @@ func (h *APIHandler) getDataMigrationTaskOfIndex(w http.ResponseWriter, req *htt
|
||||||
startTime = subTasks[0].StartTimeInMillis
|
startTime = subTasks[0].StartTimeInMillis
|
||||||
}
|
}
|
||||||
for i, ptask := range subTasks {
|
for i, ptask := range subTasks {
|
||||||
cfg := IndexMigrationTaskConfig{}
|
cfg := migration_model.IndexMigrationTaskConfig{}
|
||||||
err := getTaskConfig(&ptask, &cfg)
|
err := migration_util.GetTaskConfig(&ptask, &cfg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("failed to get task config, err: %v", err)
|
log.Errorf("failed to get task config, err: %v", err)
|
||||||
continue
|
continue
|
||||||
|
@ -764,23 +746,19 @@ func (h *APIHandler) getDataMigrationTaskOfIndex(w http.ResponseWriter, req *htt
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var (
|
var (
|
||||||
scrollDocs float64
|
scrollDocs int64
|
||||||
indexDocs float64
|
indexDocs int64
|
||||||
)
|
)
|
||||||
if stat, ok := taskStats[ptask.ID]; ok {
|
ptaskLabels := util.MapStr(ptask.Metadata.Labels)
|
||||||
scrollDocs = stat.ScrolledDocs
|
if vv, ok := scrollStats[ptask.ID]; ok {
|
||||||
indexDocs = stat.IndexDocs
|
scrollDocs = vv
|
||||||
} else {
|
} else {
|
||||||
if ptask.Status == task2.StatusComplete || ptask.Status == task2.StatusError {
|
scrollDocs = migration_util.GetMapIntValue(ptaskLabels, "scrolled_docs")
|
||||||
if ptask.Metadata.Labels != nil {
|
}
|
||||||
if v, ok := ptask.Metadata.Labels["scrolled_docs"].(float64); ok {
|
if vv, ok := bulkStats[ptask.ID]; ok {
|
||||||
scrollDocs = v
|
indexDocs = vv
|
||||||
}
|
} else {
|
||||||
if v, ok := ptask.Metadata.Labels["index_docs"].(float64); ok {
|
indexDocs = migration_util.GetMapIntValue(ptaskLabels, "index_docs")
|
||||||
indexDocs = v
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var subCompletedTime int64
|
var subCompletedTime int64
|
||||||
|
@ -950,6 +928,11 @@ func (h *APIHandler) validateMultiType(w http.ResponseWriter, req *http.Request,
|
||||||
}, http.StatusOK)
|
}, http.StatusOK)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type InitIndexRequest struct {
|
||||||
|
Mappings map[string]interface{} `json:"mappings"`
|
||||||
|
Settings map[string]interface{} `json:"settings"`
|
||||||
|
}
|
||||||
|
|
||||||
func (h *APIHandler) initIndex(w http.ResponseWriter, req *http.Request, ps httprouter.Params) {
|
func (h *APIHandler) initIndex(w http.ResponseWriter, req *http.Request, ps httprouter.Params) {
|
||||||
targetClusterID := ps.MustGetParameter("id")
|
targetClusterID := ps.MustGetParameter("id")
|
||||||
indexName := ps.MustGetParameter("index")
|
indexName := ps.MustGetParameter("index")
|
||||||
|
@ -978,7 +961,7 @@ func (h *APIHandler) initIndex(w http.ResponseWriter, req *http.Request, ps http
|
||||||
}
|
}
|
||||||
if ml := len(reqBody.Mappings); ml > 0 {
|
if ml := len(reqBody.Mappings); ml > 0 {
|
||||||
var (
|
var (
|
||||||
docType = ""
|
docType = ""
|
||||||
mapping interface{} = reqBody.Mappings
|
mapping interface{} = reqBody.Mappings
|
||||||
)
|
)
|
||||||
if ml == 1 {
|
if ml == 1 {
|
||||||
|
@ -989,7 +972,7 @@ func (h *APIHandler) initIndex(w http.ResponseWriter, req *http.Request, ps http
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mappingBytes := util.MustToJSONBytes(mapping)
|
mappingBytes := util.MustToJSONBytes(mapping)
|
||||||
_, err = client.UpdateMapping(indexName, docType, mappingBytes)
|
_, err = client.UpdateMapping(indexName, docType, mappingBytes)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
|
@ -997,7 +980,7 @@ func (h *APIHandler) initIndex(w http.ResponseWriter, req *http.Request, ps http
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}else{
|
} else {
|
||||||
indexSettings := map[string]interface{}{}
|
indexSettings := map[string]interface{}{}
|
||||||
if len(reqBody.Settings) > 0 {
|
if len(reqBody.Settings) > 0 {
|
||||||
indexSettings["settings"] = reqBody.Settings
|
indexSettings["settings"] = reqBody.Settings
|
||||||
|
@ -1063,7 +1046,7 @@ func (h *APIHandler) deleteDataMigrationTask(w http.ResponseWriter, req *http.Re
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
err = orm.DeleteBy( &obj, util.MustToJSONBytes(q))
|
err = orm.DeleteBy(&obj, util.MustToJSONBytes(q))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
|
@ -1076,7 +1059,7 @@ func (h *APIHandler) deleteDataMigrationTask(w http.ResponseWriter, req *http.Re
|
||||||
}, 200)
|
}, 200)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getMajorTaskStatsFromInstances(majorTaskID string) (taskStats MajorTaskState, err error) {
|
func getMajorTaskStatsFromInstances(majorTaskID string) (taskStats migration_model.MajorTaskState, err error) {
|
||||||
taskQuery := util.MapStr{
|
taskQuery := util.MapStr{
|
||||||
"size": 500,
|
"size": 500,
|
||||||
"query": util.MapStr{
|
"query": util.MapStr{
|
||||||
|
@ -1105,7 +1088,7 @@ func getMajorTaskStatsFromInstances(majorTaskID string) (taskStats MajorTaskStat
|
||||||
"must": []util.MapStr{
|
"must": []util.MapStr{
|
||||||
{
|
{
|
||||||
"term": util.MapStr{
|
"term": util.MapStr{
|
||||||
"metadata.labels.business_id": util.MapStr{
|
"metadata.type": util.MapStr{
|
||||||
"value": "index_migration",
|
"value": "index_migration",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -1141,15 +1124,14 @@ func getMajorTaskStatsFromInstances(majorTaskID string) (taskStats MajorTaskStat
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
taskLabels := util.MapStr(subTask.Metadata.Labels)
|
||||||
if subTask.Metadata.Labels != nil {
|
if subTask.Metadata.Labels != nil {
|
||||||
//add indexDocs of already complete
|
//add indexDocs of already complete
|
||||||
if subTask.Metadata.Labels["business_id"] == "index_migration" {
|
if subTask.Metadata.Type == "index_migration" {
|
||||||
if v, ok := subTask.Metadata.Labels["index_docs"].(float64); ok {
|
taskStats.IndexDocs += migration_util.GetMapIntValue(taskLabels, "index_docs")
|
||||||
taskStats.IndexDocs += v
|
|
||||||
}
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if instID, ok := subTask.Metadata.Labels["execution_instance_id"].(string); ok {
|
if instID := migration_util.GetMapStringValue(taskLabels, "execution_instance_id"); instID != "" {
|
||||||
pipelineTaskIDs[instID] = append(pipelineTaskIDs[instID], subTask.ID)
|
pipelineTaskIDs[instID] = append(pipelineTaskIDs[instID], subTask.ID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1169,17 +1151,13 @@ func getMajorTaskStatsFromInstances(majorTaskID string) (taskStats MajorTaskStat
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, status := range pipelines {
|
for _, status := range pipelines {
|
||||||
if v, err := status.Context.GetValue("bulk_indexing.success.count"); err == nil {
|
taskStats.IndexDocs += migration_util.GetMapIntValue(status.Context, "bulk_indexing.success.count")
|
||||||
if vv, ok := v.(float64); ok {
|
|
||||||
taskStats.IndexDocs += vv
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return taskStats, nil
|
return taskStats, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func getMajorTaskByIndexFromES(majorTaskID string) (map[string]IndexStateInfo, error) {
|
func getMajorTaskByIndexFromES(majorTaskID string) (map[string]migration_model.IndexStateInfo, error) {
|
||||||
taskQuery := util.MapStr{
|
taskQuery := util.MapStr{
|
||||||
"size": 500,
|
"size": 500,
|
||||||
"query": util.MapStr{
|
"query": util.MapStr{
|
||||||
|
@ -1229,7 +1207,7 @@ func getMajorTaskByIndexFromES(majorTaskID string) (map[string]IndexStateInfo, e
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
state := map[string]IndexStateInfo{}
|
state := map[string]migration_model.IndexStateInfo{}
|
||||||
for instID, taskIDs := range pipelineTaskIDs {
|
for instID, taskIDs := range pipelineTaskIDs {
|
||||||
inst := &model.Instance{}
|
inst := &model.Instance{}
|
||||||
inst.ID = instID
|
inst.ID = instID
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
||||||
package migration
|
package model
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
@ -95,20 +95,9 @@ type ClusterInfo struct {
|
||||||
Distribution string `json:"distribution,omitempty"`
|
Distribution string `json:"distribution,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type TaskCompleteState struct {
|
|
||||||
IsComplete bool
|
|
||||||
Error string
|
|
||||||
PipelineIds []string
|
|
||||||
RunningPhase int
|
|
||||||
TotalDocs int64
|
|
||||||
SuccessDocs int64
|
|
||||||
ScrolledDocs int64
|
|
||||||
}
|
|
||||||
|
|
||||||
type MajorTaskState struct {
|
type MajorTaskState struct {
|
||||||
ScrolledDocs float64
|
IndexDocs int64
|
||||||
IndexDocs float64
|
Status string
|
||||||
Status string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type IndexStateInfo struct {
|
type IndexStateInfo struct {
|
||||||
|
@ -116,11 +105,6 @@ type IndexStateInfo struct {
|
||||||
IndexDocs float64
|
IndexDocs float64
|
||||||
}
|
}
|
||||||
|
|
||||||
type InitIndexRequest struct {
|
|
||||||
Mappings map[string]interface{} `json:"mappings"`
|
|
||||||
Settings map[string]interface{} `json:"settings"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type IndexMigrationTaskConfig struct {
|
type IndexMigrationTaskConfig struct {
|
||||||
Source IndexMigrationSourceConfig `json:"source"`
|
Source IndexMigrationSourceConfig `json:"source"`
|
||||||
Target IndexMigrationTargetConfig `json:"target"`
|
Target IndexMigrationTargetConfig `json:"target"`
|
|
@ -0,0 +1,7 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
import "infini.sh/framework/core/task"
|
||||||
|
|
||||||
|
type Processor interface {
|
||||||
|
Process(t *task.Task) (err error)
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,418 @@
|
||||||
|
package pipeline_task
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
log "github.com/cihub/seelog"
|
||||||
|
|
||||||
|
"infini.sh/console/model"
|
||||||
|
migration_model "infini.sh/console/plugin/migration/model"
|
||||||
|
migration_util "infini.sh/console/plugin/migration/util"
|
||||||
|
|
||||||
|
"infini.sh/framework/core/elastic"
|
||||||
|
"infini.sh/framework/core/orm"
|
||||||
|
"infini.sh/framework/core/task"
|
||||||
|
"infini.sh/framework/core/util"
|
||||||
|
)
|
||||||
|
|
||||||
|
type processor struct {
|
||||||
|
Elasticsearch string
|
||||||
|
IndexName string
|
||||||
|
LogIndexName string
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewProcessor(elasticsearch, indexName, logIndexName string) migration_model.Processor {
|
||||||
|
return &processor{
|
||||||
|
Elasticsearch: elasticsearch,
|
||||||
|
IndexName: indexName,
|
||||||
|
LogIndexName: logIndexName,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) Process(t *task.Task) (err error) {
|
||||||
|
switch t.Status {
|
||||||
|
case task.StatusReady:
|
||||||
|
// schedule pipeline task & create pipeline
|
||||||
|
err = p.handleReadyPipelineTask(t)
|
||||||
|
case task.StatusRunning:
|
||||||
|
// check pipeline log
|
||||||
|
err = p.handleRunningPipelineTask(t)
|
||||||
|
case task.StatusPendingStop:
|
||||||
|
// stop pipeline
|
||||||
|
err = p.handlePendingStopPipelineTask(t)
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) handleReadyPipelineTask(taskItem *task.Task) error {
|
||||||
|
switch taskItem.Metadata.Labels["pipeline_id"] {
|
||||||
|
case "es_scroll":
|
||||||
|
case "bulk_indexing":
|
||||||
|
default:
|
||||||
|
return fmt.Errorf("task [%s] has unknown pipeline_id [%s]", taskItem.ID, taskItem.Metadata.Labels["pipeline_id"])
|
||||||
|
}
|
||||||
|
|
||||||
|
instance, err := p.cleanGatewayPipeline(taskItem)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to prepare instance before running pipeline, err: %v", err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
taskItem.RetryTimes++
|
||||||
|
|
||||||
|
cfg := migration_model.PipelineTaskConfig{}
|
||||||
|
err = migration_util.GetTaskConfig(taskItem, &cfg)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to get task config, err: %v", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
cfg.Labels["retry_times"] = taskItem.RetryTimes
|
||||||
|
|
||||||
|
// call instance api to create pipeline task
|
||||||
|
err = instance.CreatePipeline(util.MustToJSONBytes(cfg))
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("create pipeline task [%s] failed, err: %+v", taskItem.ID, err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: find a better way to handle this
|
||||||
|
taskItem.Metadata.Labels["index_docs"] = 0
|
||||||
|
taskItem.Metadata.Labels["success_docs"] = 0
|
||||||
|
taskItem.Metadata.Labels["invalid_docs"] = ""
|
||||||
|
taskItem.Metadata.Labels["invalid_reasons"] = ""
|
||||||
|
taskItem.Metadata.Labels["failure_docs"] = ""
|
||||||
|
taskItem.Metadata.Labels["failure_reasons"] = ""
|
||||||
|
taskItem.Metadata.Labels["scrolled_docs"] = 0
|
||||||
|
|
||||||
|
taskItem.Status = task.StatusRunning
|
||||||
|
taskItem.StartTimeInMillis = time.Now().UnixMilli()
|
||||||
|
p.saveTaskAndWriteLog(taskItem, "wait_for", &task.TaskResult{
|
||||||
|
Success: true,
|
||||||
|
}, fmt.Sprintf("pipeline task [%s] started", taskItem.ID))
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) handleRunningPipelineTask(taskItem *task.Task) error {
|
||||||
|
switch taskItem.Metadata.Labels["pipeline_id"] {
|
||||||
|
case "es_scroll":
|
||||||
|
return p.handleRunningEsScrollPipelineTask(taskItem)
|
||||||
|
case "bulk_indexing":
|
||||||
|
return p.handleRunningBulkIndexingPipelineTask(taskItem)
|
||||||
|
default:
|
||||||
|
return fmt.Errorf("task [%s] has unknown pipeline_id [%s]", taskItem.ID, taskItem.Metadata.Labels["pipeline_id"])
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) handleRunningEsScrollPipelineTask(taskItem *task.Task) error {
|
||||||
|
scrolledDocs, totalHits, scrolled, err := p.getEsScrollTaskState(taskItem)
|
||||||
|
|
||||||
|
if !scrolled {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var errMsg string
|
||||||
|
if err != nil {
|
||||||
|
errMsg = err.Error()
|
||||||
|
}
|
||||||
|
if errMsg == "" {
|
||||||
|
if scrolledDocs < totalHits {
|
||||||
|
errMsg = fmt.Sprintf("scrolled finished but docs count unmatch: %d / %d", scrolledDocs, totalHits)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
now := time.Now()
|
||||||
|
taskItem.CompletedTime = &now
|
||||||
|
taskItem.Metadata.Labels["scrolled_docs"] = scrolledDocs
|
||||||
|
if errMsg != "" {
|
||||||
|
taskItem.Status = task.StatusError
|
||||||
|
} else {
|
||||||
|
taskItem.Status = task.StatusComplete
|
||||||
|
}
|
||||||
|
|
||||||
|
p.saveTaskAndWriteLog(taskItem, "", &task.TaskResult{
|
||||||
|
Success: errMsg == "",
|
||||||
|
Error: errMsg,
|
||||||
|
}, fmt.Sprintf("pipeline task [%s] completed", taskItem.ID))
|
||||||
|
p.cleanGatewayPipeline(taskItem)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) handleRunningBulkIndexingPipelineTask(taskItem *task.Task) error {
|
||||||
|
successDocs, indexDocs, bulked, totalInvalidDocs, totalInvalidReasons, totalFailureDocs, totalFailureReasons, err := p.getBulkIndexingTaskState(taskItem)
|
||||||
|
if !bulked {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var errMsg string
|
||||||
|
if err != nil {
|
||||||
|
errMsg = err.Error()
|
||||||
|
}
|
||||||
|
// TODO: handle multiple run bulk_indexing pipeline tasks and total_docs from index_migration
|
||||||
|
now := time.Now()
|
||||||
|
taskItem.CompletedTime = &now
|
||||||
|
taskItem.Metadata.Labels["index_docs"] = indexDocs
|
||||||
|
taskItem.Metadata.Labels["success_docs"] = successDocs
|
||||||
|
taskItem.Metadata.Labels["invalid_docs"] = strings.Join(totalInvalidDocs, ",")
|
||||||
|
taskItem.Metadata.Labels["invalid_reasons"] = strings.Join(totalInvalidReasons, ",")
|
||||||
|
taskItem.Metadata.Labels["failure_docs"] = strings.Join(totalFailureDocs, ",")
|
||||||
|
taskItem.Metadata.Labels["failure_reasons"] = strings.Join(totalFailureReasons, ",")
|
||||||
|
if errMsg != "" {
|
||||||
|
taskItem.Status = task.StatusError
|
||||||
|
} else {
|
||||||
|
taskItem.Status = task.StatusComplete
|
||||||
|
}
|
||||||
|
|
||||||
|
p.saveTaskAndWriteLog(taskItem, "", &task.TaskResult{
|
||||||
|
Success: errMsg == "",
|
||||||
|
Error: errMsg,
|
||||||
|
}, fmt.Sprintf("pipeline task [%s] completed", taskItem.ID))
|
||||||
|
p.cleanGatewayPipeline(taskItem)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) handlePendingStopPipelineTask(taskItem *task.Task) error {
|
||||||
|
switch taskItem.Metadata.Labels["pipeline_id"] {
|
||||||
|
case "es_scroll":
|
||||||
|
case "bulk_indexing":
|
||||||
|
default:
|
||||||
|
return fmt.Errorf("task [%s] has unknown pipeline_id [%s]", taskItem.ID, taskItem.Metadata.Labels["pipeline_id"])
|
||||||
|
}
|
||||||
|
|
||||||
|
hits, err := p.getPipelineLogs(taskItem, []string{"STOPPED"})
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to get pipeline logs for task [%s], err: %v", taskItem.ID, err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
stopped := len(hits) > 0
|
||||||
|
|
||||||
|
if stopped {
|
||||||
|
taskItem.Status = task.StatusStopped
|
||||||
|
p.saveTaskAndWriteLog(taskItem, "", nil, fmt.Sprintf("task [%s] stopped", taskItem.ID))
|
||||||
|
p.cleanGatewayPipeline(taskItem)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
instance, err := p.getPipelineExecutionInstance(taskItem)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to get execution instance for task [%s], err: %v", taskItem.ID, err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
err = instance.StopPipelineWithTimeout(taskItem.ID, time.Second)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to stop pipeline, err: %v", err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) cleanGatewayPipeline(taskItem *task.Task) (instance model.Instance, err error) {
|
||||||
|
instance, err = p.getPipelineExecutionInstance(taskItem)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = instance.DeletePipeline(taskItem.ID)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("delete pipeline failed, err: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return instance, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) getPipelineExecutionInstance(taskItem *task.Task) (instance model.Instance, err error) {
|
||||||
|
parentTask, err := p.getParentTask(taskItem, "index_migration")
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// Use sub task's execution instance
|
||||||
|
instanceID := parentTask.Metadata.Labels["execution_instance_id"]
|
||||||
|
instance.ID, _ = util.ExtractString(instanceID)
|
||||||
|
_, err = orm.Get(&instance)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to get instance, err: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) getParentTask(taskItem *task.Task, taskType string) (*task.Task, error) {
|
||||||
|
queryDsl := util.MapStr{
|
||||||
|
"size": 1,
|
||||||
|
"query": util.MapStr{
|
||||||
|
"bool": util.MapStr{
|
||||||
|
"must": []util.MapStr{
|
||||||
|
{
|
||||||
|
"terms": util.MapStr{
|
||||||
|
"_id": taskItem.ParentId,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"term": util.MapStr{
|
||||||
|
"metadata.type": taskType,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
esClient := elastic.GetClient(p.Elasticsearch)
|
||||||
|
res, err := esClient.SearchWithRawQueryDSL(p.IndexName, util.MustToJSONBytes(queryDsl))
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("query tasks from es failed, err: %v", err)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if res.GetTotal() == 0 {
|
||||||
|
return nil, errors.New("no parent task found")
|
||||||
|
}
|
||||||
|
for _, hit := range res.Hits.Hits {
|
||||||
|
buf, err := util.ToJSONBytes(hit.Source)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("marshal task json failed, err: %v", err)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
tk := task.Task{}
|
||||||
|
err = util.FromJSONBytes(buf, &tk)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("unmarshal task json failed, err: %v", err)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &tk, nil
|
||||||
|
}
|
||||||
|
return nil, errors.New("not reachable")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) getEsScrollTaskState(taskItem *task.Task) (scrolledDocs int64, totalHits int64, scrolled bool, err error) {
|
||||||
|
hits, err := p.getPipelineLogs(taskItem, []string{"FINISHED", "FAILED"})
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to get pipeline logs for task [%s], err: %v", taskItem.ID, err)
|
||||||
|
err = nil
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for _, hit := range hits {
|
||||||
|
scrolled = true
|
||||||
|
m := util.MapStr(hit.Source)
|
||||||
|
|
||||||
|
errStr := migration_util.GetMapStringValue(m, "payload.pipeline.logging.result.error")
|
||||||
|
if errStr != "" {
|
||||||
|
err = errors.New(errStr)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
scroll = migration_util.GetMapIntValue(m, "payload.pipeline.logging.context.es_scroll.scrolled_docs")
|
||||||
|
total = migration_util.GetMapIntValue(m, "payload.pipeline.logging.context.es_scroll.total_hits")
|
||||||
|
)
|
||||||
|
|
||||||
|
scrolledDocs += scroll
|
||||||
|
totalHits += total
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) getBulkIndexingTaskState(taskItem *task.Task) (successDocs int64, indexDocs int64, bulked bool, totalInvalidDocs []string, totalInvalidReasons []string, totalFailureDocs []string, totalFailureReasons []string, err error) {
|
||||||
|
hits, err := p.getPipelineLogs(taskItem, []string{"FINISHED", "FAILED"})
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to get pipeline logs for task [%s], err: %v", taskItem.ID, err)
|
||||||
|
err = nil
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, hit := range hits {
|
||||||
|
bulked = true
|
||||||
|
m := util.MapStr(hit.Source)
|
||||||
|
|
||||||
|
errStr := migration_util.GetMapStringValue(m, "payload.pipeline.logging.result.error")
|
||||||
|
if errStr != "" {
|
||||||
|
err = errors.New(errStr)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
success = migration_util.GetMapIntValue(m, "payload.pipeline.logging.context.bulk_indexing.success.count")
|
||||||
|
failure = migration_util.GetMapIntValue(m, "payload.pipeline.logging.context.bulk_indexing.failure.count")
|
||||||
|
invalid = migration_util.GetMapIntValue(m, "payload.pipeline.logging.context.bulk_indexing.invalid.count")
|
||||||
|
)
|
||||||
|
successDocs += success
|
||||||
|
indexDocs += success + invalid + failure
|
||||||
|
|
||||||
|
var (
|
||||||
|
invalidDocs = migration_util.GetMapStringSliceValue(m, "payload.pipeline.logging.context.bulk_indexing.detail.invalid.documents")
|
||||||
|
invalidReasons = migration_util.GetMapStringSliceValue(m, "payload.pipeline.logging.context.bulk_indexing.detail.invalid.reasons")
|
||||||
|
failureDocs = migration_util.GetMapStringSliceValue(m, "payload.pipeline.logging.context.bulk_indexing.detail.failure.documents")
|
||||||
|
failureReasons = migration_util.GetMapStringSliceValue(m, "payload.pipeline.logging.context.bulk_indexing.detail.failure.reasons")
|
||||||
|
)
|
||||||
|
totalInvalidDocs = append(totalInvalidDocs, invalidDocs...)
|
||||||
|
totalInvalidReasons = append(invalidReasons, invalidReasons...)
|
||||||
|
totalFailureDocs = append(totalFailureDocs, failureDocs...)
|
||||||
|
totalFailureReasons = append(totalFailureReasons, failureReasons...)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) getPipelineLogs(taskItem *task.Task, status []string) ([]elastic.IndexDocument, error) {
|
||||||
|
query := util.MapStr{
|
||||||
|
"sort": []util.MapStr{
|
||||||
|
{
|
||||||
|
"timestamp": util.MapStr{
|
||||||
|
"order": "desc",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"payload.pipeline.logging.steps": util.MapStr{
|
||||||
|
"order": "desc",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"collapse": util.MapStr{
|
||||||
|
"field": "metadata.labels.task_id",
|
||||||
|
},
|
||||||
|
"query": util.MapStr{
|
||||||
|
"bool": util.MapStr{
|
||||||
|
"must": []util.MapStr{
|
||||||
|
{
|
||||||
|
"term": util.MapStr{
|
||||||
|
"metadata.labels.task_id": taskItem.ID,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"terms": util.MapStr{
|
||||||
|
"payload.pipeline.logging.status": status,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"range": util.MapStr{
|
||||||
|
"metadata.labels.retry_times": util.MapStr{
|
||||||
|
"gte": taskItem.RetryTimes,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
esClient := elastic.GetClient(p.Elasticsearch)
|
||||||
|
res, err := esClient.SearchWithRawQueryDSL(p.LogIndexName, util.MustToJSONBytes(query))
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("search task log from es failed, err: %v", err)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return res.Hits.Hits, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *processor) saveTaskAndWriteLog(taskItem *task.Task, refresh string, taskResult *task.TaskResult, message string) {
|
||||||
|
esClient := elastic.GetClient(p.Elasticsearch)
|
||||||
|
_, err := esClient.Index(p.IndexName, "", taskItem.ID, taskItem, refresh)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to update task, err: %v", err)
|
||||||
|
}
|
||||||
|
if message != "" {
|
||||||
|
migration_util.WriteLog(taskItem, taskResult, message)
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,105 @@
|
||||||
|
package util
|
||||||
|
|
||||||
|
import (
|
||||||
|
log "github.com/cihub/seelog"
|
||||||
|
|
||||||
|
"infini.sh/framework/core/event"
|
||||||
|
"infini.sh/framework/core/task"
|
||||||
|
"infini.sh/framework/core/util"
|
||||||
|
)
|
||||||
|
|
||||||
|
func WriteLog(taskItem *task.Task, taskResult *task.TaskResult, message string) {
|
||||||
|
labels := util.MapStr{}
|
||||||
|
labels.Update(util.MapStr(taskItem.Metadata.Labels))
|
||||||
|
labels["task_type"] = taskItem.Metadata.Type
|
||||||
|
labels["task_id"] = taskItem.ID
|
||||||
|
labels["parent_task_id"] = taskItem.ParentId
|
||||||
|
labels["retry_times"] = taskItem.RetryTimes
|
||||||
|
event.SaveLog(event.Event{
|
||||||
|
Metadata: event.EventMetadata{
|
||||||
|
Category: "task",
|
||||||
|
Name: "logging",
|
||||||
|
Datatype: "event",
|
||||||
|
Labels: labels,
|
||||||
|
},
|
||||||
|
Fields: util.MapStr{
|
||||||
|
"task": util.MapStr{
|
||||||
|
"logging": util.MapStr{
|
||||||
|
"config": taskItem.ConfigString,
|
||||||
|
"status": taskItem.Status,
|
||||||
|
"message": message,
|
||||||
|
"result": taskResult,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
var runningTaskStatus = []string{task.StatusRunning, task.StatusReady}
|
||||||
|
|
||||||
|
func IsRunningState(status string) bool {
|
||||||
|
return util.StringInArray(runningTaskStatus, status)
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetTaskConfig(task *task.Task, config interface{}) error {
|
||||||
|
if task.Config_ == nil {
|
||||||
|
return util.FromJSONBytes([]byte(task.ConfigString), config)
|
||||||
|
}
|
||||||
|
buf, err := util.ToJSONBytes(task.Config_)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return util.FromJSONBytes(buf, config)
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetMapIntValue(m util.MapStr, key string) int64 {
|
||||||
|
v, err := m.GetValue(key)
|
||||||
|
if err != nil {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
vv, err := util.ExtractInt(v)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("got %s but failed to extract, err: %v", key, err)
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
return vv
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetMapStringValue(m util.MapStr, key string) string {
|
||||||
|
v, err := m.GetValue(key)
|
||||||
|
if err != nil {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
vv, err := util.ExtractString(v)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("got %s but failed to extract, err: %v", key, err)
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
return vv
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetMapStringSliceValue(m util.MapStr, key string) []string {
|
||||||
|
v, err := m.GetValue(key)
|
||||||
|
if err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
vv, ok := v.([]string)
|
||||||
|
if !ok {
|
||||||
|
vv, ok := v.([]interface{})
|
||||||
|
if !ok {
|
||||||
|
log.Errorf("got %s but failed to extract, type: %T", key, v)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
ret := make([]string, len(vv))
|
||||||
|
var err error
|
||||||
|
for i := range vv {
|
||||||
|
ret[i], err = util.ExtractString(vv[i])
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("got %s but failed to extract, err: %v", key, err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
return vv
|
||||||
|
}
|
Loading…
Reference in New Issue