Uses of Class
org.apache.cassandra.dht.Range

Packages that use Range
org.apache.cassandra.client   
org.apache.cassandra.dht   
org.apache.cassandra.io.sstable   
org.apache.cassandra.locator   
org.apache.cassandra.service   
org.apache.cassandra.streaming   
org.apache.cassandra.utils   
 

Uses of Range in org.apache.cassandra.client
 

Methods in org.apache.cassandra.client that return Range
 Range RingCache.getRange(java.nio.ByteBuffer key)
           
 

Methods in org.apache.cassandra.client with parameters of type Range
 java.util.List<java.net.InetAddress> RingCache.getEndpoint(Range range)
          ListMultimap promises to return a List for get(K)
 

Uses of Range in org.apache.cassandra.dht
 

Methods in org.apache.cassandra.dht that return types with arguments of type Range
 java.util.Set<Range> Range.intersectionWith(Range that)
           
static java.util.Set<Range> Range.rangeSet(Range... ranges)
           
 

Methods in org.apache.cassandra.dht with parameters of type Range
 int Range.compareTo(Range rhs)
           
 boolean Range.contains(Range that)
           
 java.util.Set<Range> Range.intersectionWith(Range that)
           
 boolean Range.intersects(Range that)
           
static java.util.Set<Range> Range.rangeSet(Range... ranges)
           
 

Method parameters in org.apache.cassandra.dht with type arguments of type Range
static boolean Range.isTokenInRanges(Token token, java.lang.Iterable<Range> ranges)
           
 

Uses of Range in org.apache.cassandra.io.sstable
 

Method parameters in org.apache.cassandra.io.sstable with type arguments of type Range
 java.util.List<Pair<java.lang.Long,java.lang.Long>> SSTableReader.getPositionsForRanges(java.util.Collection<Range> ranges)
          Determine the minimal set of sections that can be extracted from this SSTable to cover the given ranges.
 

Uses of Range in org.apache.cassandra.locator
 

Methods in org.apache.cassandra.locator that return Range
 Range TokenMetadata.getPrimaryRangeFor(Token right)
           
 

Methods in org.apache.cassandra.locator that return types with arguments of type Range
 com.google.common.collect.Multimap<java.net.InetAddress,Range> AbstractReplicationStrategy.getAddressRanges()
           
 com.google.common.collect.Multimap<java.net.InetAddress,Range> AbstractReplicationStrategy.getAddressRanges(TokenMetadata metadata)
           
 java.util.Collection<Range> AbstractReplicationStrategy.getPendingAddressRanges(TokenMetadata metadata, Token pendingToken, java.net.InetAddress pendingAddress)
           
 java.util.Map<Range,java.util.Collection<java.net.InetAddress>> TokenMetadata.getPendingRanges(java.lang.String table)
          a mutable map may be returned but caller should not modify it
 java.util.List<Range> TokenMetadata.getPendingRanges(java.lang.String table, java.net.InetAddress endpoint)
           
 com.google.common.collect.Multimap<Range,java.net.InetAddress> AbstractReplicationStrategy.getRangeAddresses(TokenMetadata metadata)
           
 

Method parameters in org.apache.cassandra.locator with type arguments of type Range
 void TokenMetadata.setPendingRanges(java.lang.String table, com.google.common.collect.Multimap<Range,java.net.InetAddress> rangeMap)
           
 

Uses of Range in org.apache.cassandra.service
 

Fields in org.apache.cassandra.service with type parameters of type Range
 java.util.List<Range> AntiEntropyService.Differencer.differences
           
 

Methods in org.apache.cassandra.service that return Range
 Range StorageService.getLocalPrimaryRange()
           
 Range StorageService.getPrimaryRangeForEndpoint(java.net.InetAddress ep)
          Get the primary range for the specified endpoint.
 

Methods in org.apache.cassandra.service that return types with arguments of type Range
 java.util.List<Range> StorageService.getAllRanges(java.util.List<Token> sortedTokens)
          Get all ranges that span the ring given a set of tokens.
 java.util.Collection<Range> StorageService.getLocalRanges(java.lang.String table)
           
 java.util.Map<Range,java.util.List<java.lang.String>> StorageService.getPendingRangeToEndpointMap(java.lang.String keyspace)
           
 java.util.Map<Range,java.util.List<java.lang.String>> StorageServiceMBean.getPendingRangeToEndpointMap(java.lang.String keyspace)
          Retrieve a map of pending ranges to endpoints that describe the ring topology
 java.util.Map<Range,java.util.List<java.net.InetAddress>> StorageService.getRangeToAddressMap(java.lang.String keyspace)
           
 java.util.Map<Range,java.util.List<java.lang.String>> StorageService.getRangeToEndpointMap(java.lang.String keyspace)
          for a keyspace, return the ranges and corresponding hosts for a given keyspace.
 java.util.Map<Range,java.util.List<java.lang.String>> StorageServiceMBean.getRangeToEndpointMap(java.lang.String keyspace)
          Retrieve a map of range to end points that describe the ring topology of a Cassandra cluster.
 

Methods in org.apache.cassandra.service with parameters of type Range
 java.util.List<Token> StorageService.getSplits(java.lang.String table, java.lang.String cfName, Range range, int keysPerSplit)
           
 

Uses of Range in org.apache.cassandra.streaming
 

Method parameters in org.apache.cassandra.streaming with type arguments of type Range
static void StreamIn.requestRanges(java.net.InetAddress source, java.lang.String tableName, java.util.Collection<Range> ranges)
          Request ranges to be transferred from source to local node
static void StreamIn.requestRanges(java.net.InetAddress source, java.lang.String tableName, java.util.Collection<Range> ranges, java.lang.Runnable callback)
           
static void StreamOut.transferRanges(java.net.InetAddress target, java.lang.String tableName, java.util.Collection<Range> ranges, java.lang.Runnable callback)
          Split out files for all tables on disk locally for each range and then stream them to the target endpoint.
static void StreamOut.transferRangesForRequest(StreamOutSession session, java.util.Collection<Range> ranges)
          Split out files for all tables on disk locally for each range and then stream them to the target endpoint.
static void StreamOut.transferSSTables(StreamOutSession session, java.util.Collection<SSTableReader> sstables, java.util.Collection<Range> ranges)
          Transfers matching portions of a group of sstables from a single table to the target endpoint.
 

Uses of Range in org.apache.cassandra.utils
 

Subclasses of Range in org.apache.cassandra.utils
static class MerkleTree.TreeRange
          The public interface to a range in the tree.
 

Methods in org.apache.cassandra.utils with parameters of type Range
 byte[] MerkleTree.hash(Range range)
          Hash the given range in the tree.
 MerkleTree.TreeRangeIterator MerkleTree.invalids(Range range)
          Returns a lazy iterator of invalid TreeRanges that need to be filled in order to make the given Range valid.
static void FBUtilities.sortSampledKeys(java.util.List<DecoratedKey> keys, Range range)
           
 



Copyright © 2010 The Apache Software Foundation