Example usage for org.apache.cassandra.db ColumnFamilyStoreMBean getSSTablesForKey

List of usage examples for org.apache.cassandra.db ColumnFamilyStoreMBean getSSTablesForKey

Introduction

In this page you can find the example usage for org.apache.cassandra.db ColumnFamilyStoreMBean getSSTablesForKey.

Prototype

public List<String> getSSTablesForKey(String key, boolean hexFormat);

Source Link

Document

Returns a list of filenames that contain the given key on this node

Usage

From source file:com.wenyu.utils.ClusterToolNodeProbe.java

License:Apache License

public List<String> getSSTables(String keyspace, String cf, String key, boolean hexFormat) {
    ColumnFamilyStoreMBean cfsProxy = getCfsProxy(keyspace, cf);
    return cfsProxy.getSSTablesForKey(key, hexFormat);
}