#include <XrdRequestManager.h>
Classes | |
class | OpenHandler |
Public Member Functions | |
void | addConnections (cms::Exception &) |
std::shared_ptr< XrdCl::File > | getActiveFile () |
void | getActiveSourceNames (std::vector< std::string > &sources) |
void | getDisabledSourceNames (std::vector< std::string > &sources) |
const std::string & | getFilename () const |
void | getPrettyActiveSourceNames (std::vector< std::string > &sources) |
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) |
~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) |
void | checkSourcesImpl (timespec &now, IOSize requestSize) |
bool | compareSources (const timespec &now, unsigned a, unsigned b) |
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 () |
void | queueUpdateCurrentServer (const std::string &) |
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) |
void | updateCurrentServer () |
void | updateSiteInfo (std::string orig_site="") |
Private Attributes | |
std::string | m_activeSites |
std::vector< std::shared_ptr < Source > > | m_activeSources |
std::set< std::string > | m_disabledExcludeStrings |
std::set< std::shared_ptr < Source > > | m_disabledSources |
std::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 43 of file XrdRequestManager.h.
|
default |
|
private |
Definition at line 108 of file XrdRequestManager.cc.
Referenced by getInstance().
void RequestManager::addConnections | ( | cms::Exception & | ex | ) |
Add the list of active connections to the exception extra info.
Definition at line 485 of file XrdRequestManager.cc.
References cms::Exception::addAdditionalInfo(), getDisabledSourceNames(), getPrettyActiveSourceNames(), and source.
Referenced by getActiveFile(), initialize(), XrdAdaptor::RequestManager::OpenHandler::open(), pickSingleSource(), and requestFailure().
|
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 306 of file XrdRequestManager.cc.
References checkSourcesImpl(), compareSources(), m_lastSourceCheck, m_nextActiveSourceCheck, m_source_mutex, and timeDiffMS().
Referenced by handle().
|
private |
Definition at line 349 of file XrdRequestManager.cc.
References compareSources(), m_activeSources, m_distribution, m_generator, m_inactiveSources, m_lastSourceCheck, m_nextActiveSourceCheck, m_open_handler, m_source_mutex, eostools::move(), fileCollector::now, alignCSCRings::r, indexGen::s2, source, timeDiffMS(), updateSiteInfo(), 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 328 of file XrdRequestManager.cc.
References a, b, m_activeSources, m_inactiveSources, bookConverter::max, and updateSiteInfo().
Referenced by checkSources(), and checkSourcesImpl().
std::shared_ptr< XrdCl::File > RequestManager::getActiveFile | ( | void | ) |
Return a pointer to an active file. Useful for metadata operations.
Definition at line 437 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 | ) |
Retrieve the names of the active sources (primarily meant to enable meaningful log messages).
Definition at line 455 of file XrdRequestManager.cc.
References m_activeSources, m_source_mutex, and source.
void RequestManager::getDisabledSourceNames | ( | std::vector< std::string > & | sources | ) |
Retrieve the names of the disabled sources (primarily meant to enable meaningful log messages).
Definition at line 475 of file XrdRequestManager.cc.
References m_disabledSourceStrings, m_source_mutex, 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 111 of file XrdRequestManager.h.
References instance, and RequestManager().
void RequestManager::getPrettyActiveSourceNames | ( | std::vector< std::string > & | sources | ) |
Definition at line 465 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 53 of file XrdRequestManager.h.
std::future< IOSize > XrdAdaptor::RequestManager::handle | ( | std::shared_ptr< std::vector< IOPosBuffer > > | iolist | ) |
Definition at line 630 of file XrdRequestManager.cc.
References a, cms::Exception::addContext(), assert(), b, TauDecayModes::dec, edm::errors::FileReadError, GET_CLOCK_MONOTONIC, eostools::move(), fileCollector::now, AlCaHLTBitMon_ParallelJobs::p, edm::CPUTimer::start(), and edm::CPUTimer::stop().
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 540 of file XrdRequestManager.cc.
References assert(), checkSources(), GET_CLOCK_MONOTONIC, fileCollector::now, pickSingleSource(), and source.
|
privatevirtual |
Handle the file-open response
Definition at line 583 of file XrdRequestManager.cc.
References 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 122 of file XrdRequestManager.cc.
References cms::Exception::addAdditionalInfo(), addConnections(), cms::Exception::addContext(), assert(), cms::Exception::clearAdditionalInfo(), cms::Exception::clearContext(), cms::Exception::clearMessage(), TauDecayModes::dec, XrdAdaptor::Source::determineHostExcludeString(), web.browse_db::env, mergeVDriftHistosByStation::file, reco_application_tbsim_DetSim-Digi_cfg::File, edm::errors::FileOpenError, spr::find(), GET_CLOCK_MONOTONIC, XrdAdaptor::Source::getDomain(), XrdAdaptor::Source::getHostname(), XrdAdaptor::RequestManager::OpenHandler::getInstance(), XrdAdaptor::Source::getXrootdSiteFromURL(), customizeTrackingMonitorSeedNumber::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(), prepareOpaqueString(), queueUpdateCurrentServer(), SendMonitoringInfo(), source, popcon_last_value_cfg::Source, ntuplemaker::status, AlCaHLTBitMon_QueryRunRegistry::string, updateCurrentServer(), updateSiteInfo(), and XRD_ADAPTOR_SHORT_OPEN_DELAY.
|
private |
Picks a single source for the next operation.
Definition at line 502 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 553 of file XrdRequestManager.cc.
References prof2calltree::count, m_activeSources, m_disabledExcludeStrings, m_inactiveSources, m_source_mutex, contentValuesCheck::ss, AlCaHLTBitMon_QueryRunRegistry::string, and create_public_lumi_plots::tmp_str.
Referenced by initialize(), and XrdAdaptor::RequestManager::OpenHandler::open().
|
private |
Definition at line 270 of file XrdRequestManager.cc.
References XrdAdaptor::Source::getHostname(), m_serverToAdvertise, and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by initialize().
void RequestManager::requestFailure | ( | std::shared_ptr< XrdAdaptor::ClientRequest > | c_ptr, |
XrdCl::Status & | c_status | ||
) |
Handle a failed client request.
Definition at line 723 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, fileCollector::now, seconds(), ntuplemaker::status, and updateSiteInfo().
|
private |
Given a client request, split it into two requests lists.
Definition at line 938 of file XrdRequestManager.cc.
References cms::Exception::addAdditionalInfo(), cms::Exception::addContext(), assert(), consumeChunkBack(), consumeChunkFront(), TauDecayModes::dec, edm::errors::FileReadError, prof2calltree::front, bookConverter::max, IOPosBuffer::offset(), q1, q2, python.multivaluedict::sort(), contentValuesCheck::ss, validateList(), XRD_ADAPTOR_CHUNK_THRESHOLD, and XRD_CL_MAX_CHUNK.
|
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 251 of file XrdRequestManager.cc.
References edm::Service< T >::isAvailable(), likely, m_serverToAdvertise, edm::storage::StatisticsSenderService::setCurrentServer(), statsService, and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by initialize().
|
private |
Anytime we potentially switch sources, update the internal site source list; alert the user if necessary.
Definition at line 284 of file XrdRequestManager.cc.
References m_activeSites, m_activeSources, and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by checkSourcesImpl(), compareSources(), initialize(), and requestFailure().
|
private |
Definition at line 197 of file XrdRequestManager.h.
Referenced by updateSiteInfo().
|
private |
Note these member variables can only be accessed when the source mutex is held.
Definition at line 192 of file XrdRequestManager.h.
Referenced by checkSourcesImpl(), compareSources(), getActiveFile(), getActiveSourceNames(), getPrettyActiveSourceNames(), initialize(), pickSingleSource(), prepareOpaqueString(), requestFailure(), and updateSiteInfo().
|
private |
Definition at line 195 of file XrdRequestManager.h.
Referenced by initialize(), prepareOpaqueString(), and requestFailure().
|
private |
Definition at line 196 of file XrdRequestManager.h.
Referenced by requestFailure().
|
private |
Definition at line 194 of file XrdRequestManager.h.
Referenced by getDisabledSourceNames(), initialize(), and requestFailure().
|
private |
Definition at line 216 of file XrdRequestManager.h.
Referenced by checkSourcesImpl().
|
private |
Definition at line 218 of file XrdRequestManager.h.
|
private |
Definition at line 211 of file XrdRequestManager.h.
Referenced by getActiveFile(), initialize(), XrdAdaptor::RequestManager::OpenHandler::open(), pickSingleSource(), and requestFailure().
|
private |
Definition at line 215 of file XrdRequestManager.h.
Referenced by checkSourcesImpl().
|
private |
Definition at line 193 of file XrdRequestManager.h.
Referenced by checkSourcesImpl(), compareSources(), and prepareOpaqueString().
|
private |
Definition at line 202 of file XrdRequestManager.h.
Referenced by checkSources(), checkSourcesImpl(), initialize(), and requestFailure().
|
private |
Definition at line 210 of file XrdRequestManager.h.
Referenced by getActiveFile(), getFilename(), initialize(), XrdAdaptor::RequestManager::OpenHandler::open(), pickSingleSource(), and requestFailure().
|
private |
Definition at line 207 of file XrdRequestManager.h.
Referenced by checkSources(), checkSourcesImpl(), and initialize().
|
private |
Definition at line 205 of file XrdRequestManager.h.
Referenced by pickSingleSource().
|
private |
Definition at line 273 of file XrdRequestManager.h.
Referenced by checkSourcesImpl(), initialize(), and requestFailure().
|
private |
Definition at line 212 of file XrdRequestManager.h.
Referenced by getActiveFile(), initialize(), XrdAdaptor::RequestManager::OpenHandler::open(), pickSingleSource(), and requestFailure().
|
private |
Definition at line 200 of file XrdRequestManager.h.
Referenced by queueUpdateCurrentServer(), and updateCurrentServer().
|
private |
Definition at line 213 of file XrdRequestManager.h.
Referenced by checkSources(), checkSourcesImpl(), getActiveFile(), getActiveSourceNames(), getDisabledSourceNames(), getPrettyActiveSourceNames(), initialize(), pickSingleSource(), prepareOpaqueString(), and requestFailure().
|
private |
Definition at line 203 of file XrdRequestManager.h.
Referenced by initialize(), and requestFailure().
|
private |
Definition at line 208 of file XrdRequestManager.h.
|
static |
Definition at line 46 of file XrdRequestManager.h.