blob: 337fcbc7173ce7667dfd2f4698c87c8fb0a51867 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.examples.datagrid;
import java.io.Serializable;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteCache;
import org.apache.ignite.IgniteException;
import org.apache.ignite.Ignition;
import org.apache.ignite.cache.CacheAtomicityMode;
import org.apache.ignite.configuration.CacheConfiguration;
import org.apache.ignite.examples.ExampleNodeStartup;
import org.apache.ignite.transactions.Transaction;
import static org.apache.ignite.transactions.TransactionConcurrency.PESSIMISTIC;
import static org.apache.ignite.transactions.TransactionIsolation.REPEATABLE_READ;
/**
* Demonstrates how to use cache transactions.
* <p>
* Remote nodes should always be started with special configuration file which
* enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-ignite.xml'}.
* <p>
* Alternatively you can run {@link ExampleNodeStartup} in another JVM which will
* start node with {@code examples/config/example-ignite.xml} configuration.
*/
public class CacheTransactionExample {
/** Cache name. */
private static final String CACHE_NAME = CacheTransactionExample.class.getSimpleName();
/**
* Executes example.
*
* @param args Command line arguments, none required.
* @throws IgniteException If example execution failed.
*/
public static void main(String[] args) throws IgniteException {
try (Ignite ignite = Ignition.start("examples/config/example-ignite.xml")) {
System.out.println();
System.out.println(">>> Cache transaction example started.");
CacheConfiguration<Integer, Account> cfg = new CacheConfiguration<>(CACHE_NAME);
cfg.setAtomicityMode(CacheAtomicityMode.TRANSACTIONAL);
// Auto-close cache at the end of the example.
try (IgniteCache<Integer, Account> cache = ignite.getOrCreateCache(cfg)) {
// Initialize.
cache.put(1, new Account(1, 100));
cache.put(2, new Account(1, 200));
System.out.println();
System.out.println(">>> Accounts before deposit: ");
System.out.println(">>> " + cache.get(1));
System.out.println(">>> " + cache.get(2));
// Make transactional deposits.
deposit(cache, 1, 100);
deposit(cache, 2, 200);
System.out.println();
System.out.println(">>> Accounts after transfer: ");
System.out.println(">>> " + cache.get(1));
System.out.println(">>> " + cache.get(2));
System.out.println(">>> Cache transaction example finished.");
}
finally {
// Distributed cache could be removed from cluster only by #destroyCache() call.
ignite.destroyCache(CACHE_NAME);
}
}
}
/**
* Make deposit into specified account.
*
* @param acctId Account ID.
* @param amount Amount to deposit.
* @throws IgniteException If failed.
*/
private static void deposit(IgniteCache<Integer, Account> cache, int acctId, double amount) throws IgniteException {
try (Transaction tx = Ignition.ignite().transactions().txStart(PESSIMISTIC, REPEATABLE_READ)) {
Account acct = cache.get(acctId);
assert acct != null;
// Deposit into account.
acct.update(amount);
// Store updated account in cache.
cache.put(acctId, acct);
tx.commit();
}
System.out.println();
System.out.println(">>> Transferred amount: $" + amount);
}
/**
* Account.
*/
private static class Account implements Serializable {
/** Account ID. */
private int id;
/** Account balance. */
private double balance;
/**
* @param id Account ID.
* @param balance Balance.
*/
Account(int id, double balance) {
this.id = id;
this.balance = balance;
}
/**
* Change balance by specified amount.
*
* @param amount Amount to add to balance (may be negative).
*/
void update(double amount) {
balance += amount;
}
/** {@inheritDoc} */
@Override public String toString() {
return "Account [id=" + id + ", balance=$" + balance + ']';
}
}
}