Class: Google::Cloud::Spanner::Partition
- Inherits:
-
Object
- Object
- Google::Cloud::Spanner::Partition
- Defined in:
- lib/google/cloud/spanner/partition.rb
Overview
Partition
Defines the segments of data to be read in a batch read/query context. A Partition instance can be serialized and used across several different machines or processes.
See BatchSnapshot#partition_read, BatchSnapshot#partition_query, and BatchSnapshot#execute_partition.
Instance Attribute Summary collapse
-
#execute ⇒ Object
readonly
@ private.
-
#read ⇒ Object
readonly
Returns the value of attribute read.
Class Method Summary collapse
-
.load(data) ⇒ Google::Cloud::Spanner::Partition
Returns a Partition from a serialized representation.
Instance Method Summary collapse
-
#dump ⇒ String
(also: #serialize)
Serializes the batch partition object so it can be recreated on another process.
-
#execute_query? ⇒ Boolean
(also: #execute?, #execute_sql?, #query?)
Whether the partition was created for an execute_query/query operation.
-
#read? ⇒ Boolean
Whether the partition was created for a read operation.
Instance Attribute Details
#execute ⇒ Object (readonly)
@ private
48 49 50 |
# File 'lib/google/cloud/spanner/partition.rb', line 48 def execute @execute end |
#read ⇒ Object (readonly)
Returns the value of attribute read.
49 50 51 |
# File 'lib/google/cloud/spanner/partition.rb', line 49 def read @read end |
Class Method Details
.load(data) ⇒ Google::Cloud::Spanner::Partition
Returns a Google::Cloud::Spanner::Partition from a serialized representation.
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/google/cloud/spanner/partition.rb', line 170 def self.load data data = JSON.parse data, symbolize_names: true unless data.is_a? Hash # TODO: raise if hash[:execute_query].nil? && hash[:read].nil? new.tap do |p| if data[:execute] execute_sql_grpc = \ V1::ExecuteSqlRequest.decode( Base64.decode64(data[:execute]) ) p.instance_variable_set :@execute, execute_sql_grpc end if data[:read] read_grpc = V1::ReadRequest.decode \ Base64.decode64(data[:read]) p.instance_variable_set :@read, read_grpc end end end |
Instance Method Details
#dump ⇒ String Also known as: serialize
Serializes the batch partition object so it can be recreated on another process. See load and BatchClient#load_partition.
131 132 133 |
# File 'lib/google/cloud/spanner/partition.rb', line 131 def dump JSON.dump to_h end |
#execute_query? ⇒ Boolean Also known as: execute?, execute_sql?, query?
Whether the partition was created for an execute_query/query operation.
60 61 62 |
# File 'lib/google/cloud/spanner/partition.rb', line 60 def execute_query? !@execute.nil? end |
#read? ⇒ Boolean
Whether the partition was created for a read operation.
70 71 72 |
# File 'lib/google/cloud/spanner/partition.rb', line 70 def read? !@read.nil? end |