Class: Cequel::Metal::Keyspace

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
Logging, MonitorMixin
Defined in:
lib/cequel/metal/keyspace.rb

Overview

Handle to a Cassandra keyspace (database). Keyspace objects are factories for DataSet instances and provide a handle to a Schema::Keyspace instance.

Since:

  • 1.0.0

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Logging

#slowlog=

Constructor Details

#initialize(configuration = {}) ⇒ Keyspace

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Keyspace.

Parameters:

  • configuration (Options) (defaults to: {})

Options Hash (configuration):

  • :host (String) — default: '127.0.0.1'

    hostname of single Cassandra instance to connect to

  • :port (Integer) — default: 9042

    port on which to connect to all specified hosts

  • :hosts (Array<String>)

    list of Cassandra instances to connect to (hostnames only)

  • :username (String)

    user to auth with (leave blank for no auth)

  • :password (String)

    password to auth with (leave blank for no auth)

  • :keyspace (String)

    name of keyspace to connect to

See Also:

Since:

  • 1.0.0



88
89
90
91
# File 'lib/cequel/metal/keyspace.rb', line 88

def initialize(configuration={})
  configure(configuration)
  @lock = Monitor.new
end

Instance Attribute Details

#configurationHash (readonly)

Returns configuration options for this keyspace.

Returns:

  • (Hash)

    configuration options for this keyspace

Since:

  • 1.0.0



17
18
19
# File 'lib/cequel/metal/keyspace.rb', line 17

def configuration
  @configuration
end

#credentialsHash (readonly)

Returns credentials for connect to cassandra.

Returns:

  • (Hash)

    credentials for connect to cassandra

Since:

  • 1.0.0



28
29
30
# File 'lib/cequel/metal/keyspace.rb', line 28

def credentials
  @credentials
end

#default_consistencySymbol

Returns the default consistency for queries in this keyspace.

Returns:

  • (Symbol)

    the default consistency for queries in this keyspace

Since:

  • 1.1.0



194
195
196
# File 'lib/cequel/metal/keyspace.rb', line 194

def default_consistency
  @default_consistency || :quorum
end

#hostsArray<String> (readonly)

Returns list of hosts to connect to.

Returns:

  • (Array<String>)

    list of hosts to connect to

Since:

  • 1.0.0



21
22
23
# File 'lib/cequel/metal/keyspace.rb', line 21

def hosts
  @hosts
end

#nameString (readonly)

Returns name of the keyspace.

Returns:

  • (String)

    name of the keyspace

Since:

  • 1.0.0



19
20
21
# File 'lib/cequel/metal/keyspace.rb', line 19

def name
  @name
end

#portObject (readonly)

Returns Integer port to connect to Cassandra nodes on.

Returns:

  • Integer port to connect to Cassandra nodes on

Since:

  • 1.0.0



23
24
25
# File 'lib/cequel/metal/keyspace.rb', line 23

def port
  @port
end

Class Method Details

.sanitize(statement, bind_vars) ⇒ String

Combine a statement with bind vars into a fully-fledged CQL query. This will no longer be needed once the CQL driver supports bound values natively.

Parameters:

  • statement (String)

    CQL statement with ? placeholders for bind vars

  • bind_vars (Array)

    bind variables corresponding to ? in the statement

Returns:

  • (String)

    CQL statement with quoted values in place of bind variables

Since:

  • 1.0.0



71
72
73
74
# File 'lib/cequel/metal/keyspace.rb', line 71

def self.sanitize(statement, bind_vars)
  each_bind_var = bind_vars.each
  statement.gsub('?') { Type.quote(each_bind_var.next) }
end

Instance Method Details

#[](table_name) ⇒ DataSet

Returns data set encapsulating table.

Parameters:

  • table_name (Symbol)

    the name of the table

Returns:

  • (DataSet)

    data set encapsulating table

Since:

  • 1.0.0



136
137
138
# File 'lib/cequel/metal/keyspace.rb', line 136

def [](table_name)
  DataSet.new(table_name.to_sym, self)
end

#batch { ... } ⇒ Object

Note:

If this method is created while already in a batch of the same type (logged or unlogged), this method is a no-op.

Execute write operations in a batch. Any inserts, updates, and deletes inside this method’s block will be executed inside a CQL BATCH operation.

Examples:

Perform inserts in a batch

DB.batch do
  DB[:posts].insert(:id => 1, :title => 'One')
  DB[:posts].insert(:id => 2, :title => 'Two')
end

Parameters:

  • options (Hash)

Yields:

  • context within which all write operations will be batched

Returns:

  • return value of block

