检查Astyanax Keyspace是否为空或不存在

时间:2013-08-13 12:49:04

标签: cassandra astyanax

有没有办法检查当前上下文中是否存在Astyanax Keyspace?现在我的代码执行以下操作:

keyspace = context.getClient();
try{
   keyspace.describeKeyspace(); 
}catch (BadRequestException e){
   keyspace.createKeyspace(ImmutableMap.<String, Object>builder()
                .put("strategy_options", ImmutableMap.<String, Object>builder()
                        .put("replication_factor", "1")
                        .build())
                .put("strategy_class", "SimpleStrategy")
                .build();
}

这是检查密钥空间是否存在的唯一方法吗?

1 个答案:

答案 0 :(得分:0)

我这样做......

try {
    keyspace.getKeyspaceProperties();
    LOG.debug("keyspace exist");
} catch (Exception e) {
    LOG.debug("keyspace does NOT exist");
}

此代码将生成异常,因此请务必发表一些评论。如果人们检查日志,他们将了解正在发生的事情

<强>更新 有人在github上发出了功能请求 Issue #382。 希望它有所帮助...