0

我正在尝试使用 Astyanax 驱动程序列出 Cassandra 中的列族。它列出了正确的键空间,但输出中缺少许多列族。

我有一个简单的程序:

import com.netflix.astyanax.AstyanaxContext;
import com.netflix.astyanax.Cluster;
import com.netflix.astyanax.connectionpool.impl.ConnectionPoolConfigurationImpl;
import com.netflix.astyanax.connectionpool.impl.CountingConnectionPoolMonitor;
import com.netflix.astyanax.ddl.ColumnFamilyDefinition;
import com.netflix.astyanax.ddl.KeyspaceDefinition;
import com.netflix.astyanax.impl.AstyanaxConfigurationImpl;
import com.netflix.astyanax.thrift.ThriftFamilyFactory;

public class App {

  public static void main(String[] args) throws Exception {

    ConnectionPoolConfigurationImpl cpool = new ConnectionPoolConfigurationImpl("ConnectionPool")
        .setPort(9160)
        .setSeeds("localhost");

    AstyanaxConfigurationImpl astyanaxConfiguration = new AstyanaxConfigurationImpl();
    AstyanaxContext.Builder ctxBuilder = new AstyanaxContext.Builder();
    ctxBuilder.forCluster("Cluster")
        .withAstyanaxConfiguration(astyanaxConfiguration)
        .withConnectionPoolConfiguration(cpool)
        .withConnectionPoolMonitor(new CountingConnectionPoolMonitor());

    AstyanaxContext<Cluster> clusterContext = ctxBuilder.buildCluster(ThriftFamilyFactory.getInstance());
    clusterContext.start();
    Cluster cluster = clusterContext.getClient();

    for (KeyspaceDefinition ksDef : cluster.describeKeyspaces()) {
      List<ColumnFamilyDefinition> cfDefList = ksDef.getColumnFamilyList();
      System.out.println("there are " + cfDefList.size() + " column families in keyspace " + ksDef.getName());
      for (ColumnFamilyDefinition cfDef : cfDefList) System.out.println(" - " + cfDef.getName());
    }

它可以列出键空间,但缺少许多列族。这是输出。可以看到,很多默认的keyspace都存在,但是很多列族都缺失了。

there are 0 column families in keyspace system_distributed
there are 3 column families in keyspace system
- hints
- schema_keyspaces
- IndexInfo
there are 2 column families in keyspace system_auth
- role_members
- resource_role_permissons_index
there are 0 column families in keyspace system_traces

我可以使用 cqlsh 来确认列族确实存在

cqlsh> DESCRIBE COLUMNFAMILIES

Keyspace system_traces
----------------------
events  sessions

Keyspace system_auth
--------------------
resource_role_permissons_index  role_permissions  role_members  roles

Keyspace system
---------------
available_ranges  size_estimates    schema_usertypes    compactions_in_progress
range_xfers       peers             paxos               schema_aggregates
schema_keyspaces  schema_triggers   batchlog            schema_columnfamilies
schema_columns    sstable_activity  schema_functions    local
"IndexInfo"       peer_events       compaction_history  hints

Keyspace system_distributed
---------------------------
repair_history  parent_repair_history

上面的输出使用的是 cassandra 2.2,但我已经确认了其他版本的 cassandra 和 scylla 中的行为。

4

3 回答 3

5

默认情况下,Cassandra 已弃用 Thrift,并且不再启用 Thrift。您需要启用它才能使用它。请记住,在 Cassandra 的下一个版本中,它甚至不存在。很有可能即使启用它并使用它也可能无法正常工作。没有什么真正使用它了,也没有那么多的测试使用它。表的存储和检索方式在版本之间发生了变化,因此驱动程序必须意识到这一点。由于 Astyanax 没有得到维护,它可能不会正确。

Astyanax 已退役,仅适用于较旧的应用程序。您应该真正使用java 驱动程序(与 Astyanax 页面上的推荐相同)。

于 2018-10-03T18:51:56.397 回答
4

我记得在 Cassandra 0.8.8 - 1.1 和 1.2 中使用 Astyanax。曾经有一段时间,我们会将所有数据(列)作为一个 blob 放入一个分区(启用更快的写入),然后我们会从节俭的胖客户端解析数据(据称此时 Cassandra 的读取速度很慢)。我们必须跟踪模式,然后在反序列化来自 thrift 客户端的输出时,我们将根据所有单独列的数据类型进行解析。在引入 CQL 之后,所有这些都发生了变化,正如 Chris 所指出的,这是使用 c* 的推荐方式。

于 2018-10-04T07:22:19.057 回答
0

你用什么版本的 Scylla 试过?尽管 Cassandra 已弃用 Thrift,但 Scylla 仍支持 Thrift。

于 2018-10-11T23:53:43.073 回答