1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-3494: initial commit of test program to verify storagemanager.cnf during postConfigure.

This commit is contained in:
benthompson15
2020-04-29 12:15:22 -05:00
parent 384764da3f
commit 75d1dbc592
3 changed files with 80 additions and 1 deletions

View File

@ -5429,6 +5429,12 @@ bool storageSetup(bool amazonInstall)
hdfs = false;
sysConfig->setConfig("StorageManager", "Enabled", "Y");
sysConfig->setConfig("SystemConfig", "DataFilePlugin", "libcloudio.so");
// Verify S3 Configuration settings
if (system("testS3Connection"))
{
cout << "ERROR: S3Storage Configuration check failed. Verify storagemanager.cnf settings and rerun postConfigure." << endl;
return false;
}
}
else
{