datastax_rails 1.0.13.6 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/datastax_rails/attribute_methods/definition.rb +4 -0
- data/lib/datastax_rails/base.rb +5 -0
- data/lib/datastax_rails/relation/search_methods.rb +18 -17
- data/lib/datastax_rails/relation.rb +3 -3
- data/lib/datastax_rails/serialization.rb +53 -0
- data/lib/datastax_rails/serializers/xml_serializer.rb +243 -0
- data/lib/datastax_rails/tasks/column_family.rb +3 -0
- data/lib/datastax_rails/types/base_type.rb +4 -0
- data/lib/datastax_rails/version.rb +1 -1
- data/spec/dummy/log/development.log +2 -0
- data/spec/dummy/log/test.log +259 -0
- metadata +5 -5
data/lib/datastax_rails/base.rb
CHANGED
@@ -329,6 +329,11 @@ module DatastaxRails #:nodoc:
|
|
329
329
|
attr_reader :loaded_attributes
|
330
330
|
attr_accessor :key
|
331
331
|
|
332
|
+
# Returns a hash of all the attributes that have been specified for serialization as
|
333
|
+
# keys and their class restriction as values.
|
334
|
+
class_attribute :serialized_attributes
|
335
|
+
self.serialized_attributes = {}
|
336
|
+
|
332
337
|
def initialize(attributes = {}, options = {})
|
333
338
|
@key = attributes.delete(:key)
|
334
339
|
@attributes = {}.with_indifferent_access
|
@@ -319,25 +319,26 @@ module DatastaxRails
|
|
319
319
|
raise ArgumentError, "#greater_than can only be called after an appropriate where call. e.g. where(:created_at).greater_than(1.day.ago)"
|
320
320
|
end
|
321
321
|
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
end
|
322
|
+
# Formats a value for solr (assuming this is a solr query).
|
323
|
+
def solr_format(value)
|
324
|
+
return value unless use_solr_value
|
325
|
+
case
|
326
|
+
when value.is_a?(Date), value.is_a?(Time)
|
327
|
+
value.strftime('%Y-%m-%dT%H:%M:%SZ')
|
328
|
+
when value.is_a?(Array)
|
329
|
+
value.collect {|v| v.gsub(/ /,"\\ ") }.join(" OR ")
|
330
|
+
when value.is_a?(Fixnum)
|
331
|
+
value < 0 ? "\\#{value}" : value
|
332
|
+
when value.is_a?(Range)
|
333
|
+
"[#{solr_format(value.first)} TO #{solr_format(value.last)}]"
|
334
|
+
when value.is_a?(String)
|
335
|
+
solr_escape(downcase_query(value.gsub(/ /,"\\ ")))
|
336
|
+
else
|
337
|
+
value
|
339
338
|
end
|
339
|
+
end
|
340
340
|
|
341
|
+
protected
|
341
342
|
def find_by_attributes(match, attributes, *args) #:nodoc:
|
342
343
|
conditions = Hash[attributes.map {|a| [a, args[attributes.index(a)]]}]
|
343
344
|
result = where(conditions).send(match.finder)
|
@@ -205,9 +205,9 @@ module DatastaxRails
|
|
205
205
|
end
|
206
206
|
|
207
207
|
def respond_to?(method, include_private = false) #:nodoc:
|
208
|
-
|
209
|
-
|
210
|
-
|
208
|
+
Array.method_defined?(method) ||
|
209
|
+
@klass.respond_to?(method, include_private) ||
|
210
|
+
super
|
211
211
|
end
|
212
212
|
|
213
213
|
# NOTE: This method does not actually run a count via CQL because it only
|
@@ -1,6 +1,59 @@
|
|
1
1
|
module DatastaxRails
|
2
|
+
# = DatastaxRails Serialization
|
2
3
|
module Serialization
|
3
4
|
extend ActiveSupport::Concern
|
4
5
|
include ActiveModel::Serializers::JSON
|
6
|
+
|
7
|
+
def serializable_hash(options = nil)
|
8
|
+
options = options.try(:clone) || {}
|
9
|
+
|
10
|
+
options[:except] = Array.wrap(options[:except]).map { |n| n.to_s }
|
11
|
+
|
12
|
+
hash = super(options)
|
13
|
+
|
14
|
+
serializable_add_includes(options) do |association, records, opts|
|
15
|
+
hash[association] = records.is_a?(Enumerable) ?
|
16
|
+
records.map { |r| r.serializable_hash(opts) } :
|
17
|
+
records.serializable_hash(opts)
|
18
|
+
end
|
19
|
+
|
20
|
+
hash
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
# Add associations specified via the <tt>:include</tt> option.
|
25
|
+
#
|
26
|
+
# Expects a block that takes as arguments:
|
27
|
+
# +association+ - name of the association
|
28
|
+
# +records+ - the association record(s) to be serialized
|
29
|
+
# +opts+ - options for the association records
|
30
|
+
def serializable_add_includes(options = {})
|
31
|
+
return unless include_associations = options.delete(:include)
|
32
|
+
|
33
|
+
base_only_or_except = { :except => options[:except],
|
34
|
+
:only => options[:only] }
|
35
|
+
|
36
|
+
include_has_options = include_associations.is_a?(Hash)
|
37
|
+
associations = include_has_options ? include_associations.keys : Array.wrap(include_associations)
|
38
|
+
|
39
|
+
associations.each do |association|
|
40
|
+
records = case self.class.reflect_on_association(association).macro
|
41
|
+
when :has_many, :has_and_belongs_to_many
|
42
|
+
send(association).to_a
|
43
|
+
when :has_one, :belongs_to
|
44
|
+
send(association)
|
45
|
+
end
|
46
|
+
|
47
|
+
if records
|
48
|
+
association_options = include_has_options ? include_associations[association] : base_only_or_except
|
49
|
+
opts = options.merge(association_options)
|
50
|
+
yield(association, records, opts)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
options[:include] = include_associations
|
55
|
+
end
|
5
56
|
end
|
6
57
|
end
|
58
|
+
|
59
|
+
require 'datastax_rails/serializers/xml_serializer'
|
@@ -0,0 +1,243 @@
|
|
1
|
+
require 'active_support/core_ext/array/wrap'
|
2
|
+
require 'active_support/core_ext/hash/conversions'
|
3
|
+
|
4
|
+
module DatastaxRails
|
5
|
+
module Serialization
|
6
|
+
include ActiveModel::Serializers::Xml
|
7
|
+
|
8
|
+
# Builds an XML document to represent the model. Some configuration is
|
9
|
+
# available through +options+. However more complicated cases should
|
10
|
+
# override DatastaxRails::Base#to_xml.
|
11
|
+
#
|
12
|
+
# By default the generated XML document will include the processing
|
13
|
+
# instruction and all the object's attributes. For example:
|
14
|
+
#
|
15
|
+
# <?xml version="1.0" encoding="UTF-8"?>
|
16
|
+
# <topic>
|
17
|
+
# <title>The First Topic</title>
|
18
|
+
# <author-name>David</author-name>
|
19
|
+
# <id type="integer">1</id>
|
20
|
+
# <approved type="boolean">false</approved>
|
21
|
+
# <replies-count type="integer">0</replies-count>
|
22
|
+
# <bonus-time type="datetime">2000-01-01T08:28:00+12:00</bonus-time>
|
23
|
+
# <written-on type="datetime">2003-07-16T09:28:00+1200</written-on>
|
24
|
+
# <content>Have a nice day</content>
|
25
|
+
# <author-email-address>david@loudthinking.com</author-email-address>
|
26
|
+
# <parent-id></parent-id>
|
27
|
+
# <last-read type="date">2004-04-15</last-read>
|
28
|
+
# </topic>
|
29
|
+
#
|
30
|
+
# This behavior can be controlled with <tt>:only</tt>, <tt>:except</tt>,
|
31
|
+
# <tt>:skip_instruct</tt>, <tt>:skip_types</tt>, <tt>:dasherize</tt> and <tt>:camelize</tt> .
|
32
|
+
# The <tt>:only</tt> and <tt>:except</tt> options are the same as for the
|
33
|
+
# +attributes+ method. The default is to dasherize all column names, but you
|
34
|
+
# can disable this setting <tt>:dasherize</tt> to +false+. Setting <tt>:camelize</tt>
|
35
|
+
# to +true+ will camelize all column names - this also overrides <tt>:dasherize</tt>.
|
36
|
+
# To not have the column type included in the XML output set <tt>:skip_types</tt> to +true+.
|
37
|
+
#
|
38
|
+
# For instance:
|
39
|
+
#
|
40
|
+
# topic.to_xml(:skip_instruct => true, :except => [ :id, :bonus_time, :written_on, :replies_count ])
|
41
|
+
#
|
42
|
+
# <topic>
|
43
|
+
# <title>The First Topic</title>
|
44
|
+
# <author-name>David</author-name>
|
45
|
+
# <approved type="boolean">false</approved>
|
46
|
+
# <content>Have a nice day</content>
|
47
|
+
# <author-email-address>david@loudthinking.com</author-email-address>
|
48
|
+
# <parent-id></parent-id>
|
49
|
+
# <last-read type="date">2004-04-15</last-read>
|
50
|
+
# </topic>
|
51
|
+
#
|
52
|
+
# To include first level associations use <tt>:include</tt>:
|
53
|
+
#
|
54
|
+
# firm.to_xml :include => [ :account, :clients ]
|
55
|
+
#
|
56
|
+
# <?xml version="1.0" encoding="UTF-8"?>
|
57
|
+
# <firm>
|
58
|
+
# <id type="integer">1</id>
|
59
|
+
# <rating type="integer">1</rating>
|
60
|
+
# <name>37signals</name>
|
61
|
+
# <clients type="array">
|
62
|
+
# <client>
|
63
|
+
# <rating type="integer">1</rating>
|
64
|
+
# <name>Summit</name>
|
65
|
+
# </client>
|
66
|
+
# <client>
|
67
|
+
# <rating type="integer">1</rating>
|
68
|
+
# <name>Microsoft</name>
|
69
|
+
# </client>
|
70
|
+
# </clients>
|
71
|
+
# <account>
|
72
|
+
# <id type="integer">1</id>
|
73
|
+
# <credit-limit type="integer">50</credit-limit>
|
74
|
+
# </account>
|
75
|
+
# </firm>
|
76
|
+
#
|
77
|
+
# Additionally, the record being serialized will be passed to a Proc's second
|
78
|
+
# parameter. This allows for ad hoc additions to the resultant document that
|
79
|
+
# incorporate the context of the record being serialized. And by leveraging the
|
80
|
+
# closure created by a Proc, to_xml can be used to add elements that normally fall
|
81
|
+
# outside of the scope of the model -- for example, generating and appending URLs
|
82
|
+
# associated with models.
|
83
|
+
#
|
84
|
+
# proc = Proc.new { |options, record| options[:builder].tag!('name-reverse', record.name.reverse) }
|
85
|
+
# firm.to_xml :procs => [ proc ]
|
86
|
+
#
|
87
|
+
# <firm>
|
88
|
+
# # ... normal attributes as shown above ...
|
89
|
+
# <name-reverse>slangis73</name-reverse>
|
90
|
+
# </firm>
|
91
|
+
#
|
92
|
+
# To include deeper levels of associations pass a hash like this:
|
93
|
+
#
|
94
|
+
# firm.to_xml :include => {:account => {}, :clients => {:include => :address}}
|
95
|
+
# <?xml version="1.0" encoding="UTF-8"?>
|
96
|
+
# <firm>
|
97
|
+
# <id type="integer">1</id>
|
98
|
+
# <rating type="integer">1</rating>
|
99
|
+
# <name>37signals</name>
|
100
|
+
# <clients type="array">
|
101
|
+
# <client>
|
102
|
+
# <rating type="integer">1</rating>
|
103
|
+
# <name>Summit</name>
|
104
|
+
# <address>
|
105
|
+
# ...
|
106
|
+
# </address>
|
107
|
+
# </client>
|
108
|
+
# <client>
|
109
|
+
# <rating type="integer">1</rating>
|
110
|
+
# <name>Microsoft</name>
|
111
|
+
# <address>
|
112
|
+
# ...
|
113
|
+
# </address>
|
114
|
+
# </client>
|
115
|
+
# </clients>
|
116
|
+
# <account>
|
117
|
+
# <id type="integer">1</id>
|
118
|
+
# <credit-limit type="integer">50</credit-limit>
|
119
|
+
# </account>
|
120
|
+
# </firm>
|
121
|
+
#
|
122
|
+
# To include any methods on the model being called use <tt>:methods</tt>:
|
123
|
+
#
|
124
|
+
# firm.to_xml :methods => [ :calculated_earnings, :real_earnings ]
|
125
|
+
#
|
126
|
+
# <firm>
|
127
|
+
# # ... normal attributes as shown above ...
|
128
|
+
# <calculated-earnings>100000000000000000</calculated-earnings>
|
129
|
+
# <real-earnings>5</real-earnings>
|
130
|
+
# </firm>
|
131
|
+
#
|
132
|
+
# To call any additional Procs use <tt>:procs</tt>. The Procs are passed a
|
133
|
+
# modified version of the options hash that was given to +to_xml+:
|
134
|
+
#
|
135
|
+
# proc = Proc.new { |options| options[:builder].tag!('abc', 'def') }
|
136
|
+
# firm.to_xml :procs => [ proc ]
|
137
|
+
#
|
138
|
+
# <firm>
|
139
|
+
# # ... normal attributes as shown above ...
|
140
|
+
# <abc>def</abc>
|
141
|
+
# </firm>
|
142
|
+
#
|
143
|
+
# Alternatively, you can yield the builder object as part of the +to_xml+ call:
|
144
|
+
#
|
145
|
+
# firm.to_xml do |xml|
|
146
|
+
# xml.creator do
|
147
|
+
# xml.first_name "David"
|
148
|
+
# xml.last_name "Heinemeier Hansson"
|
149
|
+
# end
|
150
|
+
# end
|
151
|
+
#
|
152
|
+
# <firm>
|
153
|
+
# # ... normal attributes as shown above ...
|
154
|
+
# <creator>
|
155
|
+
# <first_name>David</first_name>
|
156
|
+
# <last_name>Heinemeier Hansson</last_name>
|
157
|
+
# </creator>
|
158
|
+
# </firm>
|
159
|
+
#
|
160
|
+
# As noted above, you may override +to_xml+ in your DatastaxRails::Base
|
161
|
+
# subclasses to have complete control about what's generated. The general
|
162
|
+
# form of doing this is:
|
163
|
+
#
|
164
|
+
# class IHaveMyOwnXML < DatastaxRails::Base
|
165
|
+
# def to_xml(options = {})
|
166
|
+
# options[:indent] ||= 2
|
167
|
+
# xml = options[:builder] ||= Builder::XmlMarkup.new(:indent => options[:indent])
|
168
|
+
# xml.instruct! unless options[:skip_instruct]
|
169
|
+
# xml.level_one do
|
170
|
+
# xml.tag!(:second_level, 'content')
|
171
|
+
# end
|
172
|
+
# end
|
173
|
+
# end
|
174
|
+
def to_xml(options = {}, &block)
|
175
|
+
XmlSerializer.new(self, options).serialize(&block)
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
class XmlSerializer < ActiveModel::Serializers::Xml::Serializer #:nodoc:
|
180
|
+
def initialize(*args)
|
181
|
+
super
|
182
|
+
end
|
183
|
+
|
184
|
+
def add_extra_behavior
|
185
|
+
add_includes
|
186
|
+
end
|
187
|
+
|
188
|
+
def add_includes
|
189
|
+
procs = options.delete(:procs)
|
190
|
+
@serializable.send(:serializable_add_includes, options) do |association, records, opts|
|
191
|
+
add_associations(association, records, opts)
|
192
|
+
end
|
193
|
+
options[:procs] = procs
|
194
|
+
end
|
195
|
+
|
196
|
+
# TODO This can likely be cleaned up to simple use ActiveSupport::XmlMini.to_tag as well.
|
197
|
+
def add_associations(association, records, opts)
|
198
|
+
association_name = association.to_s.singularize
|
199
|
+
merged_options = options.merge(opts).merge!(:root => association_name, :skip_instruct => true)
|
200
|
+
|
201
|
+
if records.is_a?(Enumerable)
|
202
|
+
tag = ActiveSupport::XmlMini.rename_key(association.to_s, options)
|
203
|
+
type = options[:skip_types] ? { } : {:type => "array"}
|
204
|
+
|
205
|
+
if records.empty?
|
206
|
+
@builder.tag!(tag, type)
|
207
|
+
else
|
208
|
+
@builder.tag!(tag, type) do
|
209
|
+
records.each do |record|
|
210
|
+
if options[:skip_types]
|
211
|
+
record_type = {}
|
212
|
+
else
|
213
|
+
record_class = (record.class.to_s.underscore == association_name) ? nil : record.class.name
|
214
|
+
record_type = {:type => record_class}
|
215
|
+
end
|
216
|
+
|
217
|
+
record.to_xml merged_options.merge(record_type)
|
218
|
+
end
|
219
|
+
end
|
220
|
+
end
|
221
|
+
elsif record = @serializable.send(association)
|
222
|
+
record.to_xml(merged_options)
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
class Attribute < ActiveModel::Serializers::Xml::Serializer::Attribute #:nodoc:
|
227
|
+
def compute_type
|
228
|
+
klass = @serializable.class
|
229
|
+
type = if klass.serialized_attributes.key?(name.to_sym)
|
230
|
+
super
|
231
|
+
elsif klass.attribute_definitions.key?(name.to_sym)
|
232
|
+
klass.attribute_definitions[name.to_sym].type
|
233
|
+
else
|
234
|
+
NilClass
|
235
|
+
end
|
236
|
+
|
237
|
+
{ :text => :string,
|
238
|
+
:time => :datetime }[type] || type
|
239
|
+
end
|
240
|
+
protected :compute_type
|
241
|
+
end
|
242
|
+
end
|
243
|
+
end
|
@@ -112,16 +112,19 @@ module DatastaxRails
|
|
112
112
|
if force || solrconfig_digest != sm_digests['solrconfig']
|
113
113
|
puts "Posting Solr Config file to '#{uri.path}/solrconfig.xml'"
|
114
114
|
http.post(uri.path+"/solrconfig.xml", solrconfig)
|
115
|
+
sleep(5) if Rails.env.production?
|
115
116
|
DatastaxRails::Cql::Update.new(SchemaMigration, model.column_family).columns(:solrconfig => solrconfig_digest).execute
|
116
117
|
end
|
117
118
|
if force || stopwords_digest != sm_digests['stopwords']
|
118
119
|
puts "Posting Solr Stopwords file to '#{uri.path}/stopwords.txt'"
|
119
120
|
http.post(uri.path+"/stopwords.txt", stopwords)
|
121
|
+
sleep(5) if Rails.env.production?
|
120
122
|
DatastaxRails::Cql::Update.new(SchemaMigration, model.column_family).columns(:stopwords => stopwords_digest).execute
|
121
123
|
end
|
122
124
|
if force || schema_digest != sm_digests['digest']
|
123
125
|
puts "Posting Solr Schema file to '#{uri.path}/schema.xml'"
|
124
126
|
http.post(uri.path+"/schema.xml", schema)
|
127
|
+
sleep(5) if Rails.env.production?
|
125
128
|
DatastaxRails::Cql::Update.new(SchemaMigration, model.column_family).columns(:digest => schema_digest).execute
|
126
129
|
end
|
127
130
|
end
|
@@ -0,0 +1,2 @@
|
|
1
|
+
update people using consistency QUORUM SET birthdate = '2012-09-10T00:00:00Z', updated_at = '2012-09-12T19:59:57Z', schema_version = '0' WHERE KEY IN ('ea5d4cec-d679-11e1-90fc-d988657988ea')
|
2
|
+
people insert (4.1ms) ea5d4cec-d679-11e1-90fc-d988657988ea {"birthdate"=>"2012-09-10T00:00:00Z", "updated_at"=>"2012-09-12T19:59:57Z", "schema_version"=>"0"}
|
data/spec/dummy/log/test.log
CHANGED
@@ -1293,3 +1293,262 @@ TRUNCATE jobs
|
|
1293
1293
|
update boats using consistency QUORUM SET created_at = '2012-08-29T20:09:59Z', updated_at = '2012-08-29T20:09:59Z', schema_version = '0' WHERE KEY IN ('827ea744-f215-11e1-8e49-8a699a86169f')
|
1294
1294
|
boats insert (9.6ms) 827ea744-f215-11e1-8e49-8a699a86169f {"created_at"=>"2012-08-29T20:09:59Z", "updated_at"=>"2012-08-29T20:09:59Z", "schema_version"=>"0"}
|
1295
1295
|
TRUNCATE boats
|
1296
|
+
update people using consistency LOCAL_QUORUM SET name = 'Steven', created_at = '2012-09-17T19:12:44Z', updated_at = '2012-09-17T19:12:44Z', nickname = 'Steven', schema_version = '0' WHERE KEY IN ('a9148726-00fb-11e2-869a-54ecb6a770ad')
|
1297
|
+
people insert (24.7ms) a9148726-00fb-11e2-869a-54ecb6a770ad {"name"=>"Steven", "created_at"=>"2012-09-17T19:12:44Z", "updated_at"=>"2012-09-17T19:12:44Z", "nickname"=>"Steven", "schema_version"=>"0"}
|
1298
|
+
TRUNCATE people
|
1299
|
+
update people using consistency LOCAL_QUORUM SET name = 'Steven', created_at = '2012-09-17T19:12:44Z', updated_at = '2012-09-17T19:12:44Z', nickname = 'Steven', schema_version = '0' WHERE KEY IN ('a91f03d6-00fb-11e2-8948-16fdf8929f34')
|
1300
|
+
people insert (0.4ms) a91f03d6-00fb-11e2-8948-16fdf8929f34 {"name"=>"Steven", "created_at"=>"2012-09-17T19:12:44Z", "updated_at"=>"2012-09-17T19:12:44Z", "nickname"=>"Steven", "schema_version"=>"0"}
|
1301
|
+
TRUNCATE people
|
1302
|
+
update people using consistency QUORUM SET name = 'Steven', created_at = '2012-09-17T19:12:44Z', updated_at = '2012-09-17T19:12:44Z', nickname = 'Steven', schema_version = '0' WHERE KEY IN ('a91f9472-00fb-11e2-9ee8-583934fad59e')
|
1303
|
+
people insert (28.3ms) a91f9472-00fb-11e2-9ee8-583934fad59e {"name"=>"Steven", "created_at"=>"2012-09-17T19:12:44Z", "updated_at"=>"2012-09-17T19:12:44Z", "nickname"=>"Steven", "schema_version"=>"0"}
|
1304
|
+
DELETE FROM people USING CONSISTENCY LOCAL_QUORUM WHERE KEY IN ('a91f9472-00fb-11e2-9ee8-583934fad59e')
|
1305
|
+
people remove (18.4ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x12780958>
|
1306
|
+
TRUNCATE people
|
1307
|
+
update people using consistency QUORUM SET name = 'jason', created_at = '2012-09-17T19:12:45Z', updated_at = '2012-09-17T19:12:45Z', nickname = 'jason', schema_version = '0' WHERE KEY IN ('a93ed33c-00fb-11e2-994b-b437c377d3e4')
|
1308
|
+
people insert (2.7ms) a93ed33c-00fb-11e2-994b-b437c377d3e4 {"name"=>"jason", "created_at"=>"2012-09-17T19:12:45Z", "updated_at"=>"2012-09-17T19:12:45Z", "nickname"=>"jason", "schema_version"=>"0"}
|
1309
|
+
update cars using consistency QUORUM SET name = 'Jeep', created_at = '2012-09-17T19:12:45Z', updated_at = '2012-09-17T19:12:45Z', schema_version = '0', person_id = 'a93ed33c-00fb-11e2-994b-b437c377d3e4' WHERE KEY IN ('a93fd3f4-00fb-11e2-9850-a27d7c71af99')
|
1310
|
+
cars insert (19.0ms) a93fd3f4-00fb-11e2-9850-a27d7c71af99 {"name"=>"Jeep", "created_at"=>"2012-09-17T19:12:45Z", "updated_at"=>"2012-09-17T19:12:45Z", "schema_version"=>"0", "person_id"=>"a93ed33c-00fb-11e2-994b-b437c377d3e4"}
|
1311
|
+
DELETE FROM cars USING CONSISTENCY QUORUM WHERE KEY IN ('a93fd3f4-00fb-11e2-9850-a27d7c71af99')
|
1312
|
+
cars remove (1.3ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x127042b8>
|
1313
|
+
DELETE FROM people USING CONSISTENCY QUORUM WHERE KEY IN ('a93ed33c-00fb-11e2-994b-b437c377d3e4')
|
1314
|
+
people remove (1.1ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x12700a78>
|
1315
|
+
TRUNCATE people
|
1316
|
+
TRUNCATE cars
|
1317
|
+
update people using consistency QUORUM SET name = 'jason', created_at = '2012-09-17T19:12:46Z', updated_at = '2012-09-17T19:12:46Z', nickname = 'jason', schema_version = '0' WHERE KEY IN ('aa50a37c-00fb-11e2-9cd7-f060fd439004')
|
1318
|
+
people insert (2.3ms) aa50a37c-00fb-11e2-9cd7-f060fd439004 {"name"=>"jason", "created_at"=>"2012-09-17T19:12:46Z", "updated_at"=>"2012-09-17T19:12:46Z", "nickname"=>"jason", "schema_version"=>"0"}
|
1319
|
+
update cars using consistency QUORUM SET name = 'Jeep', created_at = '2012-09-17T19:12:46Z', updated_at = '2012-09-17T19:12:46Z', schema_version = '0', person_id = 'aa50a37c-00fb-11e2-9cd7-f060fd439004' WHERE KEY IN ('aa512446-00fb-11e2-8d0d-ad1be569b381')
|
1320
|
+
cars insert (2.4ms) aa512446-00fb-11e2-8d0d-ad1be569b381 {"name"=>"Jeep", "created_at"=>"2012-09-17T19:12:46Z", "updated_at"=>"2012-09-17T19:12:46Z", "schema_version"=>"0", "person_id"=>"aa50a37c-00fb-11e2-9cd7-f060fd439004"}
|
1321
|
+
TRUNCATE people
|
1322
|
+
TRUNCATE cars
|
1323
|
+
update people using consistency QUORUM SET name = 'jason', created_at = '2012-09-17T19:12:47Z', updated_at = '2012-09-17T19:12:47Z', nickname = 'jason', schema_version = '0' WHERE KEY IN ('aa8b92b6-00fb-11e2-8b25-e6eff24993f8')
|
1324
|
+
people insert (2.2ms) aa8b92b6-00fb-11e2-8b25-e6eff24993f8 {"name"=>"jason", "created_at"=>"2012-09-17T19:12:47Z", "updated_at"=>"2012-09-17T19:12:47Z", "nickname"=>"jason", "schema_version"=>"0"}
|
1325
|
+
update cars using consistency QUORUM SET name = 'Jeep', created_at = '2012-09-17T19:12:47Z', updated_at = '2012-09-17T19:12:47Z', schema_version = '0', person_id = '12345' WHERE KEY IN ('aa8c10ec-00fb-11e2-9b75-ef3e0f383acd')
|
1326
|
+
cars insert (1.9ms) aa8c10ec-00fb-11e2-9b75-ef3e0f383acd {"name"=>"Jeep", "created_at"=>"2012-09-17T19:12:47Z", "updated_at"=>"2012-09-17T19:12:47Z", "schema_version"=>"0", "person_id"=>"12345"}
|
1327
|
+
TRUNCATE people
|
1328
|
+
TRUNCATE cars
|
1329
|
+
update people using consistency QUORUM SET name = 'jason', created_at = '2012-09-17T19:12:47Z', updated_at = '2012-09-17T19:12:47Z', nickname = 'jason', schema_version = '0' WHERE KEY IN ('aac5b63a-00fb-11e2-8a52-4511f4c98eb5')
|
1330
|
+
people insert (2.2ms) aac5b63a-00fb-11e2-8a52-4511f4c98eb5 {"name"=>"jason", "created_at"=>"2012-09-17T19:12:47Z", "updated_at"=>"2012-09-17T19:12:47Z", "nickname"=>"jason", "schema_version"=>"0"}
|
1331
|
+
update cars using consistency QUORUM SET name = 'Jeep', created_at = '2012-09-17T19:12:47Z', updated_at = '2012-09-17T19:12:47Z', schema_version = '0', person_id = 'aac5b63a-00fb-11e2-8a52-4511f4c98eb5' WHERE KEY IN ('aac64e38-00fb-11e2-9dd0-454cd2d50900')
|
1332
|
+
cars insert (1.9ms) aac64e38-00fb-11e2-9dd0-454cd2d50900 {"name"=>"Jeep", "created_at"=>"2012-09-17T19:12:47Z", "updated_at"=>"2012-09-17T19:12:47Z", "schema_version"=>"0", "person_id"=>"aac5b63a-00fb-11e2-8a52-4511f4c98eb5"}
|
1333
|
+
TRUNCATE people
|
1334
|
+
TRUNCATE cars
|
1335
|
+
update hobbies using consistency QUORUM SET name = 'fishing', created_at = '2012-09-17T19:12:47Z', updated_at = '2012-09-17T19:12:47Z', schema_version = '0' WHERE KEY IN ('aafb713a-00fb-11e2-8b48-d1f9dda2d178')
|
1336
|
+
hobbies insert (265.6ms) aafb713a-00fb-11e2-8b48-d1f9dda2d178 {"name"=>"fishing", "created_at"=>"2012-09-17T19:12:47Z", "updated_at"=>"2012-09-17T19:12:47Z", "schema_version"=>"0"}
|
1337
|
+
TRUNCATE hobbies
|
1338
|
+
update hobbies using consistency QUORUM SET name = 'hiking', created_at = '2012-09-17T19:12:48Z', updated_at = '2012-09-17T19:12:48Z', schema_version = '0' WHERE KEY IN ('ab44fbd4-00fb-11e2-990d-825ac3d1aa77')
|
1339
|
+
hobbies insert (2.4ms) ab44fbd4-00fb-11e2-990d-825ac3d1aa77 {"name"=>"hiking", "created_at"=>"2012-09-17T19:12:48Z", "updated_at"=>"2012-09-17T19:12:48Z", "schema_version"=>"0"}
|
1340
|
+
update hobbies using consistency QUORUM SET name = 'boxing', created_at = '2012-09-17T19:12:48Z', updated_at = '2012-09-17T19:12:48Z', schema_version = '0' WHERE KEY IN ('ab457c9e-00fb-11e2-8e5f-eb7cd244b41c')
|
1341
|
+
hobbies insert (1.5ms) ab457c9e-00fb-11e2-8e5f-eb7cd244b41c {"name"=>"boxing", "created_at"=>"2012-09-17T19:12:48Z", "updated_at"=>"2012-09-17T19:12:48Z", "schema_version"=>"0"}
|
1342
|
+
update hobbies using consistency QUORUM SET name = 'fishing', created_at = '2012-09-17T19:12:48Z', updated_at = '2012-09-17T19:12:48Z', schema_version = '0' WHERE KEY IN ('ab45d644-00fb-11e2-9dc4-2efe839ab5c3')
|
1343
|
+
hobbies insert (1.4ms) ab45d644-00fb-11e2-9dc4-2efe839ab5c3 {"name"=>"fishing", "created_at"=>"2012-09-17T19:12:48Z", "updated_at"=>"2012-09-17T19:12:48Z", "schema_version"=>"0"}
|
1344
|
+
update hobbies using consistency QUORUM SET name = 'running', created_at = '2012-09-17T19:12:48Z', updated_at = '2012-09-17T19:12:48Z', schema_version = '0' WHERE KEY IN ('ab462cd4-00fb-11e2-94bf-028cfe4089f2')
|
1345
|
+
hobbies insert (1.5ms) ab462cd4-00fb-11e2-94bf-028cfe4089f2 {"name"=>"running", "created_at"=>"2012-09-17T19:12:48Z", "updated_at"=>"2012-09-17T19:12:48Z", "schema_version"=>"0"}
|
1346
|
+
TRUNCATE hobbies
|
1347
|
+
update hobbies using consistency QUORUM SET name = 'fishing', created_at = '2012-09-17T19:12:48Z', updated_at = '2012-09-17T19:12:48Z', schema_version = '0' WHERE KEY IN ('ab698d00-00fb-11e2-9eab-e69c838966b2')
|
1348
|
+
hobbies insert (2.0ms) ab698d00-00fb-11e2-9eab-e69c838966b2 {"name"=>"fishing", "created_at"=>"2012-09-17T19:12:48Z", "updated_at"=>"2012-09-17T19:12:48Z", "schema_version"=>"0"}
|
1349
|
+
TRUNCATE hobbies
|
1350
|
+
update hobbies using consistency QUORUM SET name = 'hiking', created_at = '2012-09-17T19:12:48Z', updated_at = '2012-09-17T19:12:48Z', schema_version = '0' WHERE KEY IN ('ab888cbe-00fb-11e2-929b-6b6ba482ec44')
|
1351
|
+
hobbies insert (2.1ms) ab888cbe-00fb-11e2-929b-6b6ba482ec44 {"name"=>"hiking", "created_at"=>"2012-09-17T19:12:48Z", "updated_at"=>"2012-09-17T19:12:48Z", "schema_version"=>"0"}
|
1352
|
+
update hobbies using consistency QUORUM SET name = 'swimming', created_at = '2012-09-17T19:12:48Z', updated_at = '2012-09-17T19:12:48Z', schema_version = '0' WHERE KEY IN ('ab8900d6-00fb-11e2-8d63-1f12ccde714d')
|
1353
|
+
hobbies insert (1.7ms) ab8900d6-00fb-11e2-8d63-1f12ccde714d {"name"=>"swimming", "created_at"=>"2012-09-17T19:12:48Z", "updated_at"=>"2012-09-17T19:12:48Z", "schema_version"=>"0"}
|
1354
|
+
TRUNCATE hobbies
|
1355
|
+
update hobbies using consistency QUORUM SET name = 'hiking', created_at = '2012-09-17T19:12:49Z', updated_at = '2012-09-17T19:12:49Z', schema_version = '0' WHERE KEY IN ('aba36322-00fb-11e2-8004-a30acb2ec3a1')
|
1356
|
+
hobbies insert (2.0ms) aba36322-00fb-11e2-8004-a30acb2ec3a1 {"name"=>"hiking", "created_at"=>"2012-09-17T19:12:49Z", "updated_at"=>"2012-09-17T19:12:49Z", "schema_version"=>"0"}
|
1357
|
+
TRUNCATE hobbies
|
1358
|
+
update hobbies using consistency QUORUM SET name = 'hiking', created_at = '2012-09-17T19:12:49Z', updated_at = '2012-09-17T19:12:49Z', schema_version = '0' WHERE KEY IN ('abc3fcfe-00fb-11e2-9bb3-1ba8b5e8e364')
|
1359
|
+
hobbies insert (68.8ms) abc3fcfe-00fb-11e2-9bb3-1ba8b5e8e364 {"name"=>"hiking", "created_at"=>"2012-09-17T19:12:49Z", "updated_at"=>"2012-09-17T19:12:49Z", "schema_version"=>"0"}
|
1360
|
+
TRUNCATE hobbies
|
1361
|
+
update hobbies using consistency QUORUM SET name = 'hiking', created_at = '2012-09-17T19:12:49Z', updated_at = '2012-09-17T19:12:49Z', schema_version = '0' WHERE KEY IN ('abe7b0b8-00fb-11e2-967f-08af60cf5838')
|
1362
|
+
hobbies insert (1.9ms) abe7b0b8-00fb-11e2-967f-08af60cf5838 {"name"=>"hiking", "created_at"=>"2012-09-17T19:12:49Z", "updated_at"=>"2012-09-17T19:12:49Z", "schema_version"=>"0"}
|
1363
|
+
update hobbies using consistency QUORUM SET name = 'boxing', created_at = '2012-09-17T19:12:49Z', updated_at = '2012-09-17T19:12:49Z', schema_version = '0' WHERE KEY IN ('abe81d32-00fb-11e2-8953-1f876080539f')
|
1364
|
+
hobbies insert (1.2ms) abe81d32-00fb-11e2-8953-1f876080539f {"name"=>"boxing", "created_at"=>"2012-09-17T19:12:49Z", "updated_at"=>"2012-09-17T19:12:49Z", "schema_version"=>"0"}
|
1365
|
+
update hobbies using consistency QUORUM SET name = 'fishing', created_at = '2012-09-17T19:12:49Z', updated_at = '2012-09-17T19:12:49Z', schema_version = '0' WHERE KEY IN ('abe86b0c-00fb-11e2-9c32-cf408b8719e7')
|
1366
|
+
hobbies insert (2.2ms) abe86b0c-00fb-11e2-9c32-cf408b8719e7 {"name"=>"fishing", "created_at"=>"2012-09-17T19:12:49Z", "updated_at"=>"2012-09-17T19:12:49Z", "schema_version"=>"0"}
|
1367
|
+
update hobbies using consistency QUORUM SET name = 'running', created_at = '2012-09-17T19:12:49Z', updated_at = '2012-09-17T19:12:49Z', schema_version = '0' WHERE KEY IN ('abe8df38-00fb-11e2-9e85-92cb1d9eb2ef')
|
1368
|
+
hobbies insert (1.2ms) abe8df38-00fb-11e2-9e85-92cb1d9eb2ef {"name"=>"running", "created_at"=>"2012-09-17T19:12:49Z", "updated_at"=>"2012-09-17T19:12:49Z", "schema_version"=>"0"}
|
1369
|
+
TRUNCATE hobbies
|
1370
|
+
update people using consistency QUORUM SET name = 'Jason', created_at = '2012-09-17T19:12:49Z', updated_at = '2012-09-17T19:12:49Z', nickname = 'Jason', schema_version = '0' WHERE KEY IN ('ac1d54ca-00fb-11e2-9850-1ba35455cfdd')
|
1371
|
+
people insert (2.4ms) ac1d54ca-00fb-11e2-9850-1ba35455cfdd {"name"=>"Jason", "created_at"=>"2012-09-17T19:12:49Z", "updated_at"=>"2012-09-17T19:12:49Z", "nickname"=>"Jason", "schema_version"=>"0"}
|
1372
|
+
update jobs using consistency QUORUM SET created_at = '2012-09-17T19:12:49Z', title = 'Developer', updated_at = '2012-09-17T19:12:49Z', schema_version = '0' WHERE KEY IN ('ac1e48a8-00fb-11e2-9f37-dcc13147b32e')
|
1373
|
+
jobs insert (223.4ms) ac1e48a8-00fb-11e2-9f37-dcc13147b32e {"created_at"=>"2012-09-17T19:12:49Z", "title"=>"Developer", "updated_at"=>"2012-09-17T19:12:49Z", "schema_version"=>"0"}
|
1374
|
+
TRUNCATE people
|
1375
|
+
TRUNCATE jobs
|
1376
|
+
update people using consistency QUORUM SET name = 'John', created_at = '2012-09-17T19:12:50Z', updated_at = '2012-09-17T19:12:50Z', nickname = 'John', schema_version = '0' WHERE KEY IN ('ac813d00-00fb-11e2-8d38-ea8ebd917b69')
|
1377
|
+
people insert (2.2ms) ac813d00-00fb-11e2-8d38-ea8ebd917b69 {"name"=>"John", "created_at"=>"2012-09-17T19:12:50Z", "updated_at"=>"2012-09-17T19:12:50Z", "nickname"=>"John", "schema_version"=>"0"}
|
1378
|
+
update jobs using consistency QUORUM SET created_at = '2012-09-17T19:12:50Z', title = 'Developer', updated_at = '2012-09-17T19:12:50Z', schema_version = '0', person_id = 'ac813d00-00fb-11e2-8d38-ea8ebd917b69' WHERE KEY IN ('ac81bbe0-00fb-11e2-8d0d-fd1993c86ebe')
|
1379
|
+
jobs insert (2.3ms) ac81bbe0-00fb-11e2-8d0d-fd1993c86ebe {"created_at"=>"2012-09-17T19:12:50Z", "title"=>"Developer", "updated_at"=>"2012-09-17T19:12:50Z", "schema_version"=>"0", "person_id"=>"ac813d00-00fb-11e2-8d38-ea8ebd917b69"}
|
1380
|
+
TRUNCATE people
|
1381
|
+
TRUNCATE jobs
|
1382
|
+
update hobbies using consistency QUORUM SET name = 'swimming', created_at = '2012-09-17T19:12:50Z', updated_at = '2012-09-17T19:12:50Z', schema_version = '0' WHERE KEY IN ('acb9641e-00fb-11e2-8966-21ea4d281567')
|
1383
|
+
hobbies insert (2.2ms) acb9641e-00fb-11e2-8966-21ea4d281567 {"name"=>"swimming", "created_at"=>"2012-09-17T19:12:50Z", "updated_at"=>"2012-09-17T19:12:50Z", "schema_version"=>"0"}
|
1384
|
+
TRUNCATE hobbies
|
1385
|
+
update hobbies using consistency QUORUM SET name = 'a', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd51038-00fb-11e2-982f-a5d6383a6c6c')
|
1386
|
+
hobbies insert (1.9ms) acd51038-00fb-11e2-982f-a5d6383a6c6c {"name"=>"a", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1387
|
+
update hobbies using consistency QUORUM SET name = 'b', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd57bc2-00fb-11e2-8549-91890630712e')
|
1388
|
+
hobbies insert (1.4ms) acd57bc2-00fb-11e2-8549-91890630712e {"name"=>"b", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1389
|
+
update hobbies using consistency QUORUM SET name = 'c', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd5ced8-00fb-11e2-8151-2c07ef1d2567')
|
1390
|
+
hobbies insert (1.2ms) acd5ced8-00fb-11e2-8151-2c07ef1d2567 {"name"=>"c", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1391
|
+
update hobbies using consistency QUORUM SET name = 'd', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd61c1c-00fb-11e2-9fcf-e9eed65abbef')
|
1392
|
+
hobbies insert (1.3ms) acd61c1c-00fb-11e2-9fcf-e9eed65abbef {"name"=>"d", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1393
|
+
update hobbies using consistency QUORUM SET name = 'e', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd66df2-00fb-11e2-8669-0b8ec9b62ac5')
|
1394
|
+
hobbies insert (1.1ms) acd66df2-00fb-11e2-8669-0b8ec9b62ac5 {"name"=>"e", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1395
|
+
update hobbies using consistency QUORUM SET name = 'f', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd6b532-00fb-11e2-9200-429b7ac23880')
|
1396
|
+
hobbies insert (1.2ms) acd6b532-00fb-11e2-9200-429b7ac23880 {"name"=>"f", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1397
|
+
update hobbies using consistency QUORUM SET name = 'g', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd70118-00fb-11e2-9065-62df081bf1df')
|
1398
|
+
hobbies insert (1.3ms) acd70118-00fb-11e2-9065-62df081bf1df {"name"=>"g", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1399
|
+
update hobbies using consistency QUORUM SET name = 'h', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd7501e-00fb-11e2-80bd-e68db786fe36')
|
1400
|
+
hobbies insert (1.2ms) acd7501e-00fb-11e2-80bd-e68db786fe36 {"name"=>"h", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1401
|
+
update hobbies using consistency QUORUM SET name = 'i', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd79d08-00fb-11e2-90e0-24c0d72d4042')
|
1402
|
+
hobbies insert (1.2ms) acd79d08-00fb-11e2-90e0-24c0d72d4042 {"name"=>"i", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1403
|
+
update hobbies using consistency QUORUM SET name = 'j', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd7eaba-00fb-11e2-950a-cf254f73a244')
|
1404
|
+
hobbies insert (1.2ms) acd7eaba-00fb-11e2-950a-cf254f73a244 {"name"=>"j", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1405
|
+
update hobbies using consistency QUORUM SET name = 'k', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd837cc-00fb-11e2-9453-6bddb4c1a339')
|
1406
|
+
hobbies insert (1.2ms) acd837cc-00fb-11e2-9453-6bddb4c1a339 {"name"=>"k", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1407
|
+
update hobbies using consistency QUORUM SET name = 'l', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('acd8857e-00fb-11e2-8492-fb6228c386e8')
|
1408
|
+
hobbies insert (1.2ms) acd8857e-00fb-11e2-8492-fb6228c386e8 {"name"=>"l", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1409
|
+
TRUNCATE hobbies
|
1410
|
+
update hobbies using consistency QUORUM SET name = 'a', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad02186c-00fb-11e2-8720-da69f752df67')
|
1411
|
+
hobbies insert (1.8ms) ad02186c-00fb-11e2-8720-da69f752df67 {"name"=>"a", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1412
|
+
update hobbies using consistency QUORUM SET name = 'b', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad027faa-00fb-11e2-9863-9f94eb51e961')
|
1413
|
+
hobbies insert (1.5ms) ad027faa-00fb-11e2-9863-9f94eb51e961 {"name"=>"b", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1414
|
+
update hobbies using consistency QUORUM SET name = 'c', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad02d5e0-00fb-11e2-8e9e-841e35af1206')
|
1415
|
+
hobbies insert (1.0ms) ad02d5e0-00fb-11e2-8e9e-841e35af1206 {"name"=>"c", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1416
|
+
update hobbies using consistency QUORUM SET name = 'd', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad031b54-00fb-11e2-941f-28ab2e64b801')
|
1417
|
+
hobbies insert (1.3ms) ad031b54-00fb-11e2-941f-28ab2e64b801 {"name"=>"d", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1418
|
+
update hobbies using consistency QUORUM SET name = 'e', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad036a82-00fb-11e2-9a55-fd6e200b32d1')
|
1419
|
+
hobbies insert (1.2ms) ad036a82-00fb-11e2-9a55-fd6e200b32d1 {"name"=>"e", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1420
|
+
update hobbies using consistency QUORUM SET name = 'f', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad03b7a8-00fb-11e2-88e0-d0193130bfd9')
|
1421
|
+
hobbies insert (1.2ms) ad03b7a8-00fb-11e2-88e0-d0193130bfd9 {"name"=>"f", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1422
|
+
update hobbies using consistency QUORUM SET name = 'g', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad0404f6-00fb-11e2-87f6-f7d774f36781')
|
1423
|
+
hobbies insert (1.0ms) ad0404f6-00fb-11e2-87f6-f7d774f36781 {"name"=>"g", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1424
|
+
update hobbies using consistency QUORUM SET name = 'h', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad0449d4-00fb-11e2-9eef-708fb0565eaa')
|
1425
|
+
hobbies insert (1.4ms) ad0449d4-00fb-11e2-9eef-708fb0565eaa {"name"=>"h", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1426
|
+
update hobbies using consistency QUORUM SET name = 'i', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad049d1c-00fb-11e2-9f22-2b502539b106')
|
1427
|
+
hobbies insert (1.2ms) ad049d1c-00fb-11e2-9f22-2b502539b106 {"name"=>"i", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1428
|
+
update hobbies using consistency QUORUM SET name = 'j', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad04ea7e-00fb-11e2-9bf7-068ad5510408')
|
1429
|
+
hobbies insert (1.1ms) ad04ea7e-00fb-11e2-9bf7-068ad5510408 {"name"=>"j", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1430
|
+
update hobbies using consistency QUORUM SET name = 'k', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad05304c-00fb-11e2-927a-209167e281ea')
|
1431
|
+
hobbies insert (1.3ms) ad05304c-00fb-11e2-927a-209167e281ea {"name"=>"k", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1432
|
+
update hobbies using consistency QUORUM SET name = 'l', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad057f5c-00fb-11e2-990f-5d54bbd9cddf')
|
1433
|
+
hobbies insert (1.3ms) ad057f5c-00fb-11e2-990f-5d54bbd9cddf {"name"=>"l", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1434
|
+
TRUNCATE hobbies
|
1435
|
+
update hobbies using consistency QUORUM SET name = 'fishing', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad54b13a-00fb-11e2-8f99-9ca5af4802c5')
|
1436
|
+
hobbies insert (1.9ms) ad54b13a-00fb-11e2-8f99-9ca5af4802c5 {"name"=>"fishing", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1437
|
+
update hobbies using consistency QUORUM SET name = 'hiking', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad551d28-00fb-11e2-87d8-ab2af0fe123b')
|
1438
|
+
hobbies insert (1.2ms) ad551d28-00fb-11e2-87d8-ab2af0fe123b {"name"=>"hiking", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1439
|
+
update hobbies using consistency QUORUM SET name = 'boating', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad556ada-00fb-11e2-84b3-ca329664c775')
|
1440
|
+
hobbies insert (1.4ms) ad556ada-00fb-11e2-84b3-ca329664c775 {"name"=>"boating", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1441
|
+
update hobbies using consistency QUORUM SET name = 'jogging', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad55bd64-00fb-11e2-9045-da497450e775')
|
1442
|
+
hobbies insert (1.3ms) ad55bd64-00fb-11e2-9045-da497450e775 {"name"=>"jogging", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1443
|
+
update hobbies using consistency QUORUM SET name = 'swimming', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad560aee-00fb-11e2-8176-6a09a3e3ffb4')
|
1444
|
+
hobbies insert (1.3ms) ad560aee-00fb-11e2-8176-6a09a3e3ffb4 {"name"=>"swimming", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1445
|
+
update hobbies using consistency QUORUM SET name = 'chess', created_at = '2012-09-17T19:12:51Z', updated_at = '2012-09-17T19:12:51Z', schema_version = '0' WHERE KEY IN ('ad56590e-00fb-11e2-9f92-f2e9ac979b4b')
|
1446
|
+
hobbies insert (1.1ms) ad56590e-00fb-11e2-9f92-f2e9ac979b4b {"name"=>"chess", "created_at"=>"2012-09-17T19:12:51Z", "updated_at"=>"2012-09-17T19:12:51Z", "schema_version"=>"0"}
|
1447
|
+
TRUNCATE hobbies
|
1448
|
+
update hobbies using consistency QUORUM SET name = 'fishing', created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0' WHERE KEY IN ('ad7a02d2-00fb-11e2-8386-feb3e066b16e')
|
1449
|
+
hobbies insert (1.7ms) ad7a02d2-00fb-11e2-8386-feb3e066b16e {"name"=>"fishing", "created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0"}
|
1450
|
+
update hobbies using consistency QUORUM SET name = 'hiking', created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0' WHERE KEY IN ('ad7a6510-00fb-11e2-8471-efb6ae2e8e05')
|
1451
|
+
hobbies insert (1.0ms) ad7a6510-00fb-11e2-8471-efb6ae2e8e05 {"name"=>"hiking", "created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0"}
|
1452
|
+
update hobbies using consistency QUORUM SET name = 'boating', created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0' WHERE KEY IN ('ad7aaa16-00fb-11e2-9bab-22dec22a6b5e')
|
1453
|
+
hobbies insert (1.3ms) ad7aaa16-00fb-11e2-9bab-22dec22a6b5e {"name"=>"boating", "created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0"}
|
1454
|
+
update hobbies using consistency QUORUM SET name = 'jogging', created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0' WHERE KEY IN ('ad7af8f4-00fb-11e2-8370-f3df82317332')
|
1455
|
+
hobbies insert (1.1ms) ad7af8f4-00fb-11e2-8370-f3df82317332 {"name"=>"jogging", "created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0"}
|
1456
|
+
update hobbies using consistency QUORUM SET name = 'swimming', created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0' WHERE KEY IN ('ad7b4066-00fb-11e2-865d-b37f6fb42548')
|
1457
|
+
hobbies insert (1.3ms) ad7b4066-00fb-11e2-865d-b37f6fb42548 {"name"=>"swimming", "created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0"}
|
1458
|
+
update hobbies using consistency QUORUM SET name = 'chess', created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0' WHERE KEY IN ('ad7b8e54-00fb-11e2-93e8-1b6ab40ad620')
|
1459
|
+
hobbies insert (1.0ms) ad7b8e54-00fb-11e2-93e8-1b6ab40ad620 {"name"=>"chess", "created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0"}
|
1460
|
+
TRUNCATE hobbies
|
1461
|
+
update hobbies using consistency QUORUM SET name = 'Swimming', created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0' WHERE KEY IN ('ad9cb1ce-00fb-11e2-86d6-beebac004d13')
|
1462
|
+
hobbies insert (1.8ms) ad9cb1ce-00fb-11e2-86d6-beebac004d13 {"name"=>"Swimming", "created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0"}
|
1463
|
+
update hobbies using consistency QUORUM SET created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0' WHERE KEY IN ('ad9d1614-00fb-11e2-941d-5d7b01d3e8ea')
|
1464
|
+
hobbies insert (1.3ms) ad9d1614-00fb-11e2-941d-5d7b01d3e8ea {"created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0"}
|
1465
|
+
TRUNCATE hobbies
|
1466
|
+
update hobbies using consistency QUORUM SET name = 'Swimming', created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0', complexity = '1.1' WHERE KEY IN ('adba95e0-00fb-11e2-89b1-ff98d13e5058')
|
1467
|
+
hobbies insert (1.7ms) adba95e0-00fb-11e2-89b1-ff98d13e5058 {"name"=>"Swimming", "created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0", "complexity"=>"1.1"}
|
1468
|
+
TRUNCATE hobbies
|
1469
|
+
update hobbies using consistency QUORUM SET name = 'Swimming', created_at = '2012-09-17T19:12:52Z', updated_at = '2012-09-17T19:12:52Z', schema_version = '0', complexity = '1.1' WHERE KEY IN ('addc0b62-00fb-11e2-81d5-0d2f9dcf5ec8')
|
1470
|
+
hobbies insert (2.8ms) addc0b62-00fb-11e2-81d5-0d2f9dcf5ec8 {"name"=>"Swimming", "created_at"=>"2012-09-17T19:12:52Z", "updated_at"=>"2012-09-17T19:12:52Z", "schema_version"=>"0", "complexity"=>"1.1"}
|
1471
|
+
TRUNCATE hobbies
|
1472
|
+
update hobbies using consistency QUORUM SET name = 'fishing', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0' WHERE KEY IN ('adf91d42-00fb-11e2-9dc2-6449b5057102')
|
1473
|
+
hobbies insert (1.7ms) adf91d42-00fb-11e2-9dc2-6449b5057102 {"name"=>"fishing", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0"}
|
1474
|
+
update hobbies using consistency QUORUM SET name = 'hiking', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0' WHERE KEY IN ('adf97d50-00fb-11e2-966a-ec8675f79dfb')
|
1475
|
+
hobbies insert (1.1ms) adf97d50-00fb-11e2-966a-ec8675f79dfb {"name"=>"hiking", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0"}
|
1476
|
+
update hobbies using consistency QUORUM SET name = 'boating', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0' WHERE KEY IN ('adf9c4d6-00fb-11e2-8b0e-1ab52c4bb2bc')
|
1477
|
+
hobbies insert (1.2ms) adf9c4d6-00fb-11e2-8b0e-1ab52c4bb2bc {"name"=>"boating", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0"}
|
1478
|
+
update hobbies using consistency QUORUM SET name = 'jogging', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0' WHERE KEY IN ('adfa103a-00fb-11e2-9203-a7f6f6f5cc0f')
|
1479
|
+
hobbies insert (1.1ms) adfa103a-00fb-11e2-9203-a7f6f6f5cc0f {"name"=>"jogging", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0"}
|
1480
|
+
update hobbies using consistency QUORUM SET name = 'swimming', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0' WHERE KEY IN ('adfa55e0-00fb-11e2-8bbe-657dd2c71e50')
|
1481
|
+
hobbies insert (1.2ms) adfa55e0-00fb-11e2-8bbe-657dd2c71e50 {"name"=>"swimming", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0"}
|
1482
|
+
update hobbies using consistency QUORUM SET name = 'chess', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0' WHERE KEY IN ('adfa9ffa-00fb-11e2-8731-2548d7fe06ed')
|
1483
|
+
hobbies insert (1.0ms) adfa9ffa-00fb-11e2-8731-2548d7fe06ed {"name"=>"chess", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0"}
|
1484
|
+
TRUNCATE hobbies
|
1485
|
+
update hobbies using consistency QUORUM SET name = 'jogging', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0', complexity = '-1.2' WHERE KEY IN ('ae1bc478-00fb-11e2-9e88-7d59c0709e18')
|
1486
|
+
hobbies insert (1.6ms) ae1bc478-00fb-11e2-9e88-7d59c0709e18 {"name"=>"jogging", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0", "complexity"=>"-1.2"}
|
1487
|
+
TRUNCATE hobbies
|
1488
|
+
update hobbies using consistency QUORUM SET name = 'horseback riding', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0' WHERE KEY IN ('ae34bc76-00fb-11e2-98ab-f988c837e951')
|
1489
|
+
hobbies insert (1.6ms) ae34bc76-00fb-11e2-98ab-f988c837e951 {"name"=>"horseback riding", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0"}
|
1490
|
+
TRUNCATE hobbies
|
1491
|
+
update hobbies using consistency QUORUM SET name = 'horseback riding', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0' WHERE KEY IN ('ae571bfe-00fb-11e2-8f26-3ddd9b9b99ca')
|
1492
|
+
hobbies insert (2.2ms) ae571bfe-00fb-11e2-8f26-3ddd9b9b99ca {"name"=>"horseback riding", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0"}
|
1493
|
+
TRUNCATE hobbies
|
1494
|
+
update hobbies using consistency QUORUM SET name = 'jobbing', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0', complexity = '1.2' WHERE KEY IN ('ae70403e-00fb-11e2-8400-be0f8e7f9bf8')
|
1495
|
+
hobbies insert (1.8ms) ae70403e-00fb-11e2-8400-be0f8e7f9bf8 {"name"=>"jobbing", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0", "complexity"=>"1.2"}
|
1496
|
+
TRUNCATE hobbies
|
1497
|
+
update hobbies using consistency QUORUM SET name = 'Swimming', created_at = '2012-09-17T19:12:53Z', updated_at = '2012-09-17T19:12:53Z', schema_version = '0' WHERE KEY IN ('ae8bb558-00fb-11e2-8729-b555ba7f11a5')
|
1498
|
+
hobbies insert (1.6ms) ae8bb558-00fb-11e2-8729-b555ba7f11a5 {"name"=>"Swimming", "created_at"=>"2012-09-17T19:12:53Z", "updated_at"=>"2012-09-17T19:12:53Z", "schema_version"=>"0"}
|
1499
|
+
TRUNCATE hobbies
|
1500
|
+
update hobbies using consistency QUORUM SET name = 'Swimming', created_at = '2012-09-17T19:12:54Z', updated_at = '2012-09-17T19:12:54Z', schema_version = '0' WHERE KEY IN ('aea5a274-00fb-11e2-91c4-dc2ea5aa4eb2')
|
1501
|
+
hobbies insert (1.6ms) aea5a274-00fb-11e2-91c4-dc2ea5aa4eb2 {"name"=>"Swimming", "created_at"=>"2012-09-17T19:12:54Z", "updated_at"=>"2012-09-17T19:12:54Z", "schema_version"=>"0"}
|
1502
|
+
update hobbies using consistency QUORUM SET name = 'Biking', created_at = '2012-09-17T19:12:54Z', updated_at = '2012-09-17T19:12:54Z', schema_version = '0' WHERE KEY IN ('aea5ff94-00fb-11e2-8afc-742838b543b9')
|
1503
|
+
hobbies insert (1.2ms) aea5ff94-00fb-11e2-8afc-742838b543b9 {"name"=>"Biking", "created_at"=>"2012-09-17T19:12:54Z", "updated_at"=>"2012-09-17T19:12:54Z", "schema_version"=>"0"}
|
1504
|
+
TRUNCATE hobbies
|
1505
|
+
update hobbies using consistency QUORUM SET name = 'Swimming', created_at = '2012-09-17T19:12:54Z', updated_at = '2012-09-17T19:12:54Z', schema_version = '0' WHERE KEY IN ('aebfc640-00fb-11e2-9cb5-bb5635457e29')
|
1506
|
+
hobbies insert (1.8ms) aebfc640-00fb-11e2-9cb5-bb5635457e29 {"name"=>"Swimming", "created_at"=>"2012-09-17T19:12:54Z", "updated_at"=>"2012-09-17T19:12:54Z", "schema_version"=>"0"}
|
1507
|
+
TRUNCATE hobbies
|
1508
|
+
update hobbies using consistency QUORUM SET name = 'biking', created_at = '2012-09-17T19:12:54Z', updated_at = '2012-09-17T19:12:54Z', schema_version = '0', complexity = '1.0' WHERE KEY IN ('aedc9eaa-00fb-11e2-80a5-63d469b3ce67')
|
1509
|
+
hobbies insert (1.7ms) aedc9eaa-00fb-11e2-80a5-63d469b3ce67 {"name"=>"biking", "created_at"=>"2012-09-17T19:12:54Z", "updated_at"=>"2012-09-17T19:12:54Z", "schema_version"=>"0", "complexity"=>"1.0"}
|
1510
|
+
update hobbies using consistency QUORUM SET name = 'skydiving', created_at = '2012-09-17T19:12:54Z', updated_at = '2012-09-17T19:12:54Z', schema_version = '0', complexity = '4.0' WHERE KEY IN ('aedd03cc-00fb-11e2-8646-8d645d2bf051')
|
1511
|
+
hobbies insert (1.0ms) aedd03cc-00fb-11e2-8646-8d645d2bf051 {"name"=>"skydiving", "created_at"=>"2012-09-17T19:12:54Z", "updated_at"=>"2012-09-17T19:12:54Z", "schema_version"=>"0", "complexity"=>"4.0"}
|
1512
|
+
DELETE FROM hobbies USING CONSISTENCY QUORUM WHERE KEY IN ('aedd03cc-00fb-11e2-8646-8d645d2bf051')
|
1513
|
+
hobbies remove (0.9ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x116e6930>
|
1514
|
+
TRUNCATE hobbies
|
1515
|
+
update hobbies using consistency QUORUM SET name = 'biking', created_at = '2012-09-17T19:12:54Z', updated_at = '2012-09-17T19:12:54Z', schema_version = '0', complexity = '1.0' WHERE KEY IN ('aefa70ba-00fb-11e2-96cc-4f6528e32cca')
|
1516
|
+
hobbies insert (1.7ms) aefa70ba-00fb-11e2-96cc-4f6528e32cca {"name"=>"biking", "created_at"=>"2012-09-17T19:12:54Z", "updated_at"=>"2012-09-17T19:12:54Z", "schema_version"=>"0", "complexity"=>"1.0"}
|
1517
|
+
update hobbies using consistency QUORUM SET name = 'skydiving', created_at = '2012-09-17T19:12:54Z', updated_at = '2012-09-17T19:12:54Z', schema_version = '0', complexity = '4.0' WHERE KEY IN ('aefad8ca-00fb-11e2-919f-cf39ddc3794d')
|
1518
|
+
hobbies insert (1.2ms) aefad8ca-00fb-11e2-919f-cf39ddc3794d {"name"=>"skydiving", "created_at"=>"2012-09-17T19:12:54Z", "updated_at"=>"2012-09-17T19:12:54Z", "schema_version"=>"0", "complexity"=>"4.0"}
|
1519
|
+
SELECT updated_at,created_at,name,complexity FROM hobbies USING CONSISTENCY QUORUM WHERE key = 'aefa70ba-00fb-11e2-96cc-4f6528e32cca'
|
1520
|
+
DELETE FROM hobbies USING CONSISTENCY QUORUM WHERE KEY IN ('aefa70ba-00fb-11e2-96cc-4f6528e32cca')
|
1521
|
+
hobbies remove (0.9ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x116751e0>
|
1522
|
+
TRUNCATE hobbies
|
1523
|
+
update hobbies using consistency QUORUM SET name = 'biking', created_at = '2012-09-17T19:12:54Z', updated_at = '2012-09-17T19:12:54Z', schema_version = '0', complexity = '1.0' WHERE KEY IN ('af1bd12e-00fb-11e2-85f1-39e56e826809')
|
1524
|
+
hobbies insert (1.8ms) af1bd12e-00fb-11e2-85f1-39e56e826809 {"name"=>"biking", "created_at"=>"2012-09-17T19:12:54Z", "updated_at"=>"2012-09-17T19:12:54Z", "schema_version"=>"0", "complexity"=>"1.0"}
|
1525
|
+
update hobbies using consistency QUORUM SET name = 'skydiving', created_at = '2012-09-17T19:12:54Z', updated_at = '2012-09-17T19:12:54Z', schema_version = '0', complexity = '4.0' WHERE KEY IN ('af1c3cf4-00fb-11e2-9a9c-0d3e1f7c0c71')
|
1526
|
+
hobbies insert (1.3ms) af1c3cf4-00fb-11e2-9a9c-0d3e1f7c0c71 {"name"=>"skydiving", "created_at"=>"2012-09-17T19:12:54Z", "updated_at"=>"2012-09-17T19:12:54Z", "schema_version"=>"0", "complexity"=>"4.0"}
|
1527
|
+
SELECT updated_at,created_at,name,complexity FROM hobbies USING CONSISTENCY QUORUM WHERE key = 'af1bd12e-00fb-11e2-85f1-39e56e826809'
|
1528
|
+
DELETE FROM hobbies USING CONSISTENCY QUORUM WHERE KEY IN ('af1bd12e-00fb-11e2-85f1-39e56e826809')
|
1529
|
+
hobbies remove (0.9ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x1160b2e0>
|
1530
|
+
SELECT updated_at,created_at,name,complexity FROM hobbies USING CONSISTENCY QUORUM WHERE key = 'af1c3cf4-00fb-11e2-9a9c-0d3e1f7c0c71'
|
1531
|
+
DELETE FROM hobbies USING CONSISTENCY QUORUM WHERE KEY IN ('af1c3cf4-00fb-11e2-9a9c-0d3e1f7c0c71')
|
1532
|
+
hobbies remove (0.8ms) #<DatastaxRails::Identity::UUIDKeyFactory:0x115fb278>
|
1533
|
+
TRUNCATE hobbies
|
1534
|
+
update people using consistency QUORUM SET name = 'Jason', created_at = '2012-09-17T19:12:55Z', updated_at = '2012-09-17T19:12:55Z', nickname = 'Jason', schema_version = '0' WHERE KEY IN ('af3dbc44-00fb-11e2-8517-d32946a8eaa2')
|
1535
|
+
people insert (2.1ms) af3dbc44-00fb-11e2-8517-d32946a8eaa2 {"name"=>"Jason", "created_at"=>"2012-09-17T19:12:55Z", "updated_at"=>"2012-09-17T19:12:55Z", "nickname"=>"Jason", "schema_version"=>"0"}
|
1536
|
+
TRUNCATE people
|
1537
|
+
update people using consistency QUORUM SET name = 'Jason', created_at = '2012-09-17T19:12:55Z', updated_at = '2012-09-17T19:12:55Z', nickname = 'Jason', schema_version = '0' WHERE KEY IN ('af55d784-00fb-11e2-949e-bfa2f2c67d55')
|
1538
|
+
people insert (1.9ms) af55d784-00fb-11e2-949e-bfa2f2c67d55 {"name"=>"Jason", "created_at"=>"2012-09-17T19:12:55Z", "updated_at"=>"2012-09-17T19:12:55Z", "nickname"=>"Jason", "schema_version"=>"0"}
|
1539
|
+
TRUNCATE people
|
1540
|
+
SELECT updated_at,birthdate,nickname,created_at,name FROM people USING CONSISTENCY QUORUM WHERE key = 'xyzzy'
|
1541
|
+
update people using consistency QUORUM SET name = 'Jason', created_at = '2012-09-17T19:12:55Z', updated_at = '2012-09-17T19:12:55Z', nickname = 'Jason', schema_version = '0' WHERE KEY IN ('af715720-00fb-11e2-8265-c00dd33e4140')
|
1542
|
+
people insert (1.7ms) af715720-00fb-11e2-8265-c00dd33e4140 {"name"=>"Jason", "created_at"=>"2012-09-17T19:12:55Z", "updated_at"=>"2012-09-17T19:12:55Z", "nickname"=>"Jason", "schema_version"=>"0"}
|
1543
|
+
TRUNCATE people
|
1544
|
+
update people using consistency QUORUM SET name = 'Jason', created_at = '2012-09-17T19:12:55Z', birthdate = '1985-10-19T00:00:00Z', updated_at = '2012-09-17T19:12:55Z', nickname = 'Jason', schema_version = '0' WHERE KEY IN ('af8f67ec-00fb-11e2-97f9-4cb0d2787df0')
|
1545
|
+
people insert (63.7ms) af8f67ec-00fb-11e2-97f9-4cb0d2787df0 {"name"=>"Jason", "created_at"=>"2012-09-17T19:12:55Z", "birthdate"=>"1985-10-19T00:00:00Z", "updated_at"=>"2012-09-17T19:12:55Z", "nickname"=>"Jason", "schema_version"=>"0"}
|
1546
|
+
update people using consistency QUORUM SET name = 'Jason', created_at = '2012-09-17T19:12:55Z', birthdate = '1980-10-19T00:00:00Z', updated_at = '2012-09-17T19:12:55Z', nickname = 'Jason', schema_version = '0' WHERE KEY IN ('af8f67ec-00fb-11e2-97f9-4cb0d2787df0')
|
1547
|
+
people insert (1.6ms) af8f67ec-00fb-11e2-97f9-4cb0d2787df0 {"name"=>"Jason", "created_at"=>"2012-09-17T19:12:55Z", "birthdate"=>"1980-10-19T00:00:00Z", "updated_at"=>"2012-09-17T19:12:55Z", "nickname"=>"Jason", "schema_version"=>"0"}
|
1548
|
+
TRUNCATE people
|
1549
|
+
update jobs using consistency QUORUM SET created_at = '2012-09-17T19:12:55Z', title = 'Engineer', updated_at = '2012-09-17T19:12:55Z', schema_version = '0' WHERE KEY IN ('afbbc17a-00fb-11e2-815e-2f7d2910bf25')
|
1550
|
+
jobs insert (1.6ms) afbbc17a-00fb-11e2-815e-2f7d2910bf25 {"created_at"=>"2012-09-17T19:12:55Z", "title"=>"Engineer", "updated_at"=>"2012-09-17T19:12:55Z", "schema_version"=>"0"}
|
1551
|
+
TRUNCATE jobs
|
1552
|
+
update boats using consistency QUORUM SET created_at = '2012-09-17T19:12:56Z', updated_at = '2012-09-17T19:12:56Z', schema_version = '0' WHERE KEY IN ('afeffa30-00fb-11e2-999c-90fbb777898d')
|
1553
|
+
boats insert (60.6ms) afeffa30-00fb-11e2-999c-90fbb777898d {"created_at"=>"2012-09-17T19:12:56Z", "updated_at"=>"2012-09-17T19:12:56Z", "schema_version"=>"0"}
|
1554
|
+
TRUNCATE boats
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: datastax_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
|
11
|
-
version: 1.0.13.6
|
9
|
+
- 14
|
10
|
+
version: 1.0.14
|
12
11
|
platform: ruby
|
13
12
|
authors:
|
14
13
|
- Jason M. Kusar
|
@@ -16,7 +15,7 @@ autorequire:
|
|
16
15
|
bindir: bin
|
17
16
|
cert_chain: []
|
18
17
|
|
19
|
-
date: 2012-09-
|
18
|
+
date: 2012-09-18 00:00:00 Z
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
22
21
|
name: rails
|
@@ -123,6 +122,7 @@ files:
|
|
123
122
|
- lib/datastax_rails/schema/migration.rb
|
124
123
|
- lib/datastax_rails/schema/migrator.rb
|
125
124
|
- lib/datastax_rails/batches.rb
|
125
|
+
- lib/datastax_rails/serializers/xml_serializer.rb
|
126
126
|
- lib/datastax_rails/scoping.rb
|
127
127
|
- lib/datastax_rails/callbacks.rb
|
128
128
|
- lib/datastax_rails/cql.rb
|