从 cassandra 的键空间中检索所有 columnfamily / thrift 和 CQL 的表
Retrieve all the columnfamily / tables of thrift and CQL from the keyspace in cassandra
我使用 hector 来操作 2.1.8 版的 cassandra,并希望从应用程序的某个键空间中检索所有 table。我使用 "KeyspaceDefinition.getCfDefs()" 检索键空间中的列族列表。
但是,我发现getCfDefs()函数只能检索thrift api创建的columnfamily,例如"me.prettyprint.hector.api.Cluster.updateColumnFamily",而不是table创建的CQL,例如cqlsh client .
那么,如何使用 hector 从某个键空间中检索所有 table?
我使用 hector 来操作 2.1.8 版的 cassandra,并希望从应用程序的某个键空间中检索所有 table。我使用 "KeyspaceDefinition.getCfDefs()" 检索键空间中的列族列表。
但是,我发现getCfDefs()函数只能检索thrift api创建的columnfamily,例如"me.prettyprint.hector.api.Cluster.updateColumnFamily",而不是table创建的CQL,例如cqlsh client .
那么,如何使用 hector 从某个键空间中检索所有 table?