Skip to content
Snippets Groups Projects
Commit fd69c3d4 authored by Victor Kotlyar's avatar Victor Kotlyar
Browse files

Unify the config files name for the object store backend.

For cta-taped.conf and cta-frontend.conf use the same parameter
ObjectStore BackendPath .......
parent 8489260a
No related branches found
No related tags found
No related merge requests found
......@@ -30,18 +30,10 @@ echo "Configuring database"
echo ${DATABASEURL} >/etc/cta/cta_catalogue_db.conf
# cta-tapserverd setup
# to be drop later
echo "${tpconfig}" > /etc/castor/TPCONFIG
echo "TapeServer ObjectStoreBackendPath $OBJECTSTOREURL" >/etc/castor/castor.conf
echo "TapeServer BufSize 5242880" >>/etc/castor/castor.conf
echo "TapeServer NbBufs 10" >>/etc/castor/castor.conf
echo "TapeServer EOSRemoteHostAndPort ${eoshost}" >>/etc/castor/castor.conf
# cta-taped setup
echo "taped BufferCount 10" > /etc/cta/cta-taped.conf
echo "taped MountCriteria 2000000, 5" >> /etc/cta/cta-taped.conf
echo "general ObjectStoreURL $OBJECTSTOREURL" >> /etc/cta/cta-taped.conf
echo "ObjectStore BackendPath $OBJECTSTOREURL" >> /etc/cta/cta-taped.conf
echo "${tpconfig}" > /etc/cta/TPCONFIG
......
......@@ -53,7 +53,7 @@ TEST(cta_taped, InvocationTests) {
unitTests::TempFile ctaConf, tpConfig;
ctaConf.stringAppend(
"#A good enough configuration file for taped\n"
"general ObjectStoreURL vfsObjectStore:///tmp/dir\n"
"ObjectStore BackendPath vfsObjectStore:///tmp/dir\n"
"general FileCatalogURL sqliteFileCatalog:///tmp/dir2\n"
"taped BufferCount 1\n"
"taped TpConfigPath ");
......
......@@ -868,12 +868,12 @@ int DriveHandler::runChild() {
auto &lc=m_processManager.logContext();
{
log::ScopedParamContainer params(lc);
params.add("objectStoreURL", m_tapedConfig.objectStoreURL.value());
params.add("backendPath", m_tapedConfig.backendPath.value());
lc.log(log::DEBUG, "In DriveHandler::runChild(): will connect to object store backend.");
}
// Before anything, we need to check we have access to the scheduler's central storages.
std::unique_ptr<cta::objectstore::Backend> backend(
cta::objectstore::BackendFactory::createBackend(m_tapedConfig.objectStoreURL.value()).release());
cta::objectstore::BackendFactory::createBackend(m_tapedConfig.backendPath.value()).release());
// If the backend is a VFS, make sure we don't delete it on exit.
// If not, nevermind.
try {
......
......@@ -254,7 +254,7 @@ int GarbageCollectorHandler::runChild() {
// fail likewise, so we just wait for shutdown signal (no feedback to main
// process).
std::unique_ptr<cta::objectstore::Backend> backend(
cta::objectstore::BackendFactory::createBackend(m_tapedConfig.objectStoreURL.value()).release());
cta::objectstore::BackendFactory::createBackend(m_tapedConfig.backendPath.value()).release());
// If the backend is a VFS, make sure we don't delete it on exit.
// If not, nevermind.
try {
......
......@@ -57,7 +57,7 @@ TapedConfiguration TapedConfiguration::createFromCtaConf(
ret.wdNoBlockMoveMaxSecs.setFromConfigurationFile(cf, generalConfigPath);
ret.wdScheduleMaxSecs.setFromConfigurationFile(cf, generalConfigPath);
// The central storage access configuration
ret.objectStoreURL.setFromConfigurationFile(cf, generalConfigPath);
ret.backendPath.setFromConfigurationFile(cf, generalConfigPath);
ret.fileCatalogConfigFile.setFromConfigurationFile(cf, generalConfigPath);
// Extract drive list from tpconfig + parsed config file
ret.driveConfigs = Tpconfig::parseFile(ret.tpConfigPath.value());
......@@ -82,7 +82,7 @@ TapedConfiguration TapedConfiguration::createFromCtaConf(
ret.wdNoBlockMoveMaxSecs.log(log);
ret.wdScheduleMaxSecs.log(log);
ret.objectStoreURL.log(log);
ret.backendPath.log(log);
ret.fileCatalogConfigFile.log(log);
for (auto & i:ret.driveConfigs) {
......
......@@ -105,8 +105,8 @@ struct TapedConfiguration {
// The central storage access configuration
//----------------------------------------------------------------------------
/// URL of the object store.
SourcedParameter<std::string> objectStoreURL{
"general", "ObjectStoreURL"};
SourcedParameter<std::string> backendPath{
"ObjectStore", "BackendPath"};
/// Path to the file catalog config file
SourcedParameter<std::string> fileCatalogConfigFile{
"general", "FileCatalogConfigFile", "/etc/cta/cta_catalogue_db.conf", "Compile time default"};
......
......@@ -32,7 +32,7 @@ TEST(cta_Daemon, TapedConfiguration) {
);
completeConfFile.stringFill(
"#A good enough configuration file for taped\n"
"general ObjectStoreURL vfsObjectStore:///tmp/dir\n"
"ObjectStore BackendPath vfsObjectStore:///tmp/dir\n"
"general FileCatalogConfigFile /etc/cta/catalog.conf\n"
"taped BufferCount 1\n"
"taped TpConfigPath ");
......@@ -42,8 +42,8 @@ TEST(cta_Daemon, TapedConfiguration) {
cta::tape::daemon::SourcedParameter<uint64_t>::MandatoryParameterNotDefined);
auto completeConfig =
cta::tape::daemon::TapedConfiguration::createFromCtaConf(completeConfFile.path());
ASSERT_EQ(completeConfFile.path()+":2", completeConfig.objectStoreURL.source());
ASSERT_EQ("vfsObjectStore:///tmp/dir", completeConfig.objectStoreURL.value());
ASSERT_EQ(completeConfFile.path()+":2", completeConfig.backendPath.source());
ASSERT_EQ("vfsObjectStore:///tmp/dir", completeConfig.backendPath.value());
ASSERT_EQ(completeConfFile.path()+":3", completeConfig.fileCatalogConfigFile.source());
ASSERT_EQ("/etc/cta/catalog.conf", completeConfig.fileCatalogConfigFile.value());
}
......@@ -53,7 +53,7 @@ TEST(cta_Daemon, TapedConfigurationFull) {
TempFile completeConfFile;
completeConfFile.stringFill(
"#A good enough configuration file for taped\n"
"general ObjectStoreURL vfsObjectStore:///tmp/dir\n"
"ObjectStore BackendPath vfsObjectStore:///tmp/dir\n"
"general FileCatalogConfigFile /etc/cta/catalog.conf\n"
"taped ArchiveFetchBytesFiles 1,2\n"
"taped ArchiveFlushBytesFiles 3 , 4 \n"
......@@ -68,8 +68,8 @@ TEST(cta_Daemon, TapedConfigurationFull) {
// The log parameter can be uncommented to inspect the result on the output.
auto completeConfig =
cta::tape::daemon::TapedConfiguration::createFromCtaConf(completeConfFile.path()/*, log*/);
ASSERT_EQ(completeConfFile.path()+":2", completeConfig.objectStoreURL.source());
ASSERT_EQ("vfsObjectStore:///tmp/dir", completeConfig.objectStoreURL.value());
ASSERT_EQ(completeConfFile.path()+":2", completeConfig.backendPath.source());
ASSERT_EQ("vfsObjectStore:///tmp/dir", completeConfig.backendPath.value());
ASSERT_EQ(completeConfFile.path()+":3", completeConfig.fileCatalogConfigFile.source());
ASSERT_EQ("/etc/cta/catalog.conf", completeConfig.fileCatalogConfigFile.value());
ASSERT_EQ(1, completeConfig.archiveFetchBytesFiles.value().maxBytes);
......@@ -82,4 +82,4 @@ TEST(cta_Daemon, TapedConfigurationFull) {
ASSERT_EQ("/dev/tape1", completeConfig.driveConfigs.at("drive1").value().devFilename);
}
} // namespace unitTests
\ No newline at end of file
} // namespace unitTests
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