0

我正在使用 Astyanax 1.56.42 并面临这样的问题:在具有 100 多个实体的 columnFamily 上调用 defaultEntityManager.getAll() 时,会引发以下异常:“无法获取所有实体”。

entityManager 的实例化如下:

entityManager = new DefaultEntityManager.Builder<T, UUID>()
   .withEntityType(typeClass)
   .withKeyspace(keyspace)
   .withColumnFamily(columnFamily)
   .build();

如何使用 getAll 获取超过 100 个数据集?

提前致谢!长相

4

1 回答 1

0

不。反规范化以在单个结果集中获取您需要的内容。请参阅此处的资源:http ://wiki.apache.org/cassandra/DataModel

于 2013-07-19T00:55:00.267 回答