hallelujah-cassandra 0.12.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +111 -0
- data/Gemfile +8 -0
- data/LICENSE +202 -0
- data/Manifest +91 -0
- data/README.md +352 -0
- data/Rakefile +171 -0
- data/bin/cassandra_helper +16 -0
- data/conf/0.6/cassandra.in.sh +47 -0
- data/conf/0.6/log4j.properties +38 -0
- data/conf/0.6/schema.json +57 -0
- data/conf/0.6/storage-conf.xml +352 -0
- data/conf/0.7/cassandra.in.sh +46 -0
- data/conf/0.7/cassandra.yaml +336 -0
- data/conf/0.7/log4j-server.properties +41 -0
- data/conf/0.7/schema.json +57 -0
- data/conf/0.7/schema.txt +45 -0
- data/conf/0.8/cassandra.in.sh +41 -0
- data/conf/0.8/cassandra.yaml +61 -0
- data/conf/0.8/log4j-server.properties +40 -0
- data/conf/0.8/schema.json +69 -0
- data/conf/0.8/schema.txt +51 -0
- data/conf/1.0/cassandra.in.sh +41 -0
- data/conf/1.0/cassandra.yaml +415 -0
- data/conf/1.0/log4j-server.properties +40 -0
- data/conf/1.0/schema.json +69 -0
- data/conf/1.0/schema.txt +51 -0
- data/conf/1.1/cassandra.in.sh +41 -0
- data/conf/1.1/cassandra.yaml +560 -0
- data/conf/1.1/log4j-server.properties +44 -0
- data/conf/1.1/schema.json +69 -0
- data/conf/1.1/schema.txt +51 -0
- data/hallelujah-cassandra.gemspec +43 -0
- data/lib/cassandra.rb +39 -0
- data/lib/cassandra/0.6.rb +7 -0
- data/lib/cassandra/0.6/cassandra.rb +113 -0
- data/lib/cassandra/0.6/columns.rb +78 -0
- data/lib/cassandra/0.6/protocol.rb +90 -0
- data/lib/cassandra/0.7.rb +7 -0
- data/lib/cassandra/0.7/cassandra.rb +2 -0
- data/lib/cassandra/0.7/columns.rb +4 -0
- data/lib/cassandra/0.7/protocol.rb +5 -0
- data/lib/cassandra/0.8.rb +7 -0
- data/lib/cassandra/0.8/cassandra.rb +25 -0
- data/lib/cassandra/0.8/columns.rb +28 -0
- data/lib/cassandra/0.8/protocol.rb +10 -0
- data/lib/cassandra/1.0.rb +7 -0
- data/lib/cassandra/1.0/cassandra.rb +25 -0
- data/lib/cassandra/1.0/columns.rb +28 -0
- data/lib/cassandra/1.0/protocol.rb +12 -0
- data/lib/cassandra/1.1.rb +6 -0
- data/lib/cassandra/1.1/cassandra.rb +25 -0
- data/lib/cassandra/1.1/columns.rb +28 -0
- data/lib/cassandra/1.1/protocol.rb +12 -0
- data/lib/cassandra/array.rb +8 -0
- data/lib/cassandra/cassandra.rb +1070 -0
- data/lib/cassandra/column_family.rb +3 -0
- data/lib/cassandra/columns.rb +147 -0
- data/lib/cassandra/comparable.rb +28 -0
- data/lib/cassandra/composite.rb +118 -0
- data/lib/cassandra/constants.rb +11 -0
- data/lib/cassandra/debug.rb +9 -0
- data/lib/cassandra/helpers.rb +41 -0
- data/lib/cassandra/keyspace.rb +3 -0
- data/lib/cassandra/long.rb +58 -0
- data/lib/cassandra/mock.rb +511 -0
- data/lib/cassandra/ordered_hash.rb +192 -0
- data/lib/cassandra/protocol.rb +120 -0
- data/lib/cassandra/time.rb +11 -0
- data/test/cassandra_client_test.rb +20 -0
- data/test/cassandra_mock_test.rb +122 -0
- data/test/cassandra_test.rb +922 -0
- data/test/comparable_types_test.rb +45 -0
- data/test/composite_type_test.rb +29 -0
- data/test/eventmachine_test.rb +42 -0
- data/test/ordered_hash_test.rb +386 -0
- data/test/test_helper.rb +15 -0
- data/vendor/0.6/gen-rb/cassandra.rb +1481 -0
- data/vendor/0.6/gen-rb/cassandra_constants.rb +12 -0
- data/vendor/0.6/gen-rb/cassandra_types.rb +482 -0
- data/vendor/0.7/gen-rb/cassandra.rb +1936 -0
- data/vendor/0.7/gen-rb/cassandra_constants.rb +12 -0
- data/vendor/0.7/gen-rb/cassandra_types.rb +681 -0
- data/vendor/0.8/gen-rb/cassandra.rb +2215 -0
- data/vendor/0.8/gen-rb/cassandra_constants.rb +12 -0
- data/vendor/0.8/gen-rb/cassandra_types.rb +824 -0
- data/vendor/1.0/gen-rb/cassandra.rb +2215 -0
- data/vendor/1.0/gen-rb/cassandra_constants.rb +12 -0
- data/vendor/1.0/gen-rb/cassandra_types.rb +857 -0
- data/vendor/1.1/gen-rb/cassandra.rb +2571 -0
- data/vendor/1.1/gen-rb/cassandra_constants.rb +12 -0
- data/vendor/1.1/gen-rb/cassandra_types.rb +928 -0
- metadata +260 -0
@@ -0,0 +1,46 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
if [ "x$CASSANDRA_HOME" = "x" ]; then
|
18
|
+
CASSANDRA_HOME=`dirname $0`/..
|
19
|
+
fi
|
20
|
+
|
21
|
+
# The directory where Cassandra's configs live (required)
|
22
|
+
if [ "x$CASSANDRA_CONF" = "x" ]; then
|
23
|
+
CASSANDRA_CONF=$CASSANDRA_HOME/conf
|
24
|
+
fi
|
25
|
+
|
26
|
+
# This can be the path to a jar file, or a directory containing the
|
27
|
+
# compiled classes. NOTE: This isn't needed by the startup script,
|
28
|
+
# it's just used here in constructing the classpath.
|
29
|
+
cassandra_bin=$CASSANDRA_HOME/build/classes
|
30
|
+
#cassandra_bin=$cassandra_home/build/cassandra.jar
|
31
|
+
|
32
|
+
# JAVA_HOME can optionally be set here
|
33
|
+
#JAVA_HOME=/usr/local/jdk6
|
34
|
+
|
35
|
+
# The java classpath (required)
|
36
|
+
CLASSPATH=$CASSANDRA_CONF:$cassandra_bin
|
37
|
+
|
38
|
+
for jar in $CASSANDRA_HOME/lib/*.jar; do
|
39
|
+
CLASSPATH=$CLASSPATH:$jar
|
40
|
+
done
|
41
|
+
|
42
|
+
# Arguments to pass to the JVM
|
43
|
+
JVM_OPTS=" \
|
44
|
+
-ea \
|
45
|
+
-Xms128M \
|
46
|
+
-Xmx1G"
|
@@ -0,0 +1,336 @@
|
|
1
|
+
# Cassandra storage config YAML
|
2
|
+
|
3
|
+
# NOTE:
|
4
|
+
# See http://wiki.apache.org/cassandra/StorageConfiguration for
|
5
|
+
# full explanations of configuration directives
|
6
|
+
# /NOTE
|
7
|
+
|
8
|
+
# The name of the cluster. This is mainly used to prevent machines in
|
9
|
+
# one logical cluster from joining another.
|
10
|
+
cluster_name: 'Test Cluster'
|
11
|
+
|
12
|
+
# You should always specify InitialToken when setting up a production
|
13
|
+
# cluster for the first time, and often when adding capacity later.
|
14
|
+
# The principle is that each node should be given an equal slice of
|
15
|
+
# the token ring; see http://wiki.apache.org/cassandra/Operations
|
16
|
+
# for more details.
|
17
|
+
#
|
18
|
+
# If blank, Cassandra will request a token bisecting the range of
|
19
|
+
# the heaviest-loaded existing node. If there is no load information
|
20
|
+
# available, such as is the case with a new cluster, it will pick
|
21
|
+
# a random token, which will lead to hot spots.
|
22
|
+
initial_token:
|
23
|
+
|
24
|
+
# Set to true to make new [non-seed] nodes automatically migrate data
|
25
|
+
# to themselves from the pre-existing nodes in the cluster. Defaults
|
26
|
+
# to false because you can only bootstrap N machines at a time from
|
27
|
+
# an existing cluster of N, so if you are bringing up a cluster of
|
28
|
+
# 10 machines with 3 seeds you would have to do it in stages. Leaving
|
29
|
+
# this off for the initial start simplifies that.
|
30
|
+
auto_bootstrap: false
|
31
|
+
|
32
|
+
# See http://wiki.apache.org/cassandra/HintedHandoff
|
33
|
+
hinted_handoff_enabled: true
|
34
|
+
# this defines the maximum amount of time a dead host will have hints
|
35
|
+
# generated. After it has been dead this long, hints will be dropped.
|
36
|
+
max_hint_window_in_ms: 3600000 # one hour
|
37
|
+
# Sleep this long after delivering each row or row fragment
|
38
|
+
hinted_handoff_throttle_delay_in_ms: 50
|
39
|
+
|
40
|
+
# authentication backend, implementing IAuthenticator; used to identify users
|
41
|
+
authenticator: org.apache.cassandra.auth.AllowAllAuthenticator
|
42
|
+
|
43
|
+
# authorization backend, implementing IAuthority; used to limit access/provide permissions
|
44
|
+
authority: org.apache.cassandra.auth.AllowAllAuthority
|
45
|
+
|
46
|
+
# The partitioner is responsible for distributing rows (by key) across
|
47
|
+
# nodes in the cluster. Any IPartitioner may be used, including your
|
48
|
+
# own as long as it is on the classpath. Out of the box, Cassandra
|
49
|
+
# provides org.apache.cassandra.dht.RandomPartitioner
|
50
|
+
# org.apache.cassandra.dht.ByteOrderedPartitioner,
|
51
|
+
# org.apache.cassandra.dht.OrderPreservingPartitioner (deprecated),
|
52
|
+
# and org.apache.cassandra.dht.CollatingOrderPreservingPartitioner
|
53
|
+
# (deprecated).
|
54
|
+
#
|
55
|
+
# - RandomPartitioner distributes rows across the cluster evenly by md5.
|
56
|
+
# When in doubt, this is the best option.
|
57
|
+
# - ByteOrderedPartitioner orders rows lexically by key bytes. BOP allows
|
58
|
+
# scanning rows in key order, but the ordering can generate hot spots
|
59
|
+
# for sequential insertion workloads.
|
60
|
+
# - OrderPreservingPartitioner is an obsolete form of BOP, that stores
|
61
|
+
# - keys in a less-efficient format and only works with keys that are
|
62
|
+
# UTF8-encoded Strings.
|
63
|
+
# - CollatingOPP colates according to EN,US rules rather than lexical byte
|
64
|
+
# ordering. Use this as an example if you need custom collation.
|
65
|
+
#
|
66
|
+
# See http://wiki.apache.org/cassandra/Operations for more on
|
67
|
+
# partitioners and token selection.
|
68
|
+
partitioner: org.apache.cassandra.dht.RandomPartitioner
|
69
|
+
|
70
|
+
# directories where Cassandra should store data on disk.
|
71
|
+
data_file_directories:
|
72
|
+
- data/data
|
73
|
+
|
74
|
+
# commit log
|
75
|
+
commitlog_directory: data/commitlog
|
76
|
+
|
77
|
+
# saved caches
|
78
|
+
saved_caches_directory: data/saved_caches
|
79
|
+
|
80
|
+
# Size to allow commitlog to grow to before creating a new segment
|
81
|
+
commitlog_rotation_threshold_in_mb: 128
|
82
|
+
|
83
|
+
# commitlog_sync may be either "periodic" or "batch."
|
84
|
+
# When in batch mode, Cassandra won't ack writes until the commit log
|
85
|
+
# has been fsynced to disk. It will wait up to
|
86
|
+
# CommitLogSyncBatchWindowInMS milliseconds for other writes, before
|
87
|
+
# performing the sync.
|
88
|
+
commitlog_sync: periodic
|
89
|
+
|
90
|
+
# the other option is "periodic" where writes may be acked immediately
|
91
|
+
# and the CommitLog is simply synced every commitlog_sync_period_in_ms
|
92
|
+
# milliseconds.
|
93
|
+
commitlog_sync_period_in_ms: 10000
|
94
|
+
|
95
|
+
# emergency pressure valve: each time heap usage after a full (CMS)
|
96
|
+
# garbage collection is above this fraction of the max, Cassandra will
|
97
|
+
# flush the largest memtables.
|
98
|
+
#
|
99
|
+
# Set to 1.0 to disable. Setting this lower than
|
100
|
+
# CMSInitiatingOccupancyFraction is not likely to be useful.
|
101
|
+
#
|
102
|
+
# RELYING ON THIS AS YOUR PRIMARY TUNING MECHANISM WILL WORK POORLY:
|
103
|
+
# it is most effective under light to moderate load, or read-heavy
|
104
|
+
# workloads; under truly massive write load, it will often be too
|
105
|
+
# little, too late.
|
106
|
+
flush_largest_memtables_at: 0.75
|
107
|
+
|
108
|
+
# emergency pressure valve #2: the first time heap usage after a full
|
109
|
+
# (CMS) garbage collection is above this fraction of the max,
|
110
|
+
# Cassandra will reduce cache maximum _capacity_ to the given fraction
|
111
|
+
# of the current _size_. Should usually be set substantially above
|
112
|
+
# flush_largest_memtables_at, since that will have less long-term
|
113
|
+
# impact on the system.
|
114
|
+
#
|
115
|
+
# Set to 1.0 to disable. Setting this lower than
|
116
|
+
# CMSInitiatingOccupancyFraction is not likely to be useful.
|
117
|
+
reduce_cache_sizes_at: 0.85
|
118
|
+
reduce_cache_capacity_to: 0.6
|
119
|
+
|
120
|
+
# Addresses of hosts that are deemed contact points.
|
121
|
+
# Cassandra nodes use this list of hosts to find each other and learn
|
122
|
+
# the topology of the ring. You must change this if you are running
|
123
|
+
# multiple nodes!
|
124
|
+
seeds:
|
125
|
+
- 127.0.0.1
|
126
|
+
|
127
|
+
# Access mode. mmapped i/o is substantially faster, but only practical on
|
128
|
+
# a 64bit machine (which notably does not include EC2 "small" instances)
|
129
|
+
# or relatively small datasets. "auto", the safe choice, will enable
|
130
|
+
# mmapping on a 64bit JVM. Other values are "mmap", "mmap_index_only"
|
131
|
+
# (which may allow you to get part of the benefits of mmap on a 32bit
|
132
|
+
# machine by mmapping only index files) and "standard".
|
133
|
+
# (The buffer size settings that follow only apply to standard,
|
134
|
+
# non-mmapped i/o.)
|
135
|
+
disk_access_mode: auto
|
136
|
+
|
137
|
+
# For workloads with more data than can fit in memory, Cassandra's
|
138
|
+
# bottleneck will be reads that need to fetch data from
|
139
|
+
# disk. "concurrent_reads" should be set to (16 * number_of_drives) in
|
140
|
+
# order to allow the operations to enqueue low enough in the stack
|
141
|
+
# that the OS and drives can reorder them.
|
142
|
+
#
|
143
|
+
# On the other hand, since writes are almost never IO bound, the ideal
|
144
|
+
# number of "concurrent_writes" is dependent on the number of cores in
|
145
|
+
# your system; (8 * number_of_cores) is a good rule of thumb.
|
146
|
+
concurrent_reads: 32
|
147
|
+
concurrent_writes: 32
|
148
|
+
|
149
|
+
# This sets the amount of memtable flush writer threads. These will
|
150
|
+
# be blocked by disk io, and each one will hold a memtable in memory
|
151
|
+
# while blocked. If you have a large heap and many data directories,
|
152
|
+
# you can increase this value for better flush performance.
|
153
|
+
# By default this will be set to the amount of data directories defined.
|
154
|
+
#memtable_flush_writers: 1
|
155
|
+
|
156
|
+
# Buffer size to use when performing contiguous column slices.
|
157
|
+
# Increase this to the size of the column slices you typically perform
|
158
|
+
sliced_buffer_size_in_kb: 64
|
159
|
+
|
160
|
+
# TCP port, for commands and data
|
161
|
+
storage_port: 7000
|
162
|
+
|
163
|
+
# Address to bind to and tell other Cassandra nodes to connect to. You
|
164
|
+
# _must_ change this if you want multiple nodes to be able to
|
165
|
+
# communicate!
|
166
|
+
#
|
167
|
+
# Leaving it blank leaves it up to InetAddress.getLocalHost(). This
|
168
|
+
# will always do the Right Thing *if* the node is properly configured
|
169
|
+
# (hostname, name resolution, etc), and the Right Thing is to use the
|
170
|
+
# address associated with the hostname (it might not be).
|
171
|
+
#
|
172
|
+
# Setting this to 0.0.0.0 is always wrong.
|
173
|
+
listen_address: localhost
|
174
|
+
|
175
|
+
# The address to bind the Thrift RPC service to -- clients connect
|
176
|
+
# here. Unlike ListenAddress above, you *can* specify 0.0.0.0 here if
|
177
|
+
# you want Thrift to listen on all interfaces.
|
178
|
+
#
|
179
|
+
# Leaving this blank has the same effect it does for ListenAddress,
|
180
|
+
# (i.e. it will be based on the configured hostname of the node).
|
181
|
+
rpc_address: localhost
|
182
|
+
# port for Thrift to listen for clients on
|
183
|
+
rpc_port: 9160
|
184
|
+
|
185
|
+
# enable or disable keepalive on rpc connections
|
186
|
+
rpc_keepalive: true
|
187
|
+
|
188
|
+
# Cassandra uses thread-per-client for client RPC. This can
|
189
|
+
# be expensive in memory used for thread stack for a large
|
190
|
+
# enough number of clients. (Hence, connection pooling is
|
191
|
+
# very, very strongly recommended.)
|
192
|
+
#
|
193
|
+
# Uncomment rpc_min|max|thread to set request pool size.
|
194
|
+
# You would primarily set max as a safeguard against misbehaved
|
195
|
+
# clients; if you do hit the max, Cassandra will block until
|
196
|
+
# one disconnects before accepting more. The defaults are
|
197
|
+
# min of 16 and max unlimited.
|
198
|
+
#
|
199
|
+
# rpc_min_threads: 16
|
200
|
+
# rpc_max_threads: 2048
|
201
|
+
|
202
|
+
# uncomment to set socket buffer sizes on rpc connections
|
203
|
+
# rpc_send_buff_size_in_bytes:
|
204
|
+
# rpc_recv_buff_size_in_bytes:
|
205
|
+
|
206
|
+
# Frame size for thrift (maximum field length).
|
207
|
+
# 0 disables TFramedTransport in favor of TSocket. This option
|
208
|
+
# is deprecated; we strongly recommend using Framed mode.
|
209
|
+
thrift_framed_transport_size_in_mb: 15
|
210
|
+
|
211
|
+
# The max length of a thrift message, including all fields and
|
212
|
+
# internal thrift overhead.
|
213
|
+
thrift_max_message_length_in_mb: 16
|
214
|
+
|
215
|
+
# Set to true to have Cassandra create a hard link to each sstable
|
216
|
+
# flushed or streamed locally in a backups/ subdirectory of the
|
217
|
+
# Keyspace data. Removing these links is the operator's
|
218
|
+
# responsibility.
|
219
|
+
incremental_backups: false
|
220
|
+
|
221
|
+
# Whether or not to take a snapshot before each compaction. Be
|
222
|
+
# careful using this option, since Cassandra won't clean up the
|
223
|
+
# snapshots for you. Mostly useful if you're paranoid when there
|
224
|
+
# is a data format change.
|
225
|
+
snapshot_before_compaction: false
|
226
|
+
|
227
|
+
# change this to increase the compaction thread's priority. In java, 1 is the
|
228
|
+
# lowest priority and that is our default.
|
229
|
+
# compaction_thread_priority: 1
|
230
|
+
|
231
|
+
# Add column indexes to a row after its contents reach this size.
|
232
|
+
# Increase if your column values are large, or if you have a very large
|
233
|
+
# number of columns. The competing causes are, Cassandra has to
|
234
|
+
# deserialize this much of the row to read a single column, so you want
|
235
|
+
# it to be small - at least if you do many partial-row reads - but all
|
236
|
+
# the index data is read for each access, so you don't want to generate
|
237
|
+
# that wastefully either.
|
238
|
+
column_index_size_in_kb: 64
|
239
|
+
|
240
|
+
# Size limit for rows being compacted in memory. Larger rows will spill
|
241
|
+
# over to disk and use a slower two-pass compaction process. A message
|
242
|
+
# will be logged specifying the row key.
|
243
|
+
in_memory_compaction_limit_in_mb: 64
|
244
|
+
|
245
|
+
# Track cached row keys during compaction, and re-cache their new
|
246
|
+
# positions in the compacted sstable. Disable if you use really large
|
247
|
+
# key caches.
|
248
|
+
compaction_preheat_key_cache: true
|
249
|
+
|
250
|
+
# Time to wait for a reply from other nodes before failing the command
|
251
|
+
rpc_timeout_in_ms: 10000
|
252
|
+
|
253
|
+
# phi value that must be reached for a host to be marked down.
|
254
|
+
# most users should never need to adjust this.
|
255
|
+
# phi_convict_threshold: 8
|
256
|
+
|
257
|
+
# endpoint_snitch -- Set this to a class that implements
|
258
|
+
# IEndpointSnitch, which will let Cassandra know enough
|
259
|
+
# about your network topology to route requests efficiently.
|
260
|
+
# Out of the box, Cassandra provides
|
261
|
+
# - org.apache.cassandra.locator.SimpleSnitch:
|
262
|
+
# Treats Strategy order as proximity. This improves cache locality
|
263
|
+
# when disabling read repair, which can further improve throughput.
|
264
|
+
# - org.apache.cassandra.locator.RackInferringSnitch:
|
265
|
+
# Proximity is determined by rack and data center, which are
|
266
|
+
# assumed to correspond to the 3rd and 2nd octet of each node's
|
267
|
+
# IP address, respectively
|
268
|
+
# org.apache.cassandra.locator.PropertyFileSnitch:
|
269
|
+
# - Proximity is determined by rack and data center, which are
|
270
|
+
# explicitly configured in cassandra-topology.properties.
|
271
|
+
endpoint_snitch: org.apache.cassandra.locator.SimpleSnitch
|
272
|
+
|
273
|
+
# dynamic_snitch -- This boolean controls whether the above snitch is
|
274
|
+
# wrapped with a dynamic snitch, which will monitor read latencies
|
275
|
+
# and avoid reading from hosts that have slowed (due to compaction,
|
276
|
+
# for instance)
|
277
|
+
dynamic_snitch: true
|
278
|
+
# controls how often to perform the more expensive part of host score
|
279
|
+
# calculation
|
280
|
+
dynamic_snitch_update_interval_in_ms: 100
|
281
|
+
# controls how often to reset all host scores, allowing a bad host to
|
282
|
+
# possibly recover
|
283
|
+
dynamic_snitch_reset_interval_in_ms: 600000
|
284
|
+
# if set greater than zero and read_repair_chance is < 1.0, this will allow
|
285
|
+
# 'pinning' of replicas to hosts in order to increase cache capacity.
|
286
|
+
# The badness threshold will control how much worse the pinned host has to be
|
287
|
+
# before the dynamic snitch will prefer other replicas over it. This is
|
288
|
+
# expressed as a double which represents a percentage. Thus, a value of
|
289
|
+
# 0.2 means Cassandra would continue to prefer the static snitch values
|
290
|
+
# until the pinned host was 20% worse than the fastest.
|
291
|
+
dynamic_snitch_badness_threshold: 0.0
|
292
|
+
|
293
|
+
# request_scheduler -- Set this to a class that implements
|
294
|
+
# RequestScheduler, which will schedule incoming client requests
|
295
|
+
# according to the specific policy. This is useful for multi-tenancy
|
296
|
+
# with a single Cassandra cluster.
|
297
|
+
# NOTE: This is specifically for requests from the client and does
|
298
|
+
# not affect inter node communication.
|
299
|
+
# org.apache.cassandra.scheduler.NoScheduler - No scheduling takes place
|
300
|
+
# org.apache.cassandra.scheduler.RoundRobinScheduler - Round robin of
|
301
|
+
# client requests to a node with a separate queue for each
|
302
|
+
# request_scheduler_id. The scheduler is further customized by
|
303
|
+
# request_scheduler_options as described below.
|
304
|
+
request_scheduler: org.apache.cassandra.scheduler.NoScheduler
|
305
|
+
|
306
|
+
# Scheduler Options vary based on the type of scheduler
|
307
|
+
# NoScheduler - Has no options
|
308
|
+
# RoundRobin
|
309
|
+
# - throttle_limit -- The throttle_limit is the number of in-flight
|
310
|
+
# requests per client. Requests beyond
|
311
|
+
# that limit are queued up until
|
312
|
+
# running requests can complete.
|
313
|
+
# The value of 80 here is twice the number of
|
314
|
+
# concurrent_reads + concurrent_writes.
|
315
|
+
# - default_weight -- default_weight is optional and allows for
|
316
|
+
# overriding the default which is 1.
|
317
|
+
# - weights -- Weights are optional and will default to 1 or the
|
318
|
+
# overridden default_weight. The weight translates into how
|
319
|
+
# many requests are handled during each turn of the
|
320
|
+
# RoundRobin, based on the scheduler id.
|
321
|
+
#
|
322
|
+
# request_scheduler_options:
|
323
|
+
# throttle_limit: 80
|
324
|
+
# default_weight: 5
|
325
|
+
# weights:
|
326
|
+
# Keyspace1: 1
|
327
|
+
# Keyspace2: 5
|
328
|
+
|
329
|
+
# request_scheduler_id -- An identifer based on which to perform
|
330
|
+
# the request scheduling. Currently the only valid option is keyspace.
|
331
|
+
# request_scheduler_id: keyspace
|
332
|
+
|
333
|
+
# The Index Interval determines how large the sampling of row keys
|
334
|
+
# is for a given SSTable. The larger the sampling, the more effective
|
335
|
+
# the index is at the cost of space.
|
336
|
+
index_interval: 128
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# for production, you should probably set pattern to %c instead of %l.
|
18
|
+
# (%l is slower.)
|
19
|
+
|
20
|
+
# output messages into a rolling log file as well as stdout
|
21
|
+
log4j.rootLogger=DEBUG,stdout,R
|
22
|
+
|
23
|
+
# stdout
|
24
|
+
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
25
|
+
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
26
|
+
log4j.appender.stdout.layout.ConversionPattern=%5p %d{HH:mm:ss,SSS} %m%n
|
27
|
+
|
28
|
+
# rolling log file
|
29
|
+
log4j.appender.R=org.apache.log4j.RollingFileAppender
|
30
|
+
log4j.appender.R.maxFileSize=20MB
|
31
|
+
log4j.appender.R.maxBackupIndex=50
|
32
|
+
log4j.appender.R.layout=org.apache.log4j.PatternLayout
|
33
|
+
log4j.appender.R.layout.ConversionPattern=%5p [%t] %d{ISO8601} %F (line %L) %m%n
|
34
|
+
# Edit the next line to point to your logs directory
|
35
|
+
log4j.appender.R.File=data/logs/system.log
|
36
|
+
|
37
|
+
# Application logging options
|
38
|
+
#log4j.logger.org.apache.cassandra=DEBUG
|
39
|
+
#log4j.logger.org.apache.cassandra.db=DEBUG
|
40
|
+
#log4j.logger.org.apache.cassandra.service.StorageProxy=DEBUG
|
41
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
{"Twitter":{
|
2
|
+
"Users":{
|
3
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
4
|
+
"column_type":"Standard"},
|
5
|
+
"UserAudits":{
|
6
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
7
|
+
"column_type":"Standard"},
|
8
|
+
"UserRelationships":{
|
9
|
+
"subcomparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
10
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
11
|
+
"column_type":"Super"},
|
12
|
+
"Usernames":{
|
13
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
14
|
+
"column_type":"Standard"},
|
15
|
+
"Statuses":{
|
16
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
17
|
+
"column_type":"Standard"},
|
18
|
+
"StatusAudits":{
|
19
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
20
|
+
"column_type":"Standard"},
|
21
|
+
"StatusRelationships":{
|
22
|
+
"subcomparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
23
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
24
|
+
"column_type":"Super"},
|
25
|
+
"Indexes":{
|
26
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
27
|
+
"column_type":"Super"},
|
28
|
+
"TimelinishThings":{
|
29
|
+
"comparator_type":"org.apache.cassandra.db.marshal.BytesType",
|
30
|
+
"column_type":"Standard"}
|
31
|
+
},
|
32
|
+
"Multiblog":{
|
33
|
+
"Blogs":{
|
34
|
+
"comparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
35
|
+
"column_type":"Standard"},
|
36
|
+
"Comments":{
|
37
|
+
"comparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
38
|
+
"column_type":"Standard"}
|
39
|
+
},
|
40
|
+
"MultiblogLong":{
|
41
|
+
"Blogs":{
|
42
|
+
"comparator_type":"org.apache.cassandra.db.marshal.LongType",
|
43
|
+
"column_type":"Standard"},
|
44
|
+
"Comments":{
|
45
|
+
"comparator_type":"org.apache.cassandra.db.marshal.LongType",
|
46
|
+
"column_type":"Standard"}
|
47
|
+
},
|
48
|
+
"TypeConversions":{
|
49
|
+
"UUIDColumnConversion":{
|
50
|
+
"comparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
51
|
+
"column_type":"Standard"},
|
52
|
+
"SuperUUID":{
|
53
|
+
"subcomparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
54
|
+
"comparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
55
|
+
"column_type":"Super"}
|
56
|
+
}
|
57
|
+
}
|