1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

MCOL-59, change calpont.xml

This commit is contained in:
david hill
2016-06-22 16:00:00 -05:00
parent 1bb58c6916
commit 7d8de28b43
104 changed files with 381 additions and 381 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: Calpont.xml 410 2007-03-30 19:47:18Z dhill $ -->
<!-- $Id: Columnstore.xml 410 2007-03-30 19:47:18Z dhill $ -->
<Calpont Version="V1.0.0">
<Messageq>
<Dir>/var/tmp</Dir>

View File

@ -187,7 +187,7 @@ struct ExtentInfo {
execplan::CalpontSystemCatalog::OID oid;
uint32_t partitionNum; // starts at 0
uint16_t segmentNum; // starts at 0
uint16_t dbRoot; // starts at 1 to match Calpont.xml
uint16_t dbRoot; // starts at 1 to match Columnstore.xml
HWM_t hwm;
bool newFile;
};
@ -196,7 +196,7 @@ struct FileInfo {
execplan::CalpontSystemCatalog::OID oid;
uint32_t partitionNum; // starts at 0
uint16_t segmentNum; // starts at 0
uint16_t dbRoot; // starts at 1 to match Calpont.xml
uint16_t dbRoot; // starts at 1 to match Columnstore.xml
uint16_t compType; // compression type
};

View File

@ -742,7 +742,7 @@ public:
*/
EXPORT int saveState(std::string filename) throw();
/** @brief Persistence API. Saves all BRM structures using the filenames from Calpont.xml.
/** @brief Persistence API. Saves all BRM structures using the filenames from Columnstore.xml.
*
* Saves all <b>local</b> BRM structures to files.
*

View File

@ -5109,7 +5109,7 @@ void ExtentMap::checkReloadConfig()
{
config::Config* cf = config::Config::makeConfig();
// Immediately return if Calpont.xml timestamp has not changed
// Immediately return if Columnstore.xml timestamp has not changed
if (cf->getCurrentMTime() == fCacheTime)
return;
@ -5171,7 +5171,7 @@ void ExtentMap::checkReloadConfig()
if (filesPerColumnPartition == 0)
filesPerColumnPartition = 4;
// Get latest Calpont.xml timestamp after first access forced a reload
// Get latest Columnstore.xml timestamp after first access forced a reload
fCacheTime = cf ->getLastMTime();
//--------------------------------------------------------------------------
@ -5248,7 +5248,7 @@ unsigned ExtentMap::getDbRootCount()
//------------------------------------------------------------------------------
// Get list of DBRoots that map to the specified PM. DBRoot list is cached
// internally in fPmDbRootMap after getting from Calpont.xml via OAM.
// internally in fPmDbRootMap after getting from Columnstore.xml via OAM.
//------------------------------------------------------------------------------
void ExtentMap::getPmDbRoots( int pm, vector<int>& dbRootList )
{

View File

@ -120,7 +120,7 @@ struct EMEntry {
HWM_t HWM;
uint32_t partitionNum; // starts at 0
uint16_t segmentNum; // starts at 0
uint16_t dbRoot; // starts at 1 to match Calpont.xml
uint16_t dbRoot; // starts at 1 to match Columnstore.xml
uint16_t colWid;
int16_t status; //extent avail for query or not, or out of service
EMPartition_t partition;

View File

@ -65,7 +65,7 @@ namespace BRM {
* Note: Added a macro 'DESTROYSHMSEG' which enables/disables the code to load/save
* and deallocate the shared memory segment.
*
* This class uses 3 parameters from the Calpont.xml file:
* This class uses 3 parameters from the Columnstore.xml file:
* SessionManager/MaxConcurrentTransactions: defines how many active transactions the
* system should support. When a new request comes in and there are already
* MaxConcurrentTransactions active, the new request blocks by default. The