mirror of https://github.com/apache/cassandra
fix line endings
git-svn-id: https://svn.apache.org/repos/asf/incubator/cassandra/trunk@785436 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a48110e815
commit
a102a3e73a
|
|
@ -17,133 +17,133 @@
|
|||
~ under the License.
|
||||
-->
|
||||
<Storage>
|
||||
<!--======================================================================-->
|
||||
<!-- Basic Configuration -->
|
||||
<!--======================================================================-->
|
||||
<ClusterName>Test Cluster</ClusterName>
|
||||
|
||||
<!-- Tables and ColumnFamilies -->
|
||||
<Tables>
|
||||
<Table Name="Table1">
|
||||
<!-- if FlushPeriodInMinutes is configured and positive, it will be
|
||||
flushed to disk with that period whether it is dirty or not.
|
||||
This is intended for lightly-used columnfamilies so that they
|
||||
do not prevent commitlog segments from being purged. -->
|
||||
<ColumnFamily ColumnSort="Name" Name="Standard1" FlushPeriodInMinutes="60"/>
|
||||
<ColumnFamily ColumnSort="Name" Name="Standard2"/>
|
||||
<ColumnFamily ColumnSort="Time" Name="StandardByTime1"/>
|
||||
<ColumnFamily ColumnSort="Time" Name="StandardByTime2"/>
|
||||
<ColumnFamily ColumnType="Super" ColumnSort="Name" Name="Super1"/>
|
||||
<ColumnFamily ColumnType="Super" ColumnSort="Name" Name="Super2"/>
|
||||
</Table>
|
||||
</Tables>
|
||||
|
||||
<!-- Partitioner: any IPartitioner may be used, including your own
|
||||
as long as it is on the classpath. Out of the box,
|
||||
Cassandra provides
|
||||
org.apache.cassandra.dht.RandomPartitioner and
|
||||
org.apache.cassandra.dht.OrderPreservingPartitioner.
|
||||
Range queries require using OrderPreservingPartitioner or a subclass.
|
||||
|
||||
Achtung! Changing this parameter requires wiping your data directories,
|
||||
since the partitioner can modify the sstable on-disk format.
|
||||
-->
|
||||
<Partitioner>org.apache.cassandra.dht.RandomPartitioner</Partitioner>
|
||||
|
||||
<!-- If you are using the OrderPreservingPartitioner and you know your key
|
||||
distribution, you can specify the token for this node to use.
|
||||
(Keys are sent to the node with the "closest" token, so distributing
|
||||
your tokens equally along the key distribution space will spread
|
||||
keys evenly across your cluster.) This setting is only checked the
|
||||
first time a node is started.
|
||||
|
||||
This can also be useful with RandomPartitioner to force equal
|
||||
spacing of tokens around the hash space, especially for
|
||||
clusters with a small number of nodes. -->
|
||||
<InitialToken></InitialToken>
|
||||
|
||||
<!-- RackAware: Setting this to true instructs Cassandra to try and place the replicas in
|
||||
a different rack in the same datacenter and one in a different datacenter
|
||||
-->
|
||||
<RackAware>false</RackAware>
|
||||
|
||||
<!-- Number of replicas of the data-->
|
||||
<ReplicationFactor>1</ReplicationFactor>
|
||||
|
||||
<!-- Directories: Specify where Cassandra should store different data on disk
|
||||
Keep the data disks and the CommitLog disks separate for best performance
|
||||
-->
|
||||
<CommitLogDirectory>/var/cassandra/commitlog</CommitLogDirectory>
|
||||
<MetadataDirectory>/var/cassandra/system</MetadataDirectory>
|
||||
<DataFileDirectories>
|
||||
<DataFileDirectory>/var/cassandra/data</DataFileDirectory>
|
||||
</DataFileDirectories>
|
||||
<CalloutLocation>/var/cassandra/callouts</CalloutLocation>
|
||||
<BootstrapFileDirectory>/var/cassandra/bootstrap</BootstrapFileDirectory>
|
||||
<StagingFileDirectory>/var/cassandra/staging</StagingFileDirectory>
|
||||
|
||||
|
||||
<!-- Add names of hosts that are deemed contact points. Cassandra nodes use
|
||||
this list of hosts to find each other and learn the topology of the ring.
|
||||
-->
|
||||
<Seeds>
|
||||
<Seed>127.0.0.1</Seed>
|
||||
</Seeds>
|
||||
|
||||
<!-- Miscellaneous -->
|
||||
<RpcTimeoutInMillis>5000</RpcTimeoutInMillis>
|
||||
<CommitLogRotationThresholdInMB>128</CommitLogRotationThresholdInMB>
|
||||
<CommitLogFastSync>false</CommitLogFastSync>
|
||||
|
||||
<!-- Hosts and Ports -->
|
||||
<ListenAddress>localhost</ListenAddress>
|
||||
<StoragePort>7000</StoragePort>
|
||||
<ControlPort>7001</ControlPort>
|
||||
<ThriftPort>9160</ThriftPort>
|
||||
<HttpPort>7002</HttpPort>
|
||||
|
||||
|
||||
<!--======================================================================-->
|
||||
<!-- Memory, Disk, and Performance -->
|
||||
<!--======================================================================-->
|
||||
|
||||
<!-- Threshold for adding a column index in a row -->
|
||||
<ColumnIndexSizeInKB>256</ColumnIndexSizeInKB>
|
||||
|
||||
<!--
|
||||
The maximum amount of data to store in memory before flushing to
|
||||
disk. Note: There is one memtable per column family, and this threshold
|
||||
is based solely on the amount of data stored, not actual heap memory
|
||||
usage (there is some overhead in indexing the columns).
|
||||
-->
|
||||
<MemtableSizeInMB>32</MemtableSizeInMB>
|
||||
|
||||
<!--
|
||||
The maximum number of columns in millions to store in memory
|
||||
before flushing to disk. This is also a per-memtable setting.
|
||||
Use with MemtableSizeInMB to tune memory usage.
|
||||
-->
|
||||
<MemtableObjectCountInMillions>0.02</MemtableObjectCountInMillions>
|
||||
|
||||
<!-- Time to wait before garbage-collection deletion markers.
|
||||
Set this to a large enough value that you are confident
|
||||
that the deletion marker will be propagated to all replicas
|
||||
by the time this many seconds has elapsed, even in the
|
||||
face of hardware failures. The default value is ten days.
|
||||
-->
|
||||
<GCGraceSeconds>864000</GCGraceSeconds>
|
||||
|
||||
|
||||
<!--======================================================================-->
|
||||
<!-- OPTIONAL -->
|
||||
<!--======================================================================-->
|
||||
<!-- This final section contains configuration information for optional
|
||||
and experimental features in Cassandra that are not yet fully functional.
|
||||
Basic features in Cassandra should work fine without configuring this section.
|
||||
-->
|
||||
<ZookeeperAddress>127.0.0.1</ZookeeperAddress>
|
||||
<MulticastChannel>230.0.0.1</MulticastChannel>
|
||||
<GangliaServers>
|
||||
<GangliaServer>127.0.0.1:12000</GangliaServer>
|
||||
</GangliaServers>
|
||||
</Storage>
|
||||
<!--======================================================================-->
|
||||
<!-- Basic Configuration -->
|
||||
<!--======================================================================-->
|
||||
<ClusterName>Test Cluster</ClusterName>
|
||||
|
||||
<!-- Tables and ColumnFamilies -->
|
||||
<Tables>
|
||||
<Table Name="Table1">
|
||||
<!-- if FlushPeriodInMinutes is configured and positive, it will be
|
||||
flushed to disk with that period whether it is dirty or not.
|
||||
This is intended for lightly-used columnfamilies so that they
|
||||
do not prevent commitlog segments from being purged. -->
|
||||
<ColumnFamily ColumnSort="Name" Name="Standard1" FlushPeriodInMinutes="60"/>
|
||||
<ColumnFamily ColumnSort="Name" Name="Standard2"/>
|
||||
<ColumnFamily ColumnSort="Time" Name="StandardByTime1"/>
|
||||
<ColumnFamily ColumnSort="Time" Name="StandardByTime2"/>
|
||||
<ColumnFamily ColumnType="Super" ColumnSort="Name" Name="Super1"/>
|
||||
<ColumnFamily ColumnType="Super" ColumnSort="Name" Name="Super2"/>
|
||||
</Table>
|
||||
</Tables>
|
||||
|
||||
<!-- Partitioner: any IPartitioner may be used, including your own
|
||||
as long as it is on the classpath. Out of the box,
|
||||
Cassandra provides
|
||||
org.apache.cassandra.dht.RandomPartitioner and
|
||||
org.apache.cassandra.dht.OrderPreservingPartitioner.
|
||||
Range queries require using OrderPreservingPartitioner or a subclass.
|
||||
|
||||
Achtung! Changing this parameter requires wiping your data directories,
|
||||
since the partitioner can modify the sstable on-disk format.
|
||||
-->
|
||||
<Partitioner>org.apache.cassandra.dht.RandomPartitioner</Partitioner>
|
||||
|
||||
<!-- If you are using the OrderPreservingPartitioner and you know your key
|
||||
distribution, you can specify the token for this node to use.
|
||||
(Keys are sent to the node with the "closest" token, so distributing
|
||||
your tokens equally along the key distribution space will spread
|
||||
keys evenly across your cluster.) This setting is only checked the
|
||||
first time a node is started.
|
||||
|
||||
This can also be useful with RandomPartitioner to force equal
|
||||
spacing of tokens around the hash space, especially for
|
||||
clusters with a small number of nodes. -->
|
||||
<InitialToken></InitialToken>
|
||||
|
||||
<!-- RackAware: Setting this to true instructs Cassandra to try and place the replicas in
|
||||
a different rack in the same datacenter and one in a different datacenter
|
||||
-->
|
||||
<RackAware>false</RackAware>
|
||||
|
||||
<!-- Number of replicas of the data-->
|
||||
<ReplicationFactor>1</ReplicationFactor>
|
||||
|
||||
<!-- Directories: Specify where Cassandra should store different data on disk
|
||||
Keep the data disks and the CommitLog disks separate for best performance
|
||||
-->
|
||||
<CommitLogDirectory>/var/cassandra/commitlog</CommitLogDirectory>
|
||||
<MetadataDirectory>/var/cassandra/system</MetadataDirectory>
|
||||
<DataFileDirectories>
|
||||
<DataFileDirectory>/var/cassandra/data</DataFileDirectory>
|
||||
</DataFileDirectories>
|
||||
<CalloutLocation>/var/cassandra/callouts</CalloutLocation>
|
||||
<BootstrapFileDirectory>/var/cassandra/bootstrap</BootstrapFileDirectory>
|
||||
<StagingFileDirectory>/var/cassandra/staging</StagingFileDirectory>
|
||||
|
||||
|
||||
<!-- Add names of hosts that are deemed contact points. Cassandra nodes use
|
||||
this list of hosts to find each other and learn the topology of the ring.
|
||||
-->
|
||||
<Seeds>
|
||||
<Seed>127.0.0.1</Seed>
|
||||
</Seeds>
|
||||
|
||||
<!-- Miscellaneous -->
|
||||
<RpcTimeoutInMillis>5000</RpcTimeoutInMillis>
|
||||
<CommitLogRotationThresholdInMB>128</CommitLogRotationThresholdInMB>
|
||||
<CommitLogFastSync>false</CommitLogFastSync>
|
||||
|
||||
<!-- Hosts and Ports -->
|
||||
<ListenAddress>localhost</ListenAddress>
|
||||
<StoragePort>7000</StoragePort>
|
||||
<ControlPort>7001</ControlPort>
|
||||
<ThriftPort>9160</ThriftPort>
|
||||
<HttpPort>7002</HttpPort>
|
||||
|
||||
|
||||
<!--======================================================================-->
|
||||
<!-- Memory, Disk, and Performance -->
|
||||
<!--======================================================================-->
|
||||
|
||||
<!-- Threshold for adding a column index in a row -->
|
||||
<ColumnIndexSizeInKB>256</ColumnIndexSizeInKB>
|
||||
|
||||
<!--
|
||||
The maximum amount of data to store in memory before flushing to
|
||||
disk. Note: There is one memtable per column family, and this threshold
|
||||
is based solely on the amount of data stored, not actual heap memory
|
||||
usage (there is some overhead in indexing the columns).
|
||||
-->
|
||||
<MemtableSizeInMB>32</MemtableSizeInMB>
|
||||
|
||||
<!--
|
||||
The maximum number of columns in millions to store in memory
|
||||
before flushing to disk. This is also a per-memtable setting.
|
||||
Use with MemtableSizeInMB to tune memory usage.
|
||||
-->
|
||||
<MemtableObjectCountInMillions>0.02</MemtableObjectCountInMillions>
|
||||
|
||||
<!-- Time to wait before garbage-collection deletion markers.
|
||||
Set this to a large enough value that you are confident
|
||||
that the deletion marker will be propagated to all replicas
|
||||
by the time this many seconds has elapsed, even in the
|
||||
face of hardware failures. The default value is ten days.
|
||||
-->
|
||||
<GCGraceSeconds>864000</GCGraceSeconds>
|
||||
|
||||
|
||||
<!--======================================================================-->
|
||||
<!-- OPTIONAL -->
|
||||
<!--======================================================================-->
|
||||
<!-- This final section contains configuration information for optional
|
||||
and experimental features in Cassandra that are not yet fully functional.
|
||||
Basic features in Cassandra should work fine without configuring this section.
|
||||
-->
|
||||
<ZookeeperAddress>127.0.0.1</ZookeeperAddress>
|
||||
<MulticastChannel>230.0.0.1</MulticastChannel>
|
||||
<GangliaServers>
|
||||
<GangliaServer>127.0.0.1:12000</GangliaServer>
|
||||
</GangliaServers>
|
||||
</Storage>
|
||||
|
|
|
|||
|
|
@ -16,44 +16,44 @@
|
|||
~ specific language governing permissions and limitations
|
||||
~ under the License.
|
||||
-->
|
||||
<Storage>
|
||||
<ClusterName>Test Cluster</ClusterName>
|
||||
<Partitioner>org.apache.cassandra.dht.OrderPreservingPartitioner</Partitioner>
|
||||
<RackAware>false</RackAware>
|
||||
<MulticastChannel>230.0.0.1</MulticastChannel>
|
||||
<ReplicationFactor>1</ReplicationFactor>
|
||||
<ZookeeperAddress>127.0.0.1</ZookeeperAddress>
|
||||
<RpcTimeoutInMillis>5000</RpcTimeoutInMillis>
|
||||
<ListenAddress>127.0.0.1</ListenAddress>
|
||||
<StoragePort>7000</StoragePort>
|
||||
<ControlPort>7001</ControlPort>
|
||||
<ThriftPort>9160</ThriftPort>
|
||||
<ColumnIndexSizeInKB>4</ColumnIndexSizeInKB>
|
||||
<HttpPort>7002</HttpPort>
|
||||
<MetadataDirectory>build/test/cassandra/system</MetadataDirectory>
|
||||
<CommitLogDirectory>build/test/cassandra/commitlog</CommitLogDirectory>
|
||||
<CommitLogRotationThresholdInMB>128</CommitLogRotationThresholdInMB>
|
||||
<DataFileDirectories>
|
||||
<DataFileDirectory>build/test/cassandra/data</DataFileDirectory>
|
||||
</DataFileDirectories>
|
||||
<CalloutLocation>build/test/cassandra/callouts</CalloutLocation>
|
||||
<BootstrapFileDirectory>build/test/cassandra/bootstrap</BootstrapFileDirectory>
|
||||
<StagingFileDirectory>build/test/cassandra/staging</StagingFileDirectory>
|
||||
<CommitLogFastSync>false</CommitLogFastSync>
|
||||
<MemtableSizeInMB>1</MemtableSizeInMB>
|
||||
<MemtableObjectCountInMillions>0.00002</MemtableObjectCountInMillions> <!-- 20 -->
|
||||
<Tables>
|
||||
<Table Name = "Table1">
|
||||
<ColumnFamily ColumnSort="Name" Name="Standard1"/>
|
||||
<ColumnFamily ColumnSort="Name" Name="Standard2"/>
|
||||
<ColumnFamily ColumnSort="Time" Name="StandardByTime1"/>
|
||||
<ColumnFamily ColumnSort="Time" Name="StandardByTime2"/>
|
||||
<ColumnFamily ColumnType="Super" ColumnSort="Name" Name="Super1"/>
|
||||
<ColumnFamily ColumnType="Super" ColumnSort="Name" Name="Super2"/>
|
||||
</Table>
|
||||
</Tables>
|
||||
<Seeds>
|
||||
<!-- Add names of hosts that are deemed contact points -->
|
||||
<Seed>127.0.0.1</Seed>
|
||||
</Seeds>
|
||||
</Storage>
|
||||
<Storage>
|
||||
<ClusterName>Test Cluster</ClusterName>
|
||||
<Partitioner>org.apache.cassandra.dht.OrderPreservingPartitioner</Partitioner>
|
||||
<RackAware>false</RackAware>
|
||||
<MulticastChannel>230.0.0.1</MulticastChannel>
|
||||
<ReplicationFactor>1</ReplicationFactor>
|
||||
<ZookeeperAddress>127.0.0.1</ZookeeperAddress>
|
||||
<RpcTimeoutInMillis>5000</RpcTimeoutInMillis>
|
||||
<ListenAddress>127.0.0.1</ListenAddress>
|
||||
<StoragePort>7000</StoragePort>
|
||||
<ControlPort>7001</ControlPort>
|
||||
<ThriftPort>9160</ThriftPort>
|
||||
<ColumnIndexSizeInKB>4</ColumnIndexSizeInKB>
|
||||
<HttpPort>7002</HttpPort>
|
||||
<MetadataDirectory>build/test/cassandra/system</MetadataDirectory>
|
||||
<CommitLogDirectory>build/test/cassandra/commitlog</CommitLogDirectory>
|
||||
<CommitLogRotationThresholdInMB>128</CommitLogRotationThresholdInMB>
|
||||
<DataFileDirectories>
|
||||
<DataFileDirectory>build/test/cassandra/data</DataFileDirectory>
|
||||
</DataFileDirectories>
|
||||
<CalloutLocation>build/test/cassandra/callouts</CalloutLocation>
|
||||
<BootstrapFileDirectory>build/test/cassandra/bootstrap</BootstrapFileDirectory>
|
||||
<StagingFileDirectory>build/test/cassandra/staging</StagingFileDirectory>
|
||||
<CommitLogFastSync>false</CommitLogFastSync>
|
||||
<MemtableSizeInMB>1</MemtableSizeInMB>
|
||||
<MemtableObjectCountInMillions>0.00002</MemtableObjectCountInMillions> <!-- 20 -->
|
||||
<Tables>
|
||||
<Table Name = "Table1">
|
||||
<ColumnFamily ColumnSort="Name" Name="Standard1"/>
|
||||
<ColumnFamily ColumnSort="Name" Name="Standard2"/>
|
||||
<ColumnFamily ColumnSort="Time" Name="StandardByTime1"/>
|
||||
<ColumnFamily ColumnSort="Time" Name="StandardByTime2"/>
|
||||
<ColumnFamily ColumnType="Super" ColumnSort="Name" Name="Super1"/>
|
||||
<ColumnFamily ColumnType="Super" ColumnSort="Name" Name="Super2"/>
|
||||
</Table>
|
||||
</Tables>
|
||||
<Seeds>
|
||||
<!-- Add names of hosts that are deemed contact points -->
|
||||
<Seed>127.0.0.1</Seed>
|
||||
</Seeds>
|
||||
</Storage>
|
||||
|
|
|
|||
Loading…
Reference in New Issue