blob: 5ab5c4c6858968823ac2d824507fa3c077f298ff [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package services
import (
"context"
"encoding/json"
"fmt"
"github.com/apache/incubator-devlake/errors"
"github.com/apache/incubator-devlake/logger"
"github.com/apache/incubator-devlake/models"
"github.com/apache/incubator-devlake/plugins/core"
"github.com/apache/incubator-devlake/runner"
"github.com/apache/incubator-devlake/worker/app"
"go.temporal.io/sdk/client"
"time"
)
type pipelineRunner struct {
logger core.Logger
pipeline *models.Pipeline
}
func (p *pipelineRunner) runPipelineStandalone() errors.Error {
return runner.RunPipeline(
cfg,
p.logger,
db,
p.pipeline.ID,
func(taskIds []uint64) errors.Error {
return runTasksStandalone(p.logger, taskIds)
},
)
}
func (p *pipelineRunner) runPipelineViaTemporal() errors.Error {
workflowOpts := client.StartWorkflowOptions{
ID: getTemporalWorkflowId(p.pipeline.ID),
TaskQueue: cfg.GetString("TEMPORAL_TASK_QUEUE"),
}
// send only the very basis data
configJson, err := json.Marshal(cfg.AllSettings())
if err != nil {
return errors.Convert(err)
}
p.logger.Info("enqueue pipeline #%d into temporal task queue", p.pipeline.ID)
workflow, err := temporalClient.ExecuteWorkflow(
context.Background(),
workflowOpts,
app.DevLakePipelineWorkflow,
configJson,
p.pipeline.ID,
p.logger.GetConfig(),
)
if err != nil {
p.logger.Error(err, "failed to enqueue pipeline #%d into temporal", p.pipeline.ID)
return errors.Convert(err)
}
err = workflow.Get(context.Background(), nil)
if err != nil {
p.logger.Info("failed to execute pipeline #%d via temporal: %w", p.pipeline.ID, err)
}
p.logger.Info("pipeline #%d finished by temporal", p.pipeline.ID)
return errors.Convert(err)
}
func getPipelineLogger(pipeline *models.Pipeline) core.Logger {
pipelineLogger := globalPipelineLog.Nested(
fmt.Sprintf("pipeline #%d", pipeline.ID),
)
loggingPath := logger.GetPipelineLoggerPath(pipelineLogger.GetConfig(), pipeline)
stream, err := logger.GetFileStream(loggingPath)
if err != nil {
globalPipelineLog.Error(nil, "unable to set stream for logging pipeline %d", pipeline.ID)
} else {
pipelineLogger.SetStream(&core.LoggerStreamConfig{
Path: loggingPath,
Writer: stream,
})
}
return pipelineLogger
}
// runPipeline start a pipeline actually
func runPipeline(pipelineId uint64) errors.Error {
pipeline, err := GetPipeline(pipelineId)
if err != nil {
return err
}
pipelineRun := pipelineRunner{
logger: getPipelineLogger(pipeline),
pipeline: pipeline,
}
// run
if temporalClient != nil {
err = pipelineRun.runPipelineViaTemporal()
} else {
err = pipelineRun.runPipelineStandalone()
}
if err != nil {
err = errors.Default.Wrap(err, fmt.Sprintf("Error running pipeline %d.", pipelineId))
}
pipeline, e := GetPipeline(pipelineId)
if e != nil {
return errors.Default.Wrap(err, fmt.Sprintf("Unable to get pipeline %d.", pipelineId))
}
// finished, update database
finishedAt := time.Now()
pipeline.FinishedAt = &finishedAt
pipeline.SpentSeconds = int(finishedAt.Unix() - pipeline.BeganAt.Unix())
if err != nil {
pipeline.Status = models.TASK_FAILED
if lakeErr := errors.AsLakeErrorType(err); lakeErr != nil {
pipeline.Message = lakeErr.Messages().Format()
} else {
pipeline.Message = err.Error()
}
} else {
pipeline.Status = models.TASK_COMPLETED
pipeline.Message = ""
}
dbPipeline := parseDbPipeline(pipeline)
dbe := db.Model(dbPipeline).Select("finished_at", "spent_seconds", "status", "message").Updates(dbPipeline).Error
if dbe != nil {
globalPipelineLog.Error(dbe, "update pipeline state failed")
return errors.Convert(dbe)
}
// notify external webhook
return NotifyExternal(pipelineId)
}