dse 图 - 未创建 cassandra keyspace _pvt

dse graph - cassandra keyspace _pvt not created

$ bin/dse gremlin-console

         \,,,/
         (o o)
-----oOOo-(3)-oOOo----- 
plugin activated: tinkerpop.tinkergraph 
plugin activated: tinkerpop.server 
plugin activated: tinkerpop.utilities 
gremlin> system.graphs()
==>idg  gremlin>

$ bin/cqlsh -u dse_admin 
Password:  
Connected to dse_storm1 at
127.0.0.1:9042. [cqlsh 5.0.1 | DSE 6.0.1 | CQL spec 3.4.5 | DSE protocol v2] Use HELP for help.  dse_admin@cqlsh> desc keyspaces;

dse_system_local  
system_schema  
dse_leases  
system_distributed 
dse_security 
system_auth    
keyspace1   
system_traces            
system            
idg_system     
dse_perf    
idg           
dse_system 


dse_admin@cqlsh>

我看不到键空间idg_pvt

但是,文档说还应该创建 graph_pvt 键空间。 https://docs.datastax.com/en/dse/6.0/dse-dev/datastax_enterprise/graph/reference/refCassKSandTables.html

dse_admin@cqlsh:system_schema> select keyspace_name from keyspaces;

 keyspace_name
--------------------
                idg
        system_auth
      system_schema
   dse_system_local
         dse_system
         dse_leases
          keyspace1
 system_distributed
             system
         idg_system
           dse_perf
      system_traces
       dse_security

_pvt键空间是否仅根据为顶点和边加载的数据大小创建? DSE 创建 _pvt 键空间的阈值是多少?创建 _pvt 键空间时对集群有什么影响?

这取决于 DSE 的版本。在 DSE 5.x 中,为每个名为 Name 的图创建了三个键空间:NameName_systemName_pvt。在 DSE 6.0 中,这发生了变化,只会创建 2 个键空间 NameName_system.

P.S。我已经提交了修复文档的工单...