Class: Cequel::Metal::Batch Private

Inherits:
Object
  • Object
show all
Defined in:
lib/cequel/metal/batch.rb

Overview

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

Encapsulates a batch operation

See Also:

  • Keyspace::batch

Since:

  • 1.0.0

Instance Method Summary collapse

Constructor Details

#initialize(keyspace, options = {}) ⇒ Batch

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 Batch.

Parameters:

  • keyspace (Keyspace)

    the keyspace that this batch will be executed on

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :auto_apply (Integer)

    If specified, flush the batch after this many statements have been added.

  • :unlogged (Boolean) — default: false

    Whether to use an [unlogged batch]( www.datastax.com/dev/blog/atomic-batches-in-cassandra-1-2). Logged batches guarantee atomicity (but not isolation) at the cost of a performance penalty; unlogged batches are useful for bulk write operations but behave the same as discrete writes.

See Also:

Since:

  • 1.0.0



26
27
28
29
30
31
# File 'lib/cequel/metal/batch.rb', line 26

def initialize(keyspace, options = {})
  @keyspace = keyspace
  @auto_apply = options[:auto_apply]
  @unlogged = options.fetch(:unlogged, false)
  reset
end

Instance Method Details

#applyObject

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.

Send the batch to Cassandra

Since:

  • 1.0.0



50
51
52
53
54
55
56
57
# File 'lib/cequel/metal/batch.rb', line 50

def apply
  return if @statement_count.zero?
  if @statement_count > 1
    @statement.prepend(begin_statement)
    @statement.append("APPLY BATCH\n")
  end
  @keyspace.execute(*@statement.args)
end

#execute(cql, *bind_vars) ⇒ Object

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.

Add a statement to the batch.

Parameters:

  • statement (String)

    CQL string

  • bind_vars (Object)

    values for bind variables

Since:

  • 1.0.0



38
39
40
41
42
43
44
45
# File 'lib/cequel/metal/batch.rb', line 38

def execute(cql, *bind_vars)
  @statement.append("#{cql}\n", *bind_vars)
  @statement_count += 1
  if @auto_apply && @statement_count >= @auto_apply
    apply
    reset
  end
end

#logged?Boolean

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.

Is this a logged batch?

Returns:

  • (Boolean)

Since:

  • 1.0.0



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

def logged?
  !unlogged?
end

#unlogged?Boolean

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.

Is this an unlogged batch?

Returns:

  • (Boolean)

Since:

  • 1.0.0



63
64
65
# File 'lib/cequel/metal/batch.rb', line 63

def unlogged?
  @unlogged
end