Good use of BATCH statement
How to use a BATCH statement.
cyclist_expenses:
CREATE TABLE IF NOT EXISTS cycling.cyclist_expenses ( cyclist_name text, balance float STATIC, expense_id int, amount float, description text, paid boolean, PRIMARY KEY (cyclist_name, expense_id) );Note that
balance is STATIC.Procedure
-
The first INSERT in the
BATCHstatement sets thebalanceto zero. The next two statements insert anexpense_idand change thebalancevalue. All theINSERTandUPDATEstatements in this batch write to the same partition, keeping the latency of the write operation low.BEGIN BATCH INSERT INTO cycling.cyclist_expenses ( cyclist_name, balance ) VALUES ( 'Vera ADRIAN', 0 ) IF NOT EXISTS; INSERT INTO cycling.cyclist_expenses ( cyclist_name, expense_id, amount, description, paid ) VALUES ( 'Vera ADRIAN', 1, 7.95, 'Breakfast', false ); APPLY BATCH;This batching example includes conditional updates combined with using static columns. Recall that single partition batches are not logged.
Note: It would be reasonable to expect that an UPDATE to the balance could be included in this BATCH statement:UPDATE cycling.cyclist_expenses SET balance = -7.95 WHERE cyclist_name = 'Vera ADRIAN' IF balance = 0;
However, it is important to understand that all the statements processed in aBATCHstatement timestamp the records with the same value. The operations may not perform in the order listed in theBATCHstatement. The UPDATE might be processed BEFORE the first INSERT that sets the balance value to zero, allowing the conditional to be met.An acknowledgement of a batch statement is returned if the batch operation is successful.[applied] ----------- TrueThe resulting table will only have one record so far.
cyclist_name | expense_id | balance | amount | description | paid --------------+------------+---------+--------+-------------+------- Vera ADRIAN | 1 | 0 | 7.95 | Breakfast | False (1 rows) -
The balance can be adjusted separately with an UPDATE statement. Now the
balancewill reflect that breakfast was unpaid.UPDATE cycling.cyclist_expenses SET balance = -7.95 WHERE cyclist_name = 'Vera ADRIAN' IF balance = 0;
cyclist_name | expense_id | balance | amount | description | paid --------------+------------+---------+--------+-------------+------- Vera ADRIAN | 1 | -7.95 | 7.95 | Breakfast | False (1 rows) -
The table
cyclist_expensesstores records about each purchase by a cyclist and includes the running balance of all the cyclist's purchases. Because the balance is static, all purchase records for a cyclist have the same running balance. ThisBATCHstatement inserts expenses for two more meals changes the balance to reflect that breakfast and dinner were unpaid.BEGIN BATCH INSERT INTO cycling.cyclist_expenses ( cyclist_name, expense_id, amount, description, paid ) VALUES ( 'Vera ADRIAN', 2, 13.44, 'Lunch', true ); INSERT INTO cycling.cyclist_expenses ( cyclist_name, expense_id, amount, description, paid ) VALUES ( 'Vera ADRIAN', 3, 25.00, 'Dinner', false ); UPDATE cycling.cyclist_expenses SET balance = -32.95 WHERE cyclist_name = 'Vera ADRIAN' IF balance = -7.95; APPLY BATCH;cyclist_name | expense_id | balance | amount | description | paid --------------+------------+---------+--------+-------------+------- Vera ADRIAN | 1 | -32.95 | 7.95 | Breakfast | False Vera ADRIAN | 2 | -32.95 | 13.44 | Lunch | True Vera ADRIAN | 3 | -32.95 | 25 | Dinner | False (3 rows) -
Finally, the cyclist pays off all outstanding bills and the
balanceof the account goes to zero.BEGIN BATCH UPDATE cycling.cyclist_expenses SET balance = 0 WHERE cyclist_name = 'Vera ADRIAN' IF balance = -32.95; UPDATE cycling.cyclist_expenses SET paid = true WHERE cyclist_name = 'Vera ADRIAN' AND expense_id = 1 IF paid = false; UPDATE cycling.cyclist_expenses SET paid = true WHERE cyclist_name = 'Vera ADRIAN' AND expense_id = 3 IF paid = false; APPLY BATCH;
cyclist_name | expense_id | balance | amount | description | paid --------------+------------+---------+--------+-------------+------ Vera ADRIAN | 1 | 0 | 7.95 | Breakfast | True Vera ADRIAN | 2 | 0 | 13.44 | Lunch | True Vera ADRIAN | 3 | 0 | 25 | Dinner | True (3 rows)Because the column is static, you can provide only the partition key when updating the data. To update a non-static column, you would also have to provide a clustering key. Using batched conditional updates, you can maintain a running balance. If the balance were stored in a separate table, maintaining a running balance would not be possible because a batch having conditional updates cannot span multiple partitions.
-
Another example is using
BATCHto perform a multiple partition insert that involves writing the same data to two related tables that must be synchronized. The following example modifies multiple partitions, which in general is to be avoided, but the batch only contains two statements:BEGIN BATCH INSERT INTO cycling.cyclist_expenses ( cyclist_name, expense_id, amount, description, paid ) VALUES ( 'John SMITH', 3, 15.00, 'Lunch', false ); INSERT INTO cycling.cyclist_name ( id, lastname, firstname ) VALUES ( 6ab09bec-e68e-48d9-a5f8-97e6fb4c9b12, 'SMITH', 'John' ); APPLY BATCH;Another common use for this type of batch operation is updating usernames and passwords.
