Class: Google::Cloud::Spanner::Database::Job

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/spanner/database/job.rb

Overview

# Job

A resource representing the long-running, asynchronous processing of a database create or update operation. The job can be refreshed to retrieve the database object once the operation has been completed.

See Project#create_database and #update.

Examples:

require "google/cloud/spanner"

spanner = Google::Cloud::Spanner.new

job = spanner.create_database "my-instance",
                              "my-new-database"

job.done? #=> false
job.reload! # API call
job.done? #=> true
database = job.database

See Also:

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeJob

Returns a new instance of Job.



57
58
59
60
# File 'lib/google/cloud/spanner/database/job.rb', line 57

def initialize
  @grpc = nil
  @service = nil
end

Instance Attribute Details

#grpcObject



49
50
51
# File 'lib/google/cloud/spanner/database/job.rb', line 49

def grpc
  @grpc
end

#serviceObject



53
54
55
# File 'lib/google/cloud/spanner/database/job.rb', line 53

def service
  @service
end

Class Method Details

.from_grpc(grpc, service) ⇒ Object



196
197
198
199
200
201
# File 'lib/google/cloud/spanner/database/job.rb', line 196

def self.from_grpc grpc, service
  new.tap do |job|
    job.instance_variable_set :@grpc, grpc
    job.instance_variable_set :@service, service
  end
end

Instance Method Details

#databaseGoogle::Cloud::Spanner::Database?

The database that is the object of the operation.

Examples:

require "google/cloud/spanner"

spanner = Google::Cloud::Spanner.new

job = spanner.create_database "my-instance",
                              "my-new-database"

job.done? #=> false
job.reload!
job.done? #=> true
database = job.database

Returns:



81
82
83
84
85
# File 'lib/google/cloud/spanner/database/job.rb', line 81

def database
  return nil unless done?
  return nil unless @grpc.grpc_op.result == :response
  Database.from_grpc @grpc.results, service
end

#done?boolean

Checks if the processing of the database operation is complete.

Examples:

require "google/cloud/spanner"

spanner = Google::Cloud::Spanner.new

job = spanner.create_database "my-instance",
                              "my-new-database"

job.done? #=> false

Returns:

  • (boolean)

    ‘true` when complete, `false` otherwise.



102
103
104
# File 'lib/google/cloud/spanner/database/job.rb', line 102

def done?
  @grpc.done?
end

#errorGoogle::Cloud::Spanner::Status?

The status if the operation associated with this job produced an error.

Examples:

require "google/cloud/spanner"

spanner = Google::Cloud::Spanner.new

job = spanner.create_database "my-instance",
                              "my-new-database"

job.error? # true

error = job.error

Returns:



144
145
146
147
# File 'lib/google/cloud/spanner/database/job.rb', line 144

def error
  return nil unless error?
  Google::Cloud::Spanner::Status.from_grpc @grpc.error
end

#error?boolean

Checks if the processing of the database operation has errored.

Examples:

require "google/cloud/spanner"

spanner = Google::Cloud::Spanner.new

job = spanner.create_database "my-instance",
                              "my-new-database"

job.error? #=> false

Returns:

  • (boolean)

    ‘true` when errored, `false` otherwise.



121
122
123
# File 'lib/google/cloud/spanner/database/job.rb', line 121

def error?
  @grpc.error?
end

#reload!Google::Cloud::Spanner::Database::Job Also known as: refresh!

Reloads the job with current data from the long-running, asynchronous processing of a database operation.

Examples:

require "google/cloud/spanner"

spanner = Google::Cloud::Spanner.new

job = spanner.create_database "my-instance",
                              "my-new-database"

job.done? #=> false
job.reload! # API call
job.done? #=> true

Returns:



168
169
170
171
# File 'lib/google/cloud/spanner/database/job.rb', line 168

def reload!
  @grpc.reload!
  self
end

#wait_until_done!Object

Reloads the job until the operation is complete. The delay between reloads will incrementally increase.

Examples:

require "google/cloud/spanner"

spanner = Google::Cloud::Spanner.new

job = spanner.create_database "my-instance",
                              "my-new-database"

job.done? #=> false
job.wait_until_done!
job.done? #=> true


190
191
192
# File 'lib/google/cloud/spanner/database/job.rb', line 190

def wait_until_done!
  @grpc.wait_until_done!
end