Class: Couchbase::Options::Cluster

Inherits:
Object
  • Object
show all
Defined in:
lib/couchbase/options.rb

Overview

Options for Cluster.connect

Examples:

Pass authenticator object to Options

Cluster.connect("couchbase://localhost",
  Options::Cluster(authenticator: PasswordAuthenticator.new("Administrator", "password")))

Shorter version, more useful for interactive sessions

Cluster.connect("couchbase://localhost", "Administrator", "password")

Authentication with TLS client certificate (note couchbases:// schema)

Cluster.connect("couchbases://localhost?trust_certificate=/tmp/ca.pem",
  Options::Cluster(authenticator: CertificateAuthenticator.new("/tmp/certificate.pem", "/tmp/private.key")))

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(authenticator: nil, enable_metrics: nil, metrics_emit_interval: nil, enable_tracing: nil, orphaned_emit_interval: nil, orphaned_sample_size: nil, threshold_emit_interval: nil, threshold_sample_size: nil, key_value_threshold: nil, query_threshold: nil, view_threshold: nil, search_threshold: nil, analytics_threshold: nil, management_threshold: nil, bootstrap_timeout: nil, resolve_timeout: nil, connect_timeout: nil, key_value_timeout: nil, view_timeout: nil, query_timeout: nil, analytics_timeout: nil, search_timeout: nil, management_timeout: nil, dns_srv_timeout: nil, tcp_keep_alive_interval: nil, config_poll_interval: nil, config_poll_floor: nil, config_idle_redial_timeout: nil, idle_http_connection_timeout: nil) {|self| ... } ⇒ Cluster

Creates an instance of options for Cluster.connect

Parameters:

  • authenticator (PasswordAuthenticator, CertificateAuthenticator) (defaults to: nil)
  • key_value_timeout (nil, Integer, #in_milliseconds) (defaults to: nil)

    default timeout for Key/Value operations, e.g. Collection#get

  • view_timeout (nil, Integer, #in_milliseconds) (defaults to: nil)

    default timeout for View query

  • query_timeout (nil, Integer, #in_milliseconds) (defaults to: nil)

    default timeout for N1QL query

  • analytics_timeout (nil, Integer, #in_milliseconds) (defaults to: nil)

    default timeout for Analytics query

  • search_timeout (nil, Integer, #in_milliseconds) (defaults to: nil)

    default timeout for Search query

  • management_timeout (nil, Integer, #in_milliseconds) (defaults to: nil)

    default timeout for management operations

Yield Parameters:

See Also:



1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
# File 'lib/couchbase/options.rb', line 1690

def initialize(authenticator: nil,
               enable_metrics: nil,
               metrics_emit_interval: nil,
               enable_tracing: nil,
               orphaned_emit_interval: nil,
               orphaned_sample_size: nil,
               threshold_emit_interval: nil,
               threshold_sample_size: nil,
               key_value_threshold: nil,
               query_threshold: nil,
               view_threshold: nil,
               search_threshold: nil,
               analytics_threshold: nil,
               management_threshold: nil,
               bootstrap_timeout: nil,
               resolve_timeout: nil,
               connect_timeout: nil,
               key_value_timeout: nil,
               view_timeout: nil,
               query_timeout: nil,
               analytics_timeout: nil,
               search_timeout: nil,
               management_timeout: nil,
               dns_srv_timeout: nil,
               tcp_keep_alive_interval: nil,
               config_poll_interval: nil,
               config_poll_floor: nil,
               config_idle_redial_timeout: nil,
               idle_http_connection_timeout: nil)
  @authenticator = authenticator
  @enable_metrics = enable_metrics
  @metrics_emit_interval = metrics_emit_interval
  @enable_tracing = enable_tracing
  @orphaned_emit_interval = orphaned_emit_interval
  @orphaned_sample_size = orphaned_sample_size
  @threshold_emit_interval = threshold_emit_interval
  @threshold_sample_size = threshold_sample_size
  @key_value_threshold = key_value_threshold
  @query_threshold = query_threshold
  @view_threshold = view_threshold
  @search_threshold = search_threshold
  @analytics_threshold = analytics_threshold
  @management_threshold = management_threshold
  @bootstrap_timeout = bootstrap_timeout
  @resolve_timeout = resolve_timeout
  @connect_timeout = connect_timeout
  @key_value_timeout = key_value_timeout
  @view_timeout = view_timeout
  @query_timeout = query_timeout
  @analytics_timeout = analytics_timeout
  @search_timeout = search_timeout
  @management_timeout = management_timeout
  @dns_srv_timeout = dns_srv_timeout
  @tcp_keep_alive_interval = tcp_keep_alive_interval
  @config_poll_interval = config_poll_interval
  @config_poll_floor = config_poll_floor
  @config_idle_redial_timeout = config_idle_redial_timeout
  @idle_http_connection_timeout = idle_http_connection_timeout
  yield self if block_given?
end

Instance Attribute Details

#analytics_thresholdnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1658
1659
1660
# File 'lib/couchbase/options.rb', line 1658

def analytics_threshold
  @analytics_threshold
end

#analytics_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1667
1668
1669
# File 'lib/couchbase/options.rb', line 1667

def analytics_timeout
  @analytics_timeout
end

#authenticatorPasswordAuthenticator, CertificateAuthenticator



1645
1646
1647
# File 'lib/couchbase/options.rb', line 1645

def authenticator
  @authenticator
end

#bootstrap_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1661
1662
1663
# File 'lib/couchbase/options.rb', line 1661

def bootstrap_timeout
  @bootstrap_timeout
end

#config_idle_redial_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1674
1675
1676
# File 'lib/couchbase/options.rb', line 1674

def config_idle_redial_timeout
  @config_idle_redial_timeout
end

#config_poll_floornil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1673
1674
1675
# File 'lib/couchbase/options.rb', line 1673

def config_poll_floor
  @config_poll_floor
end

#config_poll_intervalnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1672
1673
1674
# File 'lib/couchbase/options.rb', line 1672

def config_poll_interval
  @config_poll_interval
end

#connect_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1663
1664
1665
# File 'lib/couchbase/options.rb', line 1663

def connect_timeout
  @connect_timeout
end

#dns_srv_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1670
1671
1672
# File 'lib/couchbase/options.rb', line 1670

def dns_srv_timeout
  @dns_srv_timeout
end

#enable_metricsBoolean

Returns:

  • (Boolean)


1647
1648
1649
# File 'lib/couchbase/options.rb', line 1647

def enable_metrics
  @enable_metrics
end

#enable_tracingBoolean

Returns:

  • (Boolean)


1649
1650
1651
# File 'lib/couchbase/options.rb', line 1649

def enable_tracing
  @enable_tracing
end

#idle_http_connection_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1675
1676
1677
# File 'lib/couchbase/options.rb', line 1675

def idle_http_connection_timeout
  @idle_http_connection_timeout
end

#key_value_thresholdnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1654
1655
1656
# File 'lib/couchbase/options.rb', line 1654

def key_value_threshold
  @key_value_threshold
end

#key_value_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1664
1665
1666
# File 'lib/couchbase/options.rb', line 1664

def key_value_timeout
  @key_value_timeout
end

#management_thresholdnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1659
1660
1661
# File 'lib/couchbase/options.rb', line 1659

def management_threshold
  @management_threshold
end

#management_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1669
1670
1671
# File 'lib/couchbase/options.rb', line 1669

def management_timeout
  @management_timeout
end

#metrics_emit_intervalnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1648
1649
1650
# File 'lib/couchbase/options.rb', line 1648

def metrics_emit_interval
  @metrics_emit_interval
end

#orphaned_emit_intervalnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1650
1651
1652
# File 'lib/couchbase/options.rb', line 1650

def orphaned_emit_interval
  @orphaned_emit_interval
end

#orphaned_sample_sizenil, Integer

Returns:

  • (nil, Integer)


1651
1652
1653
# File 'lib/couchbase/options.rb', line 1651

def orphaned_sample_size
  @orphaned_sample_size
end

#query_thresholdnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1655
1656
1657
# File 'lib/couchbase/options.rb', line 1655

def query_threshold
  @query_threshold
end

#query_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1666
1667
1668
# File 'lib/couchbase/options.rb', line 1666

def query_timeout
  @query_timeout
end

#resolve_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1662
1663
1664
# File 'lib/couchbase/options.rb', line 1662

def resolve_timeout
  @resolve_timeout
end

#search_thresholdnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1657
1658
1659
# File 'lib/couchbase/options.rb', line 1657

def search_threshold
  @search_threshold
end

#search_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1668
1669
1670
# File 'lib/couchbase/options.rb', line 1668

def search_timeout
  @search_timeout
end

#tcp_keep_alive_intervalnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1671
1672
1673
# File 'lib/couchbase/options.rb', line 1671

def tcp_keep_alive_interval
  @tcp_keep_alive_interval
end

#threshold_emit_intervalnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1652
1653
1654
# File 'lib/couchbase/options.rb', line 1652

def threshold_emit_interval
  @threshold_emit_interval
end

#threshold_sample_sizenil, Integer

Returns:

  • (nil, Integer)


1653
1654
1655
# File 'lib/couchbase/options.rb', line 1653

def threshold_sample_size
  @threshold_sample_size
end

#view_thresholdnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1656
1657
1658
# File 'lib/couchbase/options.rb', line 1656

def view_threshold
  @view_threshold
end

#view_timeoutnil, ...

Returns:

  • (nil, Integer, #in_milliseconds)


1665
1666
1667
# File 'lib/couchbase/options.rb', line 1665

def view_timeout
  @view_timeout
end

Instance Method Details

#apply_profile(profile_name) ⇒ Object

Parameters:

  • profile_name (String)

    The name of the configuration profile to apply (e.g. “wan_development”)



1758
1759
1760
# File 'lib/couchbase/options.rb', line 1758

def apply_profile(profile_name)
  ConfigProfiles::KNOWN_PROFILES.apply(profile_name, self)
end

#authenticate(username, password) ⇒ Object

Parameters:

  • username (String)
  • password (String)


1753
1754
1755
# File 'lib/couchbase/options.rb', line 1753

def authenticate(username, password)
  @authenticator = PasswordAuthenticator.new(username, password)
end