ACID Transactions

AttentionThis page documents an earlier version. Go to the latest (v2.1)version.

A transaction is a sequence of operations performed as a single logical unit of work. A transaction has four key properties - Atomicity, Consistency, Isolation and Durability - commonly abbreviated as ACID.

  • Atomicity All the work in a transaction is treated as a single atomic unit - either all of it is performed or none of it is.

  • Consistency A completed transaction leaves the database in a consistent internal state. This can either be all the operations in the transactions succeeding or none of them succeeding.

  • Isolation This property determines how/when changes made by one transaction become visible to the other. For example, a serializable isolation level guarantees that two concurrent transactions appear as if one executed after the other (i.e. as if they occur in a completely isolated fashion). Currently, YugabyteDB supports Snapshot Isolation, and Serializable isolation level is in progress. Read more about the different levels of isolation.

  • Durability The results of the transaction are permanently stored in the system. The modifications must persist even in the instance of power loss or system failures.

Creating the table

The table should be created with the transactions property enabled. The statement should look something as follows.

  1. CREATE TABLE IF NOT EXISTS <TABLE_NAME> (...) WITH transactions = { 'enabled' : true };

Java example

Here is an example of how to create a simple key-value table which has two columns with transactions enabled.

  1. String create_stmt =
  2. String.format("CREATE TABLE IF NOT EXISTS %s (k varchar, v varchar, primary key (k)) " +
  3. "WITH transactions = { 'enabled' : true };",
  4. tablename);

Inserting or updating data

You can insert data by performing the sequence of commands inside a BEGIN TRANSACTION and END TRANSACTION block.

  1. BEGIN TRANSACTION
  2. statement 1
  3. statement 2
  4. END TRANSACTION;

Java example

Here is a code snippet of how you would insert data into this table.

  1. // Insert two key values, (key1, value1) and (key2, value2) as a transaction.
  2. String create_stmt =
  3. String.format("BEGIN TRANSACTION" +
  4. " INSERT INTO %s (k, v) VALUES (%s, %s);" +
  5. " INSERT INTO %s (k, v) VALUES (%s, %s);" +
  6. "END TRANSACTION;",
  7. tablename, key1, value1,
  8. tablename, key2, value2;

Prepare-bind transactions

You can prepare statements with transactions and bind variables to the prepared statements when executing the query.

Java example

  1. String create_stmt =
  2. String.format("BEGIN TRANSACTION" +
  3. " INSERT INTO %s (k, v) VALUES (:k1, :v1);" +
  4. " INSERT INTO %s (k, v) VALUES (:k1, :v2);" +
  5. "END TRANSACTION;",
  6. tablename, key1, value1,
  7. tablename, key2, value2;
  8. PreparedStatement pstmt = client.prepare(create_stmt);
  9. ...
  10. BoundStatement txn1 = pstmt.bind().setString("k1", key1)
  11. .setString("v1", value1)
  12. .setString("k2", key2)
  13. .setString("v2", value2);
  14. ResultSet resultSet = client.execute(txn1);

Sample Java Application

You can find a working example of using transactions with Yugabyte in our sample applications. This application writes out string keys in pairs, with each pair of keys having the same value written as a transaction. There are multiple readers and writers that update and read these pair of keys. The number of reads and writes to perform can be specified as a parameter.

Here is how you can try out this sample application.

  1. Usage:
  2. java -jar yb-sample-apps.jar \
  3. --workload CassandraTransactionalKeyValue \
  4. --nodes 127.0.0.1:9042
  5. Other options (with default values):
  6. [ --num_unique_keys 1000000 ]
  7. [ --num_reads -1 ]
  8. [ --num_writes -1 ]
  9. [ --value_size 0 ]
  10. [ --num_threads_read 24 ]
  11. [ --num_threads_write 2 ]

Browse the Java source code for the batch application to see how everything fits together.

Note on Linearizability

By default, the original Cassandra Java driver and the YugabyteDB Cassandra Java driver use com.datastax.driver.core.policies.DefaultRetryPolicywhich can retry requests upon timeout on client side.

Automatic retries can break linearizability of operations from the client point of view.Therefore we have added com.yugabyte.driver.core.policies.NoRetryOnClientTimeoutPolicy which inherits behavior from DefaultRetryPolicy with oneexception - it results in an error in case the operation times out (with the OperationTimedOutException).

Under network partitions, this can lead to the case when client gets a successful response to retried request and treatsthe operation as completed, but the value might get overwritten by an older operation due to retries.

To avoid such linearizability issues, use com.yugabyte.driver.core.policies.NoRetryOnClientTimeoutPolicy and handleclient timeouts in the application layer.