Skip to content

Commit

Permalink
fix for pick commit 5479528
Browse files Browse the repository at this point in the history
[Bug](pipeline) adjust scanner scheduler.submit and _num_scheduling_ctx maintain
adjust scanner scheduler.submit and _num_scheduling_ctx maintain
  • Loading branch information
xiaokang committed Jul 18, 2023
1 parent 90d16e4 commit d59503a
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions be/src/pipeline/pipeline_task.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,20 +112,7 @@ class PipelineTask {
public:
PipelineTask(PipelinePtr& pipeline, uint32_t index, RuntimeState* state, Operators& operators,
OperatorPtr& sink, PipelineFragmentContext* fragment_context,
RuntimeProfile* parent_profile)
: _index(index),
_pipeline(pipeline),
_operators(operators),
_source(_operators.front()),
_root(_operators.back()),
_sink(sink),
_prepared(false),
_opened(false),
_state(state),
_cur_state(PipelineTaskState::NOT_READY),
_data_state(SourceState::DEPEND_ON_SOURCE),
_fragment_context(fragment_context),
_parent_profile(parent_profile) {}
RuntimeProfile* parent_profile);

Status prepare(RuntimeState* state);

Expand Down Expand Up @@ -357,4 +344,4 @@ class PipelineTask {

RuntimeProfile::Counter* _pip_task_total_timer;
};
} // namespace doris::pipeline
} // namespace doris::pipeline

0 comments on commit d59503a

Please sign in to comment.