Class: Google::Cloud::Bigtable::Admin::V2::AppProfile::DataBoostIsolationReadOnly

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/bigtable/admin/v2/instance.rb

Overview

Data Boost is a serverless compute capability that lets you run high-throughput read jobs on your Bigtable data, without impacting the performance of the clusters that handle your application traffic. Currently, Data Boost exclusively supports read-only use-cases with single-cluster routing.

Data Boost reads are only guaranteed to see the results of writes that were written at least 30 minutes ago. This means newly written values may not become visible for up to 30m, and also means that old values may remain visible for up to 30m after being deleted or overwritten. To mitigate the staleness of the data, users may either wait 30m, or use CheckConsistency.

Defined Under Namespace

Modules: ComputeBillingOwner

Instance Attribute Summary collapse

Instance Attribute Details

#compute_billing_owner::Google::Cloud::Bigtable::Admin::V2::AppProfile::DataBoostIsolationReadOnly::ComputeBillingOwner

Returns The Compute Billing Owner for this Data Boost App Profile.

Returns:



341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
# File 'proto_docs/google/bigtable/admin/v2/instance.rb', line 341

class DataBoostIsolationReadOnly
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Compute Billing Owner specifies how usage should be accounted when using
  # Data Boost. Compute Billing Owner also configures which Cloud Project is
  # charged for relevant quota.
  module ComputeBillingOwner
    # Unspecified value.
    COMPUTE_BILLING_OWNER_UNSPECIFIED = 0

    # The host Cloud Project containing the targeted Bigtable Instance /
    # Table pays for compute.
    HOST_PAYS = 1
  end
end