diff --git a/tapeserver/castor/tape/tapeserver/daemon/RecallReportPacker.cpp b/tapeserver/castor/tape/tapeserver/daemon/RecallReportPacker.cpp index 39d6285b2659ba40fd9a00e74e7366b5e9c4595f..f58f6a0ad72bf6134f976aac761431a912e62089 100644 --- a/tapeserver/castor/tape/tapeserver/daemon/RecallReportPacker.cpp +++ b/tapeserver/castor/tape/tapeserver/daemon/RecallReportPacker.cpp @@ -236,6 +236,7 @@ void RecallReportPacker::WorkerThread::run(){ bool endFound = false; std::list <std::unique_ptr<Report>> reportedSuccessfully; + cta::utils::Timer t; while(1) { std::string debugType; std::unique_ptr<Report> rep(m_parent.m_fifo.pop()); @@ -265,8 +266,11 @@ void RecallReportPacker::WorkerThread::run(){ // m_parent.fullCheckAndFinishAsyncExecute will execute the shared half of the // request updates (individual, asynchronous is done in rep->execute(m_parent); if (typeid(*rep) == typeid(RecallReportPacker::ReportSuccessful) - && m_parent.m_successfulRetrieveJobs.size() >= m_parent.RECALL_REPORT_PACKER_FLUSH_SIZE) + && (m_parent.m_successfulRetrieveJobs.size() >= m_parent.RECALL_REPORT_PACKER_FLUSH_SIZE || t.secs() >= m_parent.RECALL_REPORT_PACKER_FLUSH_TIME )){ + m_parent.m_lc.log(cta::log::INFO,"m_parent.fullCheckAndFinishAsyncExecute()"); m_parent.fullCheckAndFinishAsyncExecute(); + t.reset(); + } } catch(const cta::exception::Exception& e){ //we get there because to tried to close the connection and it failed //either from the catch a few lines above or directly from rep->execute diff --git a/tapeserver/castor/tape/tapeserver/daemon/RecallReportPacker.hpp b/tapeserver/castor/tape/tapeserver/daemon/RecallReportPacker.hpp index a0b62a0c62ef06348f148294c8de1e00ed53ca8a..0a22fdc2902c8e9589267e64dfd6579fe5fa4971 100644 --- a/tapeserver/castor/tape/tapeserver/daemon/RecallReportPacker.hpp +++ b/tapeserver/castor/tape/tapeserver/daemon/RecallReportPacker.hpp @@ -239,6 +239,11 @@ private: * The limit for successful reports to trigger flush. */ const unsigned int RECALL_REPORT_PACKER_FLUSH_SIZE = 500; + + /* + * The time limit for successful reports to trigger flush. + */ + const double RECALL_REPORT_PACKER_FLUSH_TIME = 180; }; }}}}