我在本地设置了一个节点集群。现在我正在尝试从Cassandra读取数据。我是Astyanax(Cassandra的Netflix客户)的新手。
目前我所看到的是 - 您可以在rowkey上请求数据基础。 rowkey的含义基础我可以检索不是我想要的所有列。
但我正在寻找的是 - 我将拥有rowkey和几个columnsNames。因此,基于该rowkey,我只需要检索这些列。像这样的东西 -
SELECT colA, colB from table1 where rowkey = "222";
以下是我在rowkey上检索所有列名称的方法。如何只检索给定行键的选定列?
public void read(final String userId, final Collection<String> columnNames) {
OperationResult<ColumnList<String>> result;
try {
result = CassandraConnection.getInstance().getKeyspace().prepareQuery(CassandraConnection.getInstance().getEmp_cf())
.getKey(userId)
.execute();
ColumnList<String> cols = result.getResult();
for(Iterator<Column<String>> i = cols.iterator(); i.hasNext(); ) {
Column<String> c = i.next();
Object v = null;
if(c.getName().endsWith("id")) // type induction hack
v = c.getIntegerValue();
else
v = c.getStringValue();
System.out.println("- col: '"+c.getName()+"': "+v);
}
} catch (ConnectionException e) {
System.out.println("failed to read from C*" +e);
throw new RuntimeException("failed to read from C*", e);
}
}
在上面的代码中,Collection<String> columnNames
将包含我想要请求的几个列名。
有人可以告诉我在上面的方法中我需要做些什么改变吗?
答案 0 :(得分:2)
为了检索astyanax中的选定列,我们必须使用列切片。
List<String> columns = Arrays.asList(new String[]{"col1","col2","col3"});
OperationResult<ColumnList<String>> result = CassandraConnection.getInstance().getKeyspace()
.prepareQuery(CassandraConnection.getInstance().getEmp_cf())
.getKey(userId).withColumnSlice(columns)
.execute();
ColumnList<String> columnList= result.getResult();
for(String col : columns ){
System.out.println(columnList.getColumnByName(col).getStringValue());
}
我假设所有列都是文本类型,因此使用getStringValue()
,您可以根据您的cf元数据获取它。
干杯