blob: 65a79ae462c99f2a814d05777fbf9323a33c6da7 [file] [log] [blame]
/**
* @file SchedulingAgent.cpp
* SchedulingAgent class implementation
*
* 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 "SchedulingAgent.h"
#include <chrono>
#include <thread>
#include <utility>
#include <memory>
#include <iostream>
#include "Exception.h"
#include "core/Processor.h"
#include "utils/ScopeGuard.h"
#include "utils/GeneralUtils.h"
namespace org {
namespace apache {
namespace nifi {
namespace minifi {
bool SchedulingAgent::hasWorkToDo(std::shared_ptr<core::Processor> processor) {
// Whether it has work to do
if (processor->getTriggerWhenEmpty() || !processor->hasIncomingConnections() || processor->flowFilesQueued())
return true;
else
return false;
}
std::future<utils::TaskRescheduleInfo> SchedulingAgent::enableControllerService(std::shared_ptr<core::controller::ControllerServiceNode> &serviceNode) {
logger_->log_info("Enabling CSN in SchedulingAgent %s", serviceNode->getName());
// reference the enable function from serviceNode
std::function<utils::TaskRescheduleInfo()> f_ex = [serviceNode] {
serviceNode->enable();
return utils::TaskRescheduleInfo::Done();
};
// only need to run this once.
auto monitor = utils::make_unique<utils::ComplexMonitor>();
utils::Worker<utils::TaskRescheduleInfo> functor(f_ex, serviceNode->getUUIDStr(), std::move(monitor));
// move the functor into the thread pool. While a future is returned
// we aren't terribly concerned with the result.
std::future<utils::TaskRescheduleInfo> future;
thread_pool_.execute(std::move(functor), future);
if (future.valid())
future.wait();
return future;
}
std::future<utils::TaskRescheduleInfo> SchedulingAgent::disableControllerService(std::shared_ptr<core::controller::ControllerServiceNode> &serviceNode) {
logger_->log_info("Disabling CSN in SchedulingAgent %s", serviceNode->getName());
// reference the disable function from serviceNode
std::function<utils::TaskRescheduleInfo()> f_ex = [serviceNode] {
serviceNode->disable();
return utils::TaskRescheduleInfo::Done();
};
// only need to run this once.
auto monitor = utils::make_unique<utils::ComplexMonitor>();
utils::Worker<utils::TaskRescheduleInfo> functor(f_ex, serviceNode->getUUIDStr(), std::move(monitor));
// move the functor into the thread pool. While a future is returned
// we aren't terribly concerned with the result.
std::future<utils::TaskRescheduleInfo> future;
thread_pool_.execute(std::move(functor), future);
if (future.valid())
future.wait();
return future;
}
bool SchedulingAgent::hasTooMuchOutGoing(std::shared_ptr<core::Processor> processor) {
return processor->flowFilesOutGoingFull();
}
bool SchedulingAgent::onTrigger(const std::shared_ptr<core::Processor> &processor, const std::shared_ptr<core::ProcessContext> &processContext,
const std::shared_ptr<core::ProcessSessionFactory> &sessionFactory) {
if (processor->isYield()) {
logger_->log_debug("Not running %s since it must yield", processor->getName());
return false;
}
// No need to yield, reset yield expiration to 0
processor->clearYield();
if (!hasWorkToDo(processor)) {
// No work to do, yield
return true;
}
if (hasTooMuchOutGoing(processor)) {
logger_->log_debug("backpressure applied because too much outgoing for %s", processor->getUUIDStr());
// need to apply backpressure
return true;
}
auto schedule_it = scheduled_processors_.end();
{
std::lock_guard<std::mutex> lock(watchdog_mtx_);
schedule_it = scheduled_processors_.emplace(processor).first;
}
utils::ScopeGuard guard([this, &schedule_it](){
std::lock_guard<std::mutex> lock(watchdog_mtx_);
scheduled_processors_.erase(schedule_it);
});
processor->incrementActiveTasks();
try {
processor->onTrigger(processContext, sessionFactory);
processor->decrementActiveTask();
} catch (std::exception &exception) {
logger_->log_debug("Caught Exception %s", exception.what());
processor->yield(admin_yield_duration_);
processor->decrementActiveTask();
} catch (...) {
logger_->log_debug("Caught Exception during SchedulingAgent::onTrigger");
processor->yield(admin_yield_duration_);
processor->decrementActiveTask();
}
return false;
}
void SchedulingAgent::watchDogFunc() {
std::lock_guard<std::mutex> lock(watchdog_mtx_);
auto now = std::chrono::steady_clock::now();
for (const auto& info : scheduled_processors_) {
auto elapsed = now - info.last_alert_time_;
if (elapsed > alert_time_) {
int64_t elapsed_ms{ std::chrono::duration_cast<std::chrono::milliseconds>(now - info.start_time_).count() };
logger_->log_warn("%s::onTrigger has been running for %lld ms in %s", info.name_, elapsed_ms, info.uuid_);
info.last_alert_time_ = now;
}
}
}
} /* namespace minifi */
} /* namespace nifi */
} /* namespace apache */
} /* namespace org */