Raises:

  • (ArgumentError)

    if attempting to start a logged batch while already in an unlogged batch, or vice versa.



57
# File 'lib/cequel/metal/keyspace.rb', line 57

def_delegator :batch_manager, :batch

#clear_active_connections!void

This method returns an undefined value.

Clears all active connections

Since:

  • 1.0.0



184
185
186
187
188
# File 'lib/cequel/metal/keyspace.rb', line 184

def clear_active_connections!
  if defined? @client
    remove_instance_variable(:@client)
  end
end

#clientCql::Client::Client

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns the low-level client provided by the adapter.

Returns:

  • (Cql::Client::Client)

    the low-level client provided by the adapter

Since:

  • 1.0.0



145
146
147
# File 'lib/cequel/metal/keyspace.rb', line 145

def client
  synchronize { @client ||= build_client }
end

#configure(configuration = {}) ⇒ void

This method returns an undefined value.

Configure this keyspace from a hash of options

Parameters:

  • configuration (Options) (defaults to: {})

    configuration options

Options Hash (configuration):

  • :host (String) — default: '127.0.0.1'

    hostname of single Cassandra instance to connect to

  • :port (Integer) — default: 9042

    port on which to connect to all specified hosts

  • :hosts (Array<String>)

    list of Cassandra instances to connect to (hostnames only)

  • :username (String)

    user to auth with (leave blank for no auth)

  • :password (String)

    password to auth with (leave blank for no auth)

  • :keyspace (String)

    name of keyspace to connect to

Since:

  • 1.0.0



110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'lib/cequel/metal/keyspace.rb', line 110

def configure(configuration = {})
  if configuration.key?(:thrift)
    warn "Cequel no longer uses the Thrift transport to communicate " \
         "with Cassandra. The :thrift option is deprecated and ignored."
  end
  @configuration = configuration

  @hosts, @port = extract_hosts_and_port(configuration)
  @credentials = extract_credentials(configuration)

  @name = configuration[:keyspace]
  # reset the connections
  clear_active_connections!
end

#execute(statement, *bind_vars) ⇒ Enumerable

Execute a CQL query in this keyspace

Parameters:

  • statement (String)

    CQL string

  • bind_vars (Object)

    values for bind variables

Returns:

  • (Enumerable)

    the results of the query

See Also:

Since:

  • 1.0.0



158
159
160
# File 'lib/cequel/metal/keyspace.rb', line 158

def execute(statement, *bind_vars)
  execute_with_consistency(statement, bind_vars, default_consistency)
end

#execute_with_consistency(statement, bind_vars, consistency) ⇒ Enumerable

Execute a CQL query in this keyspace with the given consistency

Parameters:

  • statement (String)

    CQL string

  • bind_vars (Array)

    array of values for bind variables

  • consistency (Symbol)

    consistency at which to execute query

Returns:

  • (Enumerable)

    the results of the query

Since:

  • 1.1.0



172
173
174
175
176
177
# File 'lib/cequel/metal/keyspace.rb', line 172

def execute_with_consistency(statement, bind_vars, consistency)
  log('CQL', statement, *bind_vars) do
    client.execute(sanitize(statement, bind_vars),
                   consistency || default_consistency)
  end
end

#sanitizeString

Combine a statement with bind vars into a fully-fledged CQL query. This will no longer be needed once the CQL driver supports bound values natively.

Parameters:

  • statement (String)

    CQL statement with ? placeholders for bind vars

  • bind_vars (Array)

    bind variables corresponding to ? in the statement

Returns:

  • (String)

    CQL statement with quoted values in place of bind variables



80
# File 'lib/cequel/metal/keyspace.rb', line 80

def_delegator 'self.class', :sanitize

#schemaSchema::Keyspace

Returns schema object providing full read/write access to database schema.

Returns:

  • (Schema::Keyspace)

    schema object providing full read/write access to database schema

Since:

  • 1.0.0



128
129
130
# File 'lib/cequel/metal/keyspace.rb', line 128

def schema
  Schema::Keyspace.new(self)
end

#write(statement, *bind_vars) ⇒ void

This method returns an undefined value.

Write data to this keyspace using a CQL query. Will be included the current batch operation if one is present.



39
# File 'lib/cequel/metal/keyspace.rb', line 39

def_delegator :write_target, :execute, :write

#write_with_consistency(statement, bind_vars, consistency) ⇒ void

This method returns an undefined value.

Write data to this keyspace using a CQL query at the given consistency. Will be included the current batch operation if one is present.



50
51
# File 'lib/cequel/metal/keyspace.rb', line 50

def_delegator :write_target, :execute_with_consistency,
:write_with_consistency