Github user dineshjoshi commented on a diff in the pull request:

    https://github.com/apache/cassandra/pull/239#discussion_r202477311
  
    --- Diff: src/java/org/apache/cassandra/db/DiskBoundaries.java ---
    @@ -129,4 +129,19 @@ public int 
getBoundariesFromSSTableDirectory(Descriptor descriptor)
         {
             return directories.get(getDiskIndex(sstable));
         }
    +
    +    public Directories.DataDirectory getCorrectDiskForKey(DecoratedKey key)
    +    {
    +        if (positions == null)
    +            return null;
    +
    +        return directories.get(getDiskIndex(key));
    +    }
    +
    +    private int getDiskIndex(DecoratedKey key)
    +    {
    +        int pos = Collections.binarySearch(positions, key);
    --- End diff --
    
    This method is pretty much a replica of `getDiskIndex(SSTableReader 
sstable)` (See: 
https://github.com/dineshjoshi/cassandra/blob/657ce3670a5291decf2939d72d51abe19333ef15/src/java/org/apache/cassandra/db/DiskBoundaries.java#L102)
 Instead of accepting a sstable, I pass in a `DecoratedKey`.
    
    We ensure that the range is owned at the upper levels of the stack.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to