org.apache.cassandra.db.compaction.ShardManagerTrivial Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cassandra.db.compaction;
import java.util.Set;
import org.apache.cassandra.db.PartitionPosition;
import org.apache.cassandra.dht.IPartitioner;
import org.apache.cassandra.dht.Range;
import org.apache.cassandra.dht.Token;
import org.apache.cassandra.io.sstable.format.SSTableReader;
public class ShardManagerTrivial implements ShardManager
{
private final IPartitioner partitioner;
public ShardManagerTrivial(IPartitioner partitioner)
{
this.partitioner = partitioner;
}
public boolean isOutOfDate(long ringVersion)
{
// We don't do any routing, always up to date
return false;
}
@Override
public double rangeSpanned(Range tableRange)
{
return 1;
}
@Override
public double rangeSpanned(SSTableReader rdr)
{
return 1;
}
@Override
public double calculateCombinedDensity(Set extends SSTableReader> sstables)
{
double totalSize = 0;
for (SSTableReader sstable : sstables)
totalSize += sstable.onDiskLength();
return totalSize;
}
@Override
public double localSpaceCoverage()
{
return 1;
}
@Override
public double shardSetCoverage()
{
return 1;
}
ShardTracker iterator = new ShardTracker()
{
@Override
public Token shardStart()
{
return partitioner.getMinimumToken();
}
@Override
public Token shardEnd()
{
return partitioner.getMinimumToken();
}
@Override
public Range shardSpan()
{
return new Range<>(partitioner.getMinimumToken(), partitioner.getMinimumToken());
}
@Override
public double shardSpanSize()
{
return 1;
}
@Override
public boolean advanceTo(Token nextToken)
{
return false;
}
@Override
public int count()
{
return 1;
}
@Override
public double fractionInShard(Range targetSpan)
{
return 1;
}
@Override
public double rangeSpanned(PartitionPosition first, PartitionPosition last)
{
return 1;
}
@Override
public int shardIndex()
{
return 0;
}
@Override
public long shardAdjustedKeyCount(Set sstables)
{
long shardAdjustedKeyCount = 0;
for (SSTableReader sstable : sstables)
shardAdjustedKeyCount += sstable.estimatedKeys();
return shardAdjustedKeyCount;
}
};
@Override
public ShardTracker boundaries(int shardCount)
{
return iterator;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy