0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-28 07:59:02 +01:00

Revert "SERVER-17586 Update ShardVersionMap in ChunkManager when shard is deleted during balancing"

This reverts commit 465ca1774d.
This commit is contained in:
Charlie Swanson 2015-03-18 13:27:19 -04:00
parent 0f6f2e9a19
commit c887c1e141
2 changed files with 10 additions and 18 deletions

View File

@ -158,7 +158,7 @@ namespace {
ShardVersionMap shardVersions;
Timer t;
bool success = _load(config, chunkMap, shards, &shardVersions, oldManager);
bool success = _load(config, chunkMap, shards, shardVersions, oldManager);
if( success ){
{
@ -201,7 +201,7 @@ namespace {
bool ChunkManager::_load(const string& config,
ChunkMap& chunkMap,
set<Shard>& shards,
ShardVersionMap* shardVersions,
ShardVersionMap& shardVersions,
const ChunkManager* oldManager)
{
@ -215,7 +215,7 @@ namespace {
// Get the old max version
_version = oldManager->getVersion();
// Load a copy of the old versions
*shardVersions = oldManager->_shardVersions;
shardVersions = oldManager->_shardVersions;
// Load a copy of the chunk map, replacing the chunk manager with our own
const ChunkMap& oldChunkMap = oldManager->getChunkMap();
@ -243,7 +243,7 @@ namespace {
// Attach a diff tracker for the versioned chunk data
CMConfigDiffTracker differ( this );
differ.attach( _ns, chunkMap, _version, *shardVersions );
differ.attach( _ns, chunkMap, _version, shardVersions );
// Diff tracker should *always* find at least one chunk if collection exists
int diffsApplied = differ.calculateConfigDiff(config);
@ -252,17 +252,9 @@ namespace {
LOG(2) << "loaded " << diffsApplied << " chunks into new chunk manager for " << _ns
<< " with version " << _version;
// Add all existing shards we find to the shards set
for (ShardVersionMap::iterator it = shardVersions->begin();
it != shardVersions->end();
) {
if (Shard::findIfExists(it->first).ok()) {
shards.insert(it->first);
++it;
}
else {
shardVersions->erase(it++);
}
// Add all the shards we find to the shards set
for( ShardVersionMap::iterator it = shardVersions.begin(); it != shardVersions.end(); it++ ){
shards.insert( it->first );
}
return true;
@ -275,7 +267,7 @@ namespace {
// Set all our data to empty
chunkMap.clear();
shardVersions->clear();
shardVersions.clear();
_version = ChunkVersion( 0, 0, OID() );
return true;
@ -299,7 +291,7 @@ namespace {
// Set all our data to empty to be extra safe
chunkMap.clear();
shardVersions->clear();
shardVersions.clear();
_version = ChunkVersion( 0, 0, OID() );
return allInconsistent;

View File

@ -224,7 +224,7 @@ namespace mongo {
bool _load(const std::string& config,
ChunkMap& chunks,
std::set<Shard>& shards,
ShardVersionMap* shardVersions,
ShardVersionMap& shardVersions,
const ChunkManager* oldManager);
static bool _isValid(const ChunkMap& chunks);