blob: 5bf37d5cc645284e64256204b0660d7bdfbda3f0 [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 runner
import (
"time"
"github.com/apache/incubator-devlake/models"
"github.com/apache/incubator-devlake/plugins/core"
"github.com/spf13/viper"
"gorm.io/gorm"
)
// RunPipeline FIXME ...
func RunPipeline(
_ *viper.Viper,
log core.Logger,
db *gorm.DB,
pipelineId uint64,
runTasks func([]uint64) error,
) error {
startTime := time.Now()
// load pipeline from db
pipeline := &models.Pipeline{}
err := db.Find(pipeline, pipelineId).Error
if err != nil {
return err
}
// load tasks for pipeline
var tasks []*models.Task
err = db.Where("pipeline_id = ?", pipeline.ID).Order("pipeline_row, pipeline_col").Find(&tasks).Error
if err != nil {
return err
}
// convert to 2d array
taskIds := make([][]uint64, 0)
for _, task := range tasks {
for len(taskIds) < task.PipelineRow {
taskIds = append(taskIds, make([]uint64, 0))
}
taskIds[task.PipelineRow-1] = append(taskIds[task.PipelineRow-1], task.ID)
}
beganAt := time.Now()
err = db.Model(pipeline).Updates(map[string]interface{}{
"status": models.TASK_RUNNING,
"message": "",
"began_at": beganAt,
}).Error
if err != nil {
return err
}
// This double for loop executes each set of tasks sequentially while
// executing the set of tasks concurrently.
finishedTasks := 0
for i, row := range taskIds {
// update stage
err = db.Model(pipeline).Updates(map[string]interface{}{
"status": models.TASK_RUNNING,
"stage": i + 1,
}).Error
if err != nil {
log.Error("update pipeline state failed: %w", err)
break
}
// run tasks in parallel
err = runTasks(row)
if err != nil {
log.Error("run tasks failed: %w", err)
return err
}
// Deprecated
// update finishedTasks
finishedTasks += len(row)
err = db.Model(pipeline).Updates(map[string]interface{}{
"finished_tasks": finishedTasks,
}).Error
if err != nil {
log.Error("update pipeline state failed: %w", err)
return err
}
}
endTime := time.Now()
log.Info("pipeline finished in %d ms: %w", endTime.UnixMilli()-startTime.UnixMilli(), err)
return err
}