Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kaijchen committed Sep 3, 2024
1 parent 70aae4b commit 0f1df31
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion be/src/runtime/fragment_mgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,6 @@ void FragmentMgr::coordinator_callback(const ReportStatusRequest& req) {
t.__set_fragment_instance_id(req.runtime_state->fragment_instance_id());
t.__set_num_finished_range(req.runtime_state->num_finished_range());
params.fragment_instance_reports.emplace_back(t);
LOG(INFO) << "[ckj] report params = " << para
} else if (!req.runtime_states.empty()) {
for (auto* rs : req.runtime_states) {
if (rs->num_rows_load_total() > 0 || rs->num_rows_load_filtered() > 0 ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2449,6 +2449,7 @@ public void updateFragmentExecStatus(TReportExecStatusParams params) {
}

if (params.isSetLoadedRows() && jobId != -1) {
LOG.info("[debug][DORIS-12389] got fragment instance reports: {}", params);
if (params.isSetFragmentInstanceReports()) {
for (TFragmentInstanceReport instance : params.getFragmentInstanceReports()) {
Env.getCurrentEnv().getLoadManager().updateJobProgress(
Expand Down

0 comments on commit 0f1df31

Please sign in to comment.