Hi Everybody, I have a column family of super-columns with long names. The columns in each super-column also have long names. I'm using Hector, and what I want to do is get the last column in each super-column, for a range of super-columns. I was able to get the last column in a column family like this…
Cluster cluster = HFactory.getOrCreateCluster("Cortex", config); Keyspace keyspace = HFactory.createKeyspace("Products", cluster); RangeSlicesQuery<String, String, String> rangeSlicesQuery = HFactory.createRangeSlicesQuery(keyspace, StringSerializer.get(), StringSerializer.get(), StringSerializer.get()); rangeSlicesQuery.setColumnFamily("Attributes"); rangeSlicesQuery.setKeys("id0", "id0"); rangeSlicesQuery.setRange("", "", true, 1); QueryResult<OrderedRows<String, String, String>> rsult = rangeSlicesQuery.execute(); …but no luck with the additional dimension. Thanks in advance! Caleb Rackliffe | Software Developer M 949.981.0159 | ca...@steelhouse.com [cid:63B04035-B5DF-48C6-9396-B72DBE859205]
<<inline: 026985CE-DD5D-4E4A-AC8E-A63219DF0CE1[11].png>>