4

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

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();
}

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

4

1 回答 1

0

我正在这样做...

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

此代码将生成异常,因此请务必添加一些注释。如果人们检查日志,他们就会明白发生了什么

更新 有人在 github 问题 #382上提出了功能请求。希望它有帮助...

于 2013-08-15T20:36:03.520 回答