Skip to content
Snippets Groups Projects
Commit ed9e25fa authored by Eric Cano's avatar Eric Cano
Browse files

Bumped up the default number of jobs per batch in tape server.

This should ease the contention on the object store.
parent 8260be22
No related branches found
No related tags found
No related merge requests found
......@@ -72,13 +72,13 @@ struct TapedConfiguration {
//----------------------------------------------------------------------------
/// The fetch size for archive requests
cta::SourcedParameter<FetchReportOrFlushLimits> archiveFetchBytesFiles{
"taped", "ArchiveFetchBytesFiles", {80L*1000*1000*1000, 500}, "Compile time default"};
"taped", "ArchiveFetchBytesFiles", {80L*1000*1000*1000, 4000}, "Compile time default"};
/// The flush to tape criteria for archiving
cta::SourcedParameter<FetchReportOrFlushLimits> archiveFlushBytesFiles{
"taped", "ArchiveFlushBytesFiles", {32L*1000*1000*1000, 200}, "Compile time default"};
/// The fetch and report size for retrieve requests
cta::SourcedParameter<FetchReportOrFlushLimits> retrieveFetchBytesFiles{
"taped", "RetrieveFetchBytesFiles", {80L*1000*1000*1000, 500}, "Compile time default"};
"taped", "RetrieveFetchBytesFiles", {80L*1000*1000*1000, 4000}, "Compile time default"};
//----------------------------------------------------------------------------
// Scheduling limits
//----------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment