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,44 @@
|
|
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=INFO,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
|
+
|
42
|
+
# Adding this to avoid thrift logging disconnect errors.
|
43
|
+
log4j.logger.org.apache.thrift.server.TNonblockingServer=ERROR
|
44
|
+
|
@@ -0,0 +1,69 @@
|
|
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
|
+
"UserCounters":{
|
9
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
10
|
+
"column_type":"Standard",
|
11
|
+
"default_validation_class":"CounterColumnType"},
|
12
|
+
"UserCounterAggregates":{
|
13
|
+
"subcomparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
14
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
15
|
+
"column_type":"Super",
|
16
|
+
"default_validation_class":"CounterColumnType"},
|
17
|
+
"UserRelationships":{
|
18
|
+
"subcomparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
19
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
20
|
+
"column_type":"Super"},
|
21
|
+
"Usernames":{
|
22
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
23
|
+
"column_type":"Standard"},
|
24
|
+
"Statuses":{
|
25
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
26
|
+
"column_type":"Standard"},
|
27
|
+
"StatusAudits":{
|
28
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
29
|
+
"column_type":"Standard"},
|
30
|
+
"StatusRelationships":{
|
31
|
+
"subcomparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
32
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
33
|
+
"column_type":"Super"},
|
34
|
+
"Indexes":{
|
35
|
+
"comparator_type":"org.apache.cassandra.db.marshal.UTF8Type",
|
36
|
+
"column_type":"Super"},
|
37
|
+
"TimelinishThings":{
|
38
|
+
"comparator_type":"org.apache.cassandra.db.marshal.BytesType",
|
39
|
+
"column_type":"Standard"}
|
40
|
+
},
|
41
|
+
"Multiblog":{
|
42
|
+
"Blogs":{
|
43
|
+
"comparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
44
|
+
"column_type":"Standard"},
|
45
|
+
"Comments":{
|
46
|
+
"comparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
47
|
+
"column_type":"Standard"}
|
48
|
+
},
|
49
|
+
"MultiblogLong":{
|
50
|
+
"Blogs":{
|
51
|
+
"comparator_type":"org.apache.cassandra.db.marshal.LongType",
|
52
|
+
"column_type":"Standard"},
|
53
|
+
"Comments":{
|
54
|
+
"comparator_type":"org.apache.cassandra.db.marshal.LongType",
|
55
|
+
"column_type":"Standard"}
|
56
|
+
},
|
57
|
+
"TypeConversions":{
|
58
|
+
"UUIDColumnConversion":{
|
59
|
+
"comparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
60
|
+
"column_type":"Standard"},
|
61
|
+
"SuperUUID":{
|
62
|
+
"subcomparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
63
|
+
"comparator_type":"org.apache.cassandra.db.marshal.TimeUUIDType",
|
64
|
+
"column_type":"Super"},
|
65
|
+
"CompositeColumnConversion":{
|
66
|
+
"comparator_type":"org.apache.cassandra.db.marshal.CompositeType(org.apache.cassandra.db.marshal.IntegerType,org.apache.cassandra.db.marshal.UTF8Type)",
|
67
|
+
"column_type":"Standard"}
|
68
|
+
}
|
69
|
+
}
|
data/conf/1.1/schema.txt
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
create keyspace Twitter with
|
2
|
+
placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy' AND
|
3
|
+
strategy_options = {replication_factor:1};
|
4
|
+
use Twitter;
|
5
|
+
create column family Users with comparator = 'UTF8Type';
|
6
|
+
create column family UserAudits with comparator = 'UTF8Type';
|
7
|
+
create column family UserCounters with comparator = 'UTF8Type' and
|
8
|
+
default_validation_class = CounterColumnType;
|
9
|
+
create column family UserCounterAggregates with column_type = 'Super'
|
10
|
+
and comparator = 'UTF8Type' and
|
11
|
+
subcomparator = 'UTF8Type' and
|
12
|
+
default_validation_class = CounterColumnType;
|
13
|
+
create column family UserRelationships with
|
14
|
+
comparator = 'UTF8Type' and
|
15
|
+
column_type = 'Super' and
|
16
|
+
subcomparator = 'TimeUUIDType';
|
17
|
+
create column family Usernames with comparator = 'UTF8Type';
|
18
|
+
create column family Statuses with comparator = 'UTF8Type';
|
19
|
+
create column family StatusAudits with comparator = 'UTF8Type';
|
20
|
+
create column family StatusRelationships with
|
21
|
+
comparator = 'UTF8Type' and
|
22
|
+
column_type = 'Super' and
|
23
|
+
subcomparator = 'TimeUUIDType';
|
24
|
+
create column family Indexes with
|
25
|
+
comparator = 'UTF8Type' and
|
26
|
+
column_type = 'Super';
|
27
|
+
create column family TimelinishThings with
|
28
|
+
comparator = 'BytesType';
|
29
|
+
|
30
|
+
create keyspace Multiblog with
|
31
|
+
placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy' AND
|
32
|
+
strategy_options = {replication_factor:1};
|
33
|
+
use Multiblog;
|
34
|
+
create column family Blogs with comparator = 'TimeUUIDType';
|
35
|
+
create column family Comments with comparator = 'TimeUUIDType';
|
36
|
+
|
37
|
+
|
38
|
+
create keyspace MultiblogLong with
|
39
|
+
placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy' AND
|
40
|
+
strategy_options = {replication_factor:1};
|
41
|
+
use MultiblogLong;
|
42
|
+
create column family Blogs with comparator = 'LongType';
|
43
|
+
create column family Comments with comparator = 'LongType';
|
44
|
+
|
45
|
+
create keyspace TypeConversions with
|
46
|
+
placement_strategy = 'org.apache.cassandra.locator.SimpleStrategy' AND
|
47
|
+
strategy_options = {replication_factor:1};
|
48
|
+
use TypeConversions;
|
49
|
+
create column family UUIDColumnConversion with comparator = TimeUUIDType;
|
50
|
+
create column family SuperUUID with comparator = TimeUUIDType and column_type = Super;
|
51
|
+
create column family CompositeColumnConversion with comparator = 'CompositeType(IntegerType, UTF8Type)';
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = "hallelujah-cassandra"
|
5
|
+
s.version = "0.12.3"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0.8") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Evan Weaver, Ryan King"]
|
9
|
+
s.date = "2012-07-15"
|
10
|
+
s.description = "A Ruby client for the Cassandra distributed database."
|
11
|
+
s.email = ""
|
12
|
+
s.executables = ["cassandra_helper"]
|
13
|
+
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.md", "bin/cassandra_helper", "lib/cassandra.rb", "lib/cassandra/0.6.rb", "lib/cassandra/0.6/cassandra.rb", "lib/cassandra/0.6/columns.rb", "lib/cassandra/0.6/protocol.rb", "lib/cassandra/0.7.rb", "lib/cassandra/0.7/cassandra.rb", "lib/cassandra/0.7/columns.rb", "lib/cassandra/0.7/protocol.rb", "lib/cassandra/0.8.rb", "lib/cassandra/0.8/cassandra.rb", "lib/cassandra/0.8/columns.rb", "lib/cassandra/0.8/protocol.rb", "lib/cassandra/1.0.rb", "lib/cassandra/1.0/cassandra.rb", "lib/cassandra/1.0/columns.rb", "lib/cassandra/1.0/protocol.rb", "lib/cassandra/1.1.rb", "lib/cassandra/1.1/cassandra.rb", "lib/cassandra/1.1/columns.rb", "lib/cassandra/1.1/protocol.rb", "lib/cassandra/array.rb", "lib/cassandra/cassandra.rb", "lib/cassandra/column_family.rb", "lib/cassandra/columns.rb", "lib/cassandra/comparable.rb", "lib/cassandra/composite.rb", "lib/cassandra/constants.rb", "lib/cassandra/debug.rb", "lib/cassandra/helpers.rb", "lib/cassandra/keyspace.rb", "lib/cassandra/long.rb", "lib/cassandra/mock.rb", "lib/cassandra/ordered_hash.rb", "lib/cassandra/protocol.rb", "lib/cassandra/time.rb"]
|
14
|
+
s.files = ["CHANGELOG", "Gemfile", "LICENSE", "Manifest", "README.md", "Rakefile", "bin/cassandra_helper", "conf/0.6/cassandra.in.sh", "conf/0.6/log4j.properties", "conf/0.6/schema.json", "conf/0.6/storage-conf.xml", "conf/0.7/cassandra.in.sh", "conf/0.7/cassandra.yaml", "conf/0.7/log4j-server.properties", "conf/0.7/schema.json", "conf/0.7/schema.txt", "conf/0.8/cassandra.in.sh", "conf/0.8/cassandra.yaml", "conf/0.8/log4j-server.properties", "conf/0.8/schema.json", "conf/0.8/schema.txt", "conf/1.0/cassandra.in.sh", "conf/1.0/cassandra.yaml", "conf/1.0/log4j-server.properties", "conf/1.0/schema.json", "conf/1.0/schema.txt", "conf/1.1/cassandra.in.sh", "conf/1.1/cassandra.yaml", "conf/1.1/log4j-server.properties", "conf/1.1/schema.json", "conf/1.1/schema.txt", "hallelujah-cassandra.gemspec", "lib/cassandra.rb", "lib/cassandra/0.6.rb", "lib/cassandra/0.6/cassandra.rb", "lib/cassandra/0.6/columns.rb", "lib/cassandra/0.6/protocol.rb", "lib/cassandra/0.7.rb", "lib/cassandra/0.7/cassandra.rb", "lib/cassandra/0.7/columns.rb", "lib/cassandra/0.7/protocol.rb", "lib/cassandra/0.8.rb", "lib/cassandra/0.8/cassandra.rb", "lib/cassandra/0.8/columns.rb", "lib/cassandra/0.8/protocol.rb", "lib/cassandra/1.0.rb", "lib/cassandra/1.0/cassandra.rb", "lib/cassandra/1.0/columns.rb", "lib/cassandra/1.0/protocol.rb", "lib/cassandra/1.1.rb", "lib/cassandra/1.1/cassandra.rb", "lib/cassandra/1.1/columns.rb", "lib/cassandra/1.1/protocol.rb", "lib/cassandra/array.rb", "lib/cassandra/cassandra.rb", "lib/cassandra/column_family.rb", "lib/cassandra/columns.rb", "lib/cassandra/comparable.rb", "lib/cassandra/composite.rb", "lib/cassandra/constants.rb", "lib/cassandra/debug.rb", "lib/cassandra/helpers.rb", "lib/cassandra/keyspace.rb", "lib/cassandra/long.rb", "lib/cassandra/mock.rb", "lib/cassandra/ordered_hash.rb", "lib/cassandra/protocol.rb", "lib/cassandra/time.rb", "test/cassandra_client_test.rb", "test/cassandra_mock_test.rb", "test/cassandra_test.rb", "test/comparable_types_test.rb", "test/composite_type_test.rb", "test/eventmachine_test.rb", "test/ordered_hash_test.rb", "test/test_helper.rb", "vendor/0.6/gen-rb/cassandra.rb", "vendor/0.6/gen-rb/cassandra_constants.rb", "vendor/0.6/gen-rb/cassandra_types.rb", "vendor/0.7/gen-rb/cassandra.rb", "vendor/0.7/gen-rb/cassandra_constants.rb", "vendor/0.7/gen-rb/cassandra_types.rb", "vendor/0.8/gen-rb/cassandra.rb", "vendor/0.8/gen-rb/cassandra_constants.rb", "vendor/0.8/gen-rb/cassandra_types.rb", "vendor/1.0/gen-rb/cassandra.rb", "vendor/1.0/gen-rb/cassandra_constants.rb", "vendor/1.0/gen-rb/cassandra_types.rb", "vendor/1.1/gen-rb/cassandra.rb", "vendor/1.1/gen-rb/cassandra_constants.rb", "vendor/1.1/gen-rb/cassandra_types.rb"]
|
15
|
+
s.homepage = "http://fauna.github.com/fauna/hallelujah-cassandra/"
|
16
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Hallelujah-cassandra", "--main", "README.md"]
|
17
|
+
s.require_paths = ["lib"]
|
18
|
+
s.rubyforge_project = "fauna"
|
19
|
+
s.rubygems_version = "1.8.24"
|
20
|
+
s.summary = "A Ruby client for the Cassandra distributed database."
|
21
|
+
s.test_files = ["test/cassandra_client_test.rb", "test/cassandra_mock_test.rb", "test/cassandra_test.rb", "test/comparable_types_test.rb", "test/composite_type_test.rb", "test/eventmachine_test.rb", "test/ordered_hash_test.rb", "test/test_helper.rb"]
|
22
|
+
|
23
|
+
if s.respond_to? :specification_version then
|
24
|
+
s.specification_version = 3
|
25
|
+
|
26
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
27
|
+
s.add_runtime_dependency(%q<thrift_client>, ["< 0.9", ">= 0.7.0"])
|
28
|
+
s.add_runtime_dependency(%q<json>, [">= 0"])
|
29
|
+
s.add_runtime_dependency(%q<rake>, [">= 0"])
|
30
|
+
s.add_runtime_dependency(%q<simple_uuid>, ["~> 0.2.0"])
|
31
|
+
else
|
32
|
+
s.add_dependency(%q<thrift_client>, ["< 0.9", ">= 0.7.0"])
|
33
|
+
s.add_dependency(%q<json>, [">= 0"])
|
34
|
+
s.add_dependency(%q<rake>, [">= 0"])
|
35
|
+
s.add_dependency(%q<simple_uuid>, ["~> 0.2.0"])
|
36
|
+
end
|
37
|
+
else
|
38
|
+
s.add_dependency(%q<thrift_client>, ["< 0.9", ">= 0.7.0"])
|
39
|
+
s.add_dependency(%q<json>, [">= 0"])
|
40
|
+
s.add_dependency(%q<rake>, [">= 0"])
|
41
|
+
s.add_dependency(%q<simple_uuid>, ["~> 0.2.0"])
|
42
|
+
end
|
43
|
+
end
|
data/lib/cassandra.rb
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
gem 'thrift_client', '>= 0.7.0', '< 0.9'
|
3
|
+
require 'thrift_client'
|
4
|
+
gem 'simple_uuid' , '~> 0.2.0'
|
5
|
+
require 'simple_uuid'
|
6
|
+
|
7
|
+
require 'json' unless defined?(JSON)
|
8
|
+
|
9
|
+
here = File.expand_path(File.dirname(__FILE__))
|
10
|
+
|
11
|
+
class Cassandra ; end
|
12
|
+
unless Cassandra.respond_to?(:VERSION)
|
13
|
+
require "#{here}/cassandra/0.8"
|
14
|
+
end
|
15
|
+
|
16
|
+
$LOAD_PATH << "#{here}/../vendor/#{Cassandra.VERSION}/gen-rb"
|
17
|
+
require "#{here}/../vendor/#{Cassandra.VERSION}/gen-rb/cassandra"
|
18
|
+
|
19
|
+
$LOAD_PATH << "#{here}"
|
20
|
+
|
21
|
+
require 'cassandra/helpers'
|
22
|
+
require 'cassandra/array'
|
23
|
+
require 'cassandra/time'
|
24
|
+
require 'cassandra/comparable'
|
25
|
+
require 'cassandra/long'
|
26
|
+
require 'cassandra/composite'
|
27
|
+
require 'cassandra/ordered_hash'
|
28
|
+
require 'cassandra/columns'
|
29
|
+
require 'cassandra/protocol'
|
30
|
+
require "cassandra/#{Cassandra.VERSION}/columns"
|
31
|
+
require "cassandra/#{Cassandra.VERSION}/protocol"
|
32
|
+
require "cassandra/cassandra"
|
33
|
+
require "cassandra/#{Cassandra.VERSION}/cassandra"
|
34
|
+
unless Cassandra.VERSION.eql?("0.6")
|
35
|
+
require "cassandra/column_family"
|
36
|
+
require "cassandra/keyspace"
|
37
|
+
end
|
38
|
+
require 'cassandra/constants'
|
39
|
+
require 'cassandra/debug' if ENV['DEBUG']
|
@@ -0,0 +1,113 @@
|
|
1
|
+
class Cassandra
|
2
|
+
def self.DEFAULT_TRANSPORT_WRAPPER
|
3
|
+
Thrift::BufferedTransport
|
4
|
+
end
|
5
|
+
|
6
|
+
##
|
7
|
+
# Issues a login attempt using the username and password specified.
|
8
|
+
#
|
9
|
+
# * username
|
10
|
+
# * password
|
11
|
+
#
|
12
|
+
def login!(username, password)
|
13
|
+
@auth_request = CassandraThrift::AuthenticationRequest.new
|
14
|
+
@auth_request.credentials = {'username' => username, 'password' => password}
|
15
|
+
client.login(@keyspace, @auth_request)
|
16
|
+
end
|
17
|
+
|
18
|
+
def inspect
|
19
|
+
"#<Cassandra:#{object_id}, @keyspace=#{keyspace.inspect}, @schema={#{
|
20
|
+
schema(false).map {|name, hash| ":#{name} => #{hash['type'].inspect}"}.join(', ')
|
21
|
+
}}, @servers=#{servers.inspect}>"
|
22
|
+
end
|
23
|
+
|
24
|
+
##
|
25
|
+
# Returns an array of available keyspaces.
|
26
|
+
#
|
27
|
+
def keyspaces
|
28
|
+
@keyspaces ||= client.describe_keyspaces()
|
29
|
+
end
|
30
|
+
|
31
|
+
##
|
32
|
+
# Remove all rows in the column family you request.
|
33
|
+
#
|
34
|
+
# * column_family
|
35
|
+
# * options
|
36
|
+
# * consitency
|
37
|
+
# * timestamp
|
38
|
+
#
|
39
|
+
def clear_column_family!(column_family, options = {})
|
40
|
+
each_key(column_family) do |key|
|
41
|
+
remove(column_family, key, options)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
alias truncate! clear_column_family!
|
45
|
+
|
46
|
+
# Remove all rows in the keyspace. Supports options <tt>:consistency</tt> and
|
47
|
+
# <tt>:timestamp</tt>.
|
48
|
+
# FIXME May not currently delete all records without multiple calls. Waiting
|
49
|
+
# for ranged remove support in Cassandra.
|
50
|
+
def clear_keyspace!(options = {})
|
51
|
+
schema.keys.each { |column_family| clear_column_family!(column_family, options) }
|
52
|
+
end
|
53
|
+
|
54
|
+
# Open a batch operation and yield self. Inserts and deletes will be queued
|
55
|
+
# until the block closes, and then sent atomically to the server. Supports
|
56
|
+
# the <tt>:consistency</tt> option, which overrides the consistency set in
|
57
|
+
# the individual commands.
|
58
|
+
def batch(options = {})
|
59
|
+
_, _, _, options =
|
60
|
+
extract_and_validate_params(schema.keys.first, "", [options], WRITE_DEFAULTS)
|
61
|
+
|
62
|
+
@batch = []
|
63
|
+
yield(self)
|
64
|
+
compacted_map,seen_clevels = compact_mutations!
|
65
|
+
clevel = if options[:consistency] != nil # Override any clevel from individual mutations if
|
66
|
+
options[:consistency]
|
67
|
+
elsif seen_clevels.length > 1 # Cannot choose which CLevel to use if there are several ones
|
68
|
+
raise "Multiple consistency levels used in the batch, and no override...cannot pick one"
|
69
|
+
else # if no consistency override has been provided but all the clevels in the batch are the same: use that one
|
70
|
+
seen_clevels.first
|
71
|
+
end
|
72
|
+
|
73
|
+
_mutate(compacted_map,clevel)
|
74
|
+
ensure
|
75
|
+
@batch = nil
|
76
|
+
end
|
77
|
+
|
78
|
+
protected
|
79
|
+
|
80
|
+
def schema(load=true)
|
81
|
+
if !load && !@schema
|
82
|
+
[]
|
83
|
+
else
|
84
|
+
@schema ||= client.describe_keyspace(@keyspace)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
def client
|
89
|
+
reconnect! if @client.nil?
|
90
|
+
@client
|
91
|
+
end
|
92
|
+
|
93
|
+
def reconnect!
|
94
|
+
@servers = all_nodes
|
95
|
+
@client = new_client
|
96
|
+
end
|
97
|
+
|
98
|
+
def all_nodes
|
99
|
+
if @auto_discover_nodes
|
100
|
+
temp_client = new_client
|
101
|
+
begin
|
102
|
+
ips = ::JSON.parse(temp_client.get_string_property('token map')).values
|
103
|
+
port = @servers.first.split(':').last
|
104
|
+
ips.map{|ip| "#{ip}:#{port}" }
|
105
|
+
ensure
|
106
|
+
temp_client.disconnect!
|
107
|
+
end
|
108
|
+
else
|
109
|
+
@servers
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
end
|
@@ -0,0 +1,78 @@
|
|
1
|
+
class Cassandra
|
2
|
+
# A bunch of crap, mostly related to introspecting on column types
|
3
|
+
module Columns #:nodoc:
|
4
|
+
private
|
5
|
+
|
6
|
+
def is_super(column_family)
|
7
|
+
@is_super[column_family] ||= column_family_property(column_family, 'Type') == "Super"
|
8
|
+
end
|
9
|
+
|
10
|
+
def column_name_class(column_family)
|
11
|
+
@column_name_class[column_family] ||= column_name_class_for_key(column_family, "CompareWith")
|
12
|
+
end
|
13
|
+
|
14
|
+
def sub_column_name_class(column_family)
|
15
|
+
@sub_column_name_class[column_family] ||= column_name_class_for_key(column_family, "CompareSubcolumnsWith")
|
16
|
+
end
|
17
|
+
|
18
|
+
def column_family_property(column_family, key)
|
19
|
+
unless schema[column_family]
|
20
|
+
raise AccessError, "Invalid column family \"#{column_family}\""
|
21
|
+
end
|
22
|
+
schema[column_family][key]
|
23
|
+
end
|
24
|
+
|
25
|
+
def _standard_insert_mutation(column_family, column_name, value, timestamp, _=nil)
|
26
|
+
CassandraThrift::Mutation.new(
|
27
|
+
:column_or_supercolumn => CassandraThrift::ColumnOrSuperColumn.new(
|
28
|
+
:column => CassandraThrift::Column.new(
|
29
|
+
:name => column_name_class(column_family).new(column_name).to_s,
|
30
|
+
:value => value,
|
31
|
+
:timestamp => timestamp
|
32
|
+
)
|
33
|
+
)
|
34
|
+
)
|
35
|
+
end
|
36
|
+
|
37
|
+
def _super_insert_mutation(column_family, super_column_name, sub_columns, timestamp, _=nil)
|
38
|
+
CassandraThrift::Mutation.new(:column_or_supercolumn =>
|
39
|
+
CassandraThrift::ColumnOrSuperColumn.new(
|
40
|
+
:super_column => CassandraThrift::SuperColumn.new(
|
41
|
+
:name => column_name_class(column_family).new(super_column_name).to_s,
|
42
|
+
:columns => sub_columns.collect { |sub_column_name, sub_column_value|
|
43
|
+
CassandraThrift::Column.new(
|
44
|
+
:name => sub_column_name_class(column_family).new(sub_column_name).to_s,
|
45
|
+
:value => sub_column_value.to_s,
|
46
|
+
:timestamp => timestamp
|
47
|
+
)
|
48
|
+
}
|
49
|
+
)
|
50
|
+
)
|
51
|
+
)
|
52
|
+
end
|
53
|
+
|
54
|
+
# General info about a deletion object within a mutation
|
55
|
+
# timestamp - required. If this is the only param, it will cause deletion of the whole key at that TS
|
56
|
+
# supercolumn - opt. If passed, the deletes will only occur within that supercolumn (only subcolumns
|
57
|
+
# will be deleted). Otherwise the normal columns will be deleted.
|
58
|
+
# predicate - opt. Defines how to match the columns to delete. if supercolumn passed, the slice will
|
59
|
+
# be scoped to subcolumns of that supercolumn.
|
60
|
+
|
61
|
+
# Deletes a single column from the containing key/CF (and possibly supercolumn), at a given timestamp.
|
62
|
+
# Although mutations (as opposed to 'remove' calls) support deleting slices and lists of columns in one shot, this is not implemented here.
|
63
|
+
# The main reason being that the batch function takes removes, but removes don't have that capability...so we'd need to change the remove
|
64
|
+
# methods to use delete mutation calls...although that might have performance implications. We'll leave that refactoring for later.
|
65
|
+
def _delete_mutation(cf, column, subcolumn, timestamp, options={})
|
66
|
+
deletion_hash = {:timestamp => timestamp}
|
67
|
+
if is_super(cf)
|
68
|
+
deletion_hash[:super_column] = column if column
|
69
|
+
deletion_hash[:predicate] = CassandraThrift::SlicePredicate.new(:column_names => [subcolumn]) if subcolumn
|
70
|
+
else
|
71
|
+
deletion_hash[:predicate] = CassandraThrift::SlicePredicate.new(:column_names => [column]) if column
|
72
|
+
end
|
73
|
+
CassandraThrift::Mutation.new(
|
74
|
+
:deletion => CassandraThrift::Deletion.new(deletion_hash)
|
75
|
+
)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|