65 lines
2.9 KiB
C++
65 lines
2.9 KiB
C++
// 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.
|
|
|
|
#include "olap/task/engine_index_change_task.h"
|
|
|
|
#include "runtime/memory/mem_tracker.h"
|
|
#include "runtime/thread_context.h"
|
|
|
|
namespace doris {
|
|
|
|
EngineIndexChangeTask::EngineIndexChangeTask(
|
|
const TAlterInvertedIndexReq& alter_inverted_index_request)
|
|
: _alter_inverted_index_req(alter_inverted_index_request) {
|
|
_mem_tracker = std::make_shared<MemTrackerLimiter>(
|
|
MemTrackerLimiter::Type::SCHEMA_CHANGE,
|
|
fmt::format("EngineIndexChangeTask#tabletId={}",
|
|
std::to_string(_alter_inverted_index_req.tablet_id)),
|
|
config::memory_limitation_per_thread_for_schema_change_bytes);
|
|
}
|
|
|
|
Status EngineIndexChangeTask::execute() {
|
|
SCOPED_ATTACH_TASK(_mem_tracker);
|
|
DorisMetrics::instance()->alter_inverted_index_requests_total->increment(1);
|
|
uint64_t start = std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
std::chrono::system_clock::now().time_since_epoch())
|
|
.count();
|
|
Status res = StorageEngine::instance()->process_index_change_task(_alter_inverted_index_req);
|
|
|
|
if (!res.ok()) {
|
|
LOG(WARNING) << "failed to do index change task. res=" << res
|
|
<< " tablet_id=" << _alter_inverted_index_req.tablet_id
|
|
<< ", job_id=" << _alter_inverted_index_req.job_id
|
|
<< ", schema_hash=" << _alter_inverted_index_req.schema_hash;
|
|
DorisMetrics::instance()->alter_inverted_index_requests_failed->increment(1);
|
|
return res;
|
|
}
|
|
|
|
uint64_t end = std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
std::chrono::system_clock::now().time_since_epoch())
|
|
.count();
|
|
LOG(INFO) << "success to execute index change task. res=" << res
|
|
<< " tablet_id=" << _alter_inverted_index_req.tablet_id
|
|
<< ", job_id=" << _alter_inverted_index_req.job_id
|
|
<< ", schema_hash=" << _alter_inverted_index_req.schema_hash
|
|
<< ", start time=" << start << ", end time=" << end
|
|
<< ", cost time=" << (end - start);
|
|
return res;
|
|
} // execute
|
|
|
|
} // namespace doris
|