$ 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密钥空间时,对集群有什么影响?
答案 0 :(得分:0)
这取决于DSE的版本。在DSE 5.x中,为每个称为Name
的图创建了三个键空间:Name
,Name_system
和Name_pvt
。在DSE 6.0中,此更改已更改,将仅创建两个Name
和Name_system
的键空间。
P.S。我已提交票证以修复文档...