我对 Cassandra 有一些疑问,首先我想在 storage-conf.xml 中创建列和键空间,(我没有,但我认为 cassandra.yaml 在最新版本中取代了它)我试图写这个cassandra.yaml 通过在记事本中打开它,但它似乎不起作用,因为我无法在 datastax Web 界面中看到我的新键空间。
<Keyspace>
<Keyspace Name="Sales">
<ColumnFamily Name="Customer" CompareWith="UTF8Type" />
<ReplicaPlacementStrategy>org.apache.cassandra.locator.RackUnawareStrategy
</ReplicaPlacementStrategy>
<ReplicationFactor>1</ReplicationFactor
<EndPointSnitch>org.apache.cassandra.locator.EndPointSnitch</EndPointSnitch>
</Keyspace>
我究竟做错了什么?
我还想知道是否有一种简单的方法可以将关系 sql server 数据库迁移到 cassandra?
提前致谢!