0

我在 cassandra 中非常天真并且正在使用 astyanax

CREATE TABLE 员工(empID int、deptID int、first_name varchar、last_name varchar、PRIMARY KEY (empID, deptID));

我想获取查询的值: select * from employees where empID =2 and deptID = 800;

     public void read(Integer empID, String deptID) {
    OperationResult<ColumnList<String>> result;
    try {

        columnFamilies = ColumnFamily.newColumnFamily("employees", IntegerSerializer.get(), StringSerializer.get()); 
      result = keyspace.prepareQuery(columnFamilies).getKey(empID).execute();

      ColumnList<String> cols = result.getResult();
 //Other stuff

}

我应该如何做到这一点

4

1 回答 1

0

据我所知,没有一种超级干净的方法可以做到这一点。您必须通过执行 cql 查询然后遍历行来完成。此代码取自astynax 示例文件

public void read(int empId) {
  logger.debug("read()");
  try {
    OperationResult<CqlResult<Integer, String>> result
      = keyspace.prepareQuery(EMP_CF)
        .withCql(String.format("SELECT * FROM %s WHERE %s=%d;", EMP_CF_NAME, COL_NAME_EMPID, empId))
        .execute();
    for (Row<Integer, String> row : result.getResult().getRows()) {
      logger.debug("row: "+row.getKey()+","+row); // why is rowKey null?

      ColumnList<String> cols = row.getColumns();
      logger.debug("emp");
      logger.debug("- emp id: "+cols.getIntegerValue(COL_NAME_EMPID, null));
      logger.debug("- dept: "+cols.getIntegerValue(COL_NAME_DEPTID, null));
      logger.debug("- firstName: "+cols.getStringValue(COL_NAME_FIRST_NAME, null));
      logger.debug("- lastName: "+cols.getStringValue(COL_NAME_LAST_NAME, null));
    }
  } catch (ConnectionException e) {
    logger.error("failed to read from C*", e);
    throw new RuntimeException("failed to read from C*", e);
  }
}

您只需调整 cql 查询即可返回您想要的内容。这有点令人沮丧,因为根据文档,您可以这样做

Column<String> result = keyspace.prepareQuery(CF_COUNTER1)
    .getKey(rowKey)
    .getColumn("Column1")
    .execute().getResult();
Long counterValue = result.getLongValue();

但是我不知道是什么rowkey。我已经发布了一个关于 rowkey 可以是什么的问题。希望这会有所帮助

于 2013-08-15T17:54:40.943 回答