DSE Graph / Search是否具有与Cassandra相同的异步复制支持?

时间:2018-05-16 20:15:13

标签: datastax datastax-enterprise datastax-enterprise-graph

我正在尝试构建多个数据中心并在它们之间进行异步复制。我知道Cassandra支持它就好了。适用于Cassandra的相同多直流设置/配置是否适用于DSE Graph / Search?需要额外的设置吗?

1 个答案:

答案 0 :(得分:1)

DSE Graph构建于Cassandra的DSE版本之上,因此复制是相同的 - 使用replication&创建图表时的systemReplication选项(文档中的示例):

system.graph('food').
  replication("{'class' : 'NetworkTopologyStrategy', 'dc1' : 3 }").  
  systemReplication("{'class' : 'NetworkTopologyStrategy', 'dc1' : 3 }").
  ifNotExists().create()

有关详细信息,请参阅documentation ...