#include <XrdRequestManager.h>
Classes | |
class | OpenHandler |
Public Member Functions | |
void | addConnections (cms::Exception &) const |
std::shared_ptr< XrdCl::File > | getActiveFile () const |
void | getActiveSourceNames (std::vector< std::string > &sources) const |
void | getDisabledSourceNames (std::vector< std::string > &sources) const |
const std::string & | getFilename () const |
void | getPrettyActiveSourceNames (std::vector< std::string > &sources) const |
std::future< IOSize > | handle (void *into, IOSize size, IOOffset off) |
std::future< IOSize > | handle (std::shared_ptr< std::vector< IOPosBuffer > > iolist) |
std::future< IOSize > | handle (std::shared_ptr< XrdAdaptor::ClientRequest > c_ptr) |
void | requestFailure (std::shared_ptr< XrdAdaptor::ClientRequest > c_ptr, XrdCl::Status &c_status) |
virtual | ~RequestManager ()=default |
Static Public Member Functions | |
static std::shared_ptr< RequestManager > | getInstance (const std::string &filename, XrdCl::OpenFlags::Flags flags, XrdCl::Access::Mode perms) |
Static Public Attributes | |
static const unsigned int | XRD_DEFAULT_TIMEOUT = 3*60 |
Private Member Functions | |
void | broadcastRequest (const ClientRequest &, bool active) |
void | checkSources (timespec &now, IOSize requestSize, std::vector< std::shared_ptr< Source >> &activeSources, std::vector< std::shared_ptr< Source >> &inactiveSources) |
void | checkSourcesImpl (timespec &now, IOSize requestSize, std::vector< std::shared_ptr< Source >> &activeSources, std::vector< std::shared_ptr< Source >> &inactiveSources) |
bool | compareSources (const timespec &now, unsigned a, unsigned b, std::vector< std::shared_ptr< Source >> &activeSources, std::vector< std::shared_ptr< Source >> &inactiveSources) const |
virtual void | handleOpen (XrdCl::XRootDStatus &status, std::shared_ptr< Source >) |
void | initialize (std::weak_ptr< RequestManager > selfref) |
std::shared_ptr< Source > | pickSingleSource () |
std::string | prepareOpaqueString () const |
void | queueUpdateCurrentServer (const std::string &) |
void | reportSiteChange (std::vector< std::shared_ptr< Source > > const &iOld, std::vector< std::shared_ptr< Source > > const &iNew, std::string orig_site=std::string{}) const |
RequestManager (const std::string &filename, XrdCl::OpenFlags::Flags flags, XrdCl::Access::Mode perms) | |
void | splitClientRequest (const std::vector< IOPosBuffer > &iolist, std::vector< IOPosBuffer > &req1, std::vector< IOPosBuffer > &req2, std::vector< std::shared_ptr< Source >> const &activeSources) const |
void | updateCurrentServer () |
Private Attributes | |
std::vector< std::shared_ptr< Source > > | m_activeSources |
tbb::concurrent_unordered_set< std::string > | m_disabledExcludeStrings |
tbb::concurrent_unordered_set< std::shared_ptr< Source >, SourceHash > | m_disabledSources |
tbb::concurrent_unordered_set< std::string > | m_disabledSourceStrings |
std::uniform_real_distribution< float > | m_distribution |
std::atomic< unsigned > | m_excluded_active_count |
XrdCl::OpenFlags::Flags | m_flags |
std::mt19937 | m_generator |
std::vector< std::shared_ptr< Source > > | m_inactiveSources |
timespec | m_lastSourceCheck |
const std::string | m_name |
timespec | m_nextActiveSourceCheck |
bool | m_nextInitialSourceToggle |
std::shared_ptr< OpenHandler > | m_open_handler |
XrdCl::Access::Mode | m_perms |
std::atomic< std::string * > | m_serverToAdvertise |
std::recursive_mutex | m_source_mutex |
int | m_timeout |
bool | searchMode |
Definition at line 53 of file XrdRequestManager.h.
|
virtualdefault |
|
private |
Definition at line 115 of file XrdRequestManager.cc.
void RequestManager::addConnections | ( | cms::Exception & | ex | ) | const |
Add the list of active connections to the exception extra info.
Definition at line 510 of file XrdRequestManager.cc.
References cms::Exception::addAdditionalInfo(), getDisabledSourceNames(), getPrettyActiveSourceNames(), and source.
Referenced by getActiveFile(), handle(), initialize(), XrdAdaptor::RequestManager::OpenHandler::open(), pickSingleSource(), requestFailure(), and splitClientRequest().
|
private |
Given a request, broadcast it to all sources. If active is true, broadcast is made to all active sources. Otherwise, broadcast is made to the inactive sources.
|
private |
Check our set of active sources. If necessary, this will kick off a search for a new source. The source check is somewhat expensive so it is only done once every second.
Definition at line 324 of file XrdRequestManager.cc.
References checkSourcesImpl(), compareSources(), m_lastSourceCheck, m_nextActiveSourceCheck, and timeDiffMS().
Referenced by handle().
|
private |
Definition at line 371 of file XrdRequestManager.cc.
References compareSources(), m_distribution, m_generator, m_lastSourceCheck, m_nextActiveSourceCheck, m_open_handler, eostools::move(), cmsPerfSuiteHarvest::now, alignCSCRings::r, reportSiteChange(), indexGen::s2, source, timeDiffMS(), XRD_ADAPTOR_LONG_OPEN_DELAY, XRD_ADAPTOR_OPEN_PROBE_PERCENT, XRD_ADAPTOR_SHORT_OPEN_DELAY, and XRD_ADAPTOR_SOURCE_QUALITY_FUDGE.
Referenced by checkSources().
|
private |
Helper function for checkSources; compares the quality of source A versus source B; if source A is significantly worse, remove it from the list of active sources.
NOTE: assumes two sources are active and the caller must already hold m_source_mutex
Definition at line 347 of file XrdRequestManager.cc.
References a, b, hpstanc_transforms::max, and reportSiteChange().
Referenced by checkSources(), and checkSourcesImpl().
std::shared_ptr< XrdCl::File > RequestManager::getActiveFile | ( | void | ) | const |
Return a pointer to an active file. Useful for metadata operations.
Definition at line 463 of file XrdRequestManager.cc.
References addConnections(), cms::Exception::addContext(), TauDecayModes::dec, edm::errors::FileReadError, m_activeSources, m_flags, m_name, m_perms, and m_source_mutex.
void RequestManager::getActiveSourceNames | ( | std::vector< std::string > & | sources | ) | const |
Retrieve the names of the active sources (primarily meant to enable meaningful log messages).
Definition at line 481 of file XrdRequestManager.cc.
References m_activeSources, m_source_mutex, and source.
void RequestManager::getDisabledSourceNames | ( | std::vector< std::string > & | sources | ) | const |
Retrieve the names of the disabled sources (primarily meant to enable meaningful log messages).
Definition at line 501 of file XrdRequestManager.cc.
References m_disabledSourceStrings, and source.
Referenced by addConnections().
|
inline |
|
inlinestatic |
Some of the callback handlers need a weak_ptr reference to the RequestManager. This allows the callback handler to know when it is OK to invoke RequestManager methods.
Hence, all instances need to be created through this factory function.
Definition at line 121 of file XrdRequestManager.h.
References a, b, corrVsCorr::filename, flags, initialize(), instance, cmsPerfSuiteHarvest::now, mps_update::status, and AlCaHLTBitMon_QueryRunRegistry::string.
void RequestManager::getPrettyActiveSourceNames | ( | std::vector< std::string > & | sources | ) | const |
Definition at line 491 of file XrdRequestManager.cc.
References m_activeSources, m_source_mutex, and source.
Referenced by addConnections().
|
inline |
Interface for handling a client request.
Definition at line 63 of file XrdRequestManager.h.
References cmsBatch::handle, findQualityFiles::size, and btagGenBb_cfi::Status.
std::future< IOSize > XrdAdaptor::RequestManager::handle | ( | std::shared_ptr< std::vector< IOPosBuffer > > | iolist | ) |
Definition at line 675 of file XrdRequestManager.cc.
References a, addConnections(), cms::Exception::addContext(), b, checkSources(), TauDecayModes::dec, edm::errors::FileReadError, GET_CLOCK_MONOTONIC, m_activeSources, m_flags, m_inactiveSources, m_name, m_perms, m_source_mutex, eostools::move(), cmsPerfSuiteHarvest::now, AlCaHLTBitMon_ParallelJobs::p, splitClientRequest(), edm::CPUTimer::start(), edm::CPUTimer::stop(), and updateCurrentServer().
std::future< IOSize > RequestManager::handle | ( | std::shared_ptr< XrdAdaptor::ClientRequest > | c_ptr | ) |
Handle a client request. NOTE: The shared_ptr interface is required. Depending on the state of the manager, it may decide to issue multiple requests and return the first successful. In that case, some references to the client request may still be outstanding when this function returns.
Definition at line 565 of file XrdRequestManager.cc.
References checkSources(), GET_CLOCK_MONOTONIC, m_activeSources, m_inactiveSources, m_source_mutex, eostools::move(), cmsPerfSuiteHarvest::now, pickSingleSource(), source, and AlCaHLTBitMon_QueryRunRegistry::string.
|
privatevirtual |
Handle the file-open response
Definition at line 627 of file XrdRequestManager.cc.
References m_activeSources, m_excluded_active_count, m_inactiveSources, m_nextActiveSourceCheck, m_source_mutex, queueUpdateCurrentServer(), reportSiteChange(), alignCSCRings::s, XRD_ADAPTOR_LONG_OPEN_DELAY, and XRD_ADAPTOR_SHORT_OPEN_DELAY.
|
private |
Some of the callback handlers (particularly, file-open one) will want to call back into the RequestManager. However, the XrdFile may have already thrown away the reference. Hence, we need a weak_ptr to the original object before we can initialize. This way, callback knows to not reference the RequestManager.
Definition at line 129 of file XrdRequestManager.cc.
References cms::Exception::addAdditionalInfo(), addConnections(), cms::Exception::addContext(), cms::Exception::clearAdditionalInfo(), cms::Exception::clearContext(), cms::Exception::clearMessage(), TauDecayModes::dec, XrdAdaptor::Source::determineHostExcludeString(), web.browse_db::env, FrontierConditions_GlobalTag_cff::file, ecalTB2006H4_GenSimDigiReco_cfg::File, edm::errors::FileOpenError, spr::find(), GET_CLOCK_MONOTONIC, XrdAdaptor::Source::getDomain(), XrdAdaptor::Source::getHostname(), XrdAdaptor::RequestManager::OpenHandler::getInstance(), XrdAdaptor::Source::getXrootdSiteFromURL(), training_settings::idx, m_activeSources, m_disabledExcludeStrings, m_disabledSourceStrings, m_flags, m_lastSourceCheck, m_name, m_nextActiveSourceCheck, m_open_handler, m_perms, m_source_mutex, m_timeout, eostools::move(), pileupDistInMC::oldList, prepareOpaqueString(), queueUpdateCurrentServer(), reportSiteChange(), SendMonitoringInfo(), source, mps_update::status, AlCaHLTBitMon_QueryRunRegistry::string, updateCurrentServer(), and XRD_ADAPTOR_SHORT_OPEN_DELAY.
|
private |
Picks a single source for the next operation.
Definition at line 527 of file XrdRequestManager.cc.
References addConnections(), cms::Exception::addContext(), TauDecayModes::dec, edm::errors::FileReadError, m_activeSources, m_flags, m_name, m_nextInitialSourceToggle, m_perms, m_source_mutex, and source.
Referenced by handle().
|
private |
Prepare an opaque string appropriate for asking a redirector to open the current file but avoiding servers which we already have connections to.
Definition at line 594 of file XrdRequestManager.cc.
References KineDebug3::count(), m_activeSources, m_disabledExcludeStrings, m_inactiveSources, m_source_mutex, AlCaHLTBitMon_QueryRunRegistry::string, and create_public_lumi_plots::tmp_str.
Referenced by initialize(), and XrdAdaptor::RequestManager::OpenHandler::open().
|
private |
Definition at line 278 of file XrdRequestManager.cc.
References XrdAdaptor::Source::getHostname(), hcalTTPDigis_cfi::id, m_serverToAdvertise, and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by handleOpen(), and initialize().
|
private |
Anytime we potentially switch sources, update the internal site source list; alert the user if necessary.
Definition at line 303 of file XrdRequestManager.cc.
Referenced by checkSourcesImpl(), compareSources(), handleOpen(), initialize(), and requestFailure().
void RequestManager::requestFailure | ( | std::shared_ptr< XrdAdaptor::ClientRequest > | c_ptr, |
XrdCl::Status & | c_status | ||
) |
Handle a failed client request.
Definition at line 783 of file XrdRequestManager.cc.
References cms::Exception::addAdditionalInfo(), addConnections(), cms::Exception::addContext(), TauDecayModes::dec, edm::errors::FileOpenError, edm::errors::FileReadError, spr::find(), GET_CLOCK_MONOTONIC, m_activeSources, m_disabledExcludeStrings, m_disabledSources, m_disabledSourceStrings, m_flags, m_lastSourceCheck, m_name, m_open_handler, m_perms, m_source_mutex, m_timeout, cmsPerfSuiteHarvest::now, reportSiteChange(), seconds(), mps_update::status, and mps_check::timeout.
|
private |
Given a client request, split it into two requests lists.
Definition at line 1002 of file XrdRequestManager.cc.
References cms::Exception::addAdditionalInfo(), addConnections(), cms::Exception::addContext(), consumeChunkBack(), consumeChunkFront(), TauDecayModes::dec, edm::errors::FileReadError, m_flags, m_name, m_perms, hpstanc_transforms::max, IOPosBuffer::offset(), q1, q2, validateList(), XRD_ADAPTOR_CHUNK_THRESHOLD, and XRD_CL_MAX_CHUNK.
Referenced by handle().
|
inlineprivate |
Update the StatisticsSenderService, if necessary, with the current server.
Update the StatisticsSenderService with the current server info.
As this accesses the edm::Service infrastructure, this MUST be called from an edm-managed thread. It CANNOT be called from an Xrootd-managed thread.
Definition at line 259 of file XrdRequestManager.cc.
References edm::Service< T >::isAvailable(), likely, m_serverToAdvertise, edm::storage::StatisticsSenderService::setCurrentServer(), and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by handle(), and initialize().
|
private |
Note these member variables can only be accessed when the source mutex is held.
Definition at line 212 of file XrdRequestManager.h.
Referenced by getActiveFile(), getActiveSourceNames(), getPrettyActiveSourceNames(), handle(), handleOpen(), initialize(), pickSingleSource(), prepareOpaqueString(), and requestFailure().
|
private |
Definition at line 216 of file XrdRequestManager.h.
Referenced by initialize(), prepareOpaqueString(), and requestFailure().
|
private |
Definition at line 217 of file XrdRequestManager.h.
Referenced by requestFailure().
|
private |
Definition at line 215 of file XrdRequestManager.h.
Referenced by getDisabledSourceNames(), initialize(), and requestFailure().
|
private |
Definition at line 237 of file XrdRequestManager.h.
Referenced by checkSourcesImpl().
|
private |
Definition at line 239 of file XrdRequestManager.h.
Referenced by handleOpen().
|
private |
Definition at line 232 of file XrdRequestManager.h.
Referenced by getActiveFile(), handle(), initialize(), XrdAdaptor::RequestManager::OpenHandler::open(), pickSingleSource(), requestFailure(), and splitClientRequest().
|
private |
Definition at line 236 of file XrdRequestManager.h.
Referenced by checkSourcesImpl().
|
private |
Definition at line 213 of file XrdRequestManager.h.
Referenced by handle(), handleOpen(), and prepareOpaqueString().
|
private |
Definition at line 223 of file XrdRequestManager.h.
Referenced by checkSources(), checkSourcesImpl(), initialize(), and requestFailure().
|
private |
Definition at line 231 of file XrdRequestManager.h.
Referenced by getActiveFile(), handle(), initialize(), XrdAdaptor::RequestManager::OpenHandler::open(), pickSingleSource(), requestFailure(), and splitClientRequest().
|
private |
Definition at line 228 of file XrdRequestManager.h.
Referenced by checkSources(), checkSourcesImpl(), handleOpen(), and initialize().
|
private |
Definition at line 226 of file XrdRequestManager.h.
Referenced by pickSingleSource().
|
private |
Definition at line 297 of file XrdRequestManager.h.
Referenced by checkSourcesImpl(), initialize(), and requestFailure().
|
private |
Definition at line 233 of file XrdRequestManager.h.
Referenced by getActiveFile(), handle(), initialize(), XrdAdaptor::RequestManager::OpenHandler::open(), pickSingleSource(), requestFailure(), and splitClientRequest().
|
private |
Definition at line 221 of file XrdRequestManager.h.
Referenced by queueUpdateCurrentServer(), and updateCurrentServer().
|
mutableprivate |
Definition at line 234 of file XrdRequestManager.h.
Referenced by getActiveFile(), getActiveSourceNames(), getPrettyActiveSourceNames(), handle(), handleOpen(), initialize(), pickSingleSource(), prepareOpaqueString(), and requestFailure().
|
private |
Definition at line 224 of file XrdRequestManager.h.
Referenced by initialize(), and requestFailure().
|
private |
Definition at line 229 of file XrdRequestManager.h.
|
static |
Definition at line 56 of file XrdRequestManager.h.