Author: ivol37 at gmail.com Date: Fri Jan 14 16:15:06 2011 New Revision: 659
Log: Modified: sandbox/ivol/standalone-cassandra/conf-r2d2/cassandra.yaml sandbox/ivol/standalone-cassandra/conf/cassandra.yaml Modified: sandbox/ivol/standalone-cassandra/conf-r2d2/cassandra.yaml ============================================================================== --- sandbox/ivol/standalone-cassandra/conf-r2d2/cassandra.yaml (original) +++ sandbox/ivol/standalone-cassandra/conf-r2d2/cassandra.yaml Fri Jan 14 16:15:06 2011 @@ -19,7 +19,7 @@ # the heaviest-loaded existing node. If there is no load information # available, such as is the case with a new cluster, it will pick # a random token, which will lead to hot spots. -initial_token: +initial_token: # Set to true to make new [non-seed] nodes automatically migrate data # to themselves from the pre-existing nodes in the cluster. Defaults @@ -91,7 +91,7 @@ # Cassandra nodes use this list of hosts to find each other and learn # the topology of the ring. You must change this if you are running # multiple nodes! -seeds: +seeds: - 172.16.2.203 # Access mode. mmapped i/o is substantially faster, but only practical on @@ -280,3 +280,19 @@ # is for a given SSTable. The larger the sampling, the more effective # the index is at the cost of space. index_interval: 128 + + + +keyspaces: + - name: Default + replica_placement_strategy: org.apache.cassandra.locator.SimpleStrategy + replication_factor: 1 + column_families: + - name: Role + compare_with: BytesType + + - name: Gadget + compare_with: BytesType + + - name: Category + compare_with: BytesType \ No newline at end of file Modified: sandbox/ivol/standalone-cassandra/conf/cassandra.yaml ============================================================================== --- sandbox/ivol/standalone-cassandra/conf/cassandra.yaml (original) +++ sandbox/ivol/standalone-cassandra/conf/cassandra.yaml Fri Jan 14 16:15:06 2011 @@ -278,4 +278,18 @@ # The Index Interval determines how large the sampling of row keys # is for a given SSTable. The larger the sampling, the more effective # the index is at the cost of space. -index_interval: 128 \ No newline at end of file +index_interval: 128 + +keyspaces: + - name: Default + replica_placement_strategy: org.apache.cassandra.locator.SimpleStrategy + replication_factor: 1 + column_families: + - name: Role + compare_with: BytesType + + - name: Gadget + compare_with: BytesType + + - name: Category + compare_with: BytesType \ No newline at end of file
