I have some questions about Cassandra, first of all i want to create columns and keyspaces in the storage-conf.xml, (which i dont have but i think that cassandra.yaml replaced that in the latest version) I tried to write this in the cassandra.yaml by opening it in notepad, but it didnt seem to work since i couldnt see my new keyspace in datastax web interface.
<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>
What am i doing wrong?
I also wonder if there is a somehow easy way to migrate a relational sql server database in to cassandra?
Thanks in advance